Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    IPB(Invision Power Board) VB.NET login system


    luccss
     Share

    Recommended Posts

    hello friends how can I create a connection Login with IPB (invision Power Board) and VB.NET?

    Link to comment
    Share on other sites

    Hello,

     

    Your question is a bit large, i think you want to do a link between IPB login & your form's login in your program.

     

    Question is : Do you put your IPB on a webserver ? Or in local such as WampServer or another one ?

     

    Well, about program, you need a connection chain link to etablish a link between IPB & Server (local or external)

    When it's done, with your access data (login & password of your database where your IPB is stored), you can do a connection between both.

    In that case, you'll be able to connect your program and your database,

     

    Hope my answer is usefull :),

    If you have more questions or much elements of what you need, explain them,

     

    Alex,

    Link to comment
    Share on other sites

    @HardCoreX1337

     

    yes brother first thanks for you atention :D

     

    I put my IPB on webserver , I make connection for my database but IPB encryptation password fuck me :(

     

    not works for this I believe

    Link to comment
    Share on other sites

    At this point, it's a bit complicated.

    I read that password are encrypted in MD5 with 5 random caracters using as SALT.

     

    You have to possibilities :

    1) You find the encryption in page code and change it to another method like (SHA_2 or SHA_3), not SHA_1 because i think it's too old.

    2) You put in your program a MD5 hash with 5 random caracters

     

    But i'm not sure that the sources where i read it are up to date ! So look more about it to find more answer.

     

    If you have problem with the current encryption method used by IPB, i think the best method is to change the method to a better encryption as i said it before and in this case, you'll never encounter problem because it will be change by you ^^.

     

    Alex,

    Link to comment
    Share on other sites

    Just look in the login php file of your IPB, look how they compare the given password to the one in the database.

    They'll probably md5 it & combine it with the salt from the database.

     

    Then write your own php file which does the same thing as the login file but easified.

    Link to comment
    Share on other sites

    • 3 months later...

    Here you have a login encryption example:

    $Password = md5(md5(members_pass_salt).md5("User Password"));
    if($Password==members_pass_hast){
    //Login valid 
    }
    
    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...