Jump to content

Need help with Invision Powerboard Password encryption


mrman11d

Recommended Posts

ok, im making a little login thing that uses my invision powerboard database, i need to know how i can do this. Honestly i have pretty much no expirence in PHP and i need to know how I can put this encryption in my code, and also is the password value stored in member_login_key. Thanks in advanced

ok, im making a little login thing that uses my invision powerboard database, i need to know how i can do this. Honestly i have pretty much no expirence in PHP and i need to know how I can put this encryption in my code, and also is the password value stored in member_login_key. Thanks in advanced

 

Is it md5 with salt ?

Honestly i have no idea, but i believe it is a combo of both, researching on the internet i have found things like this but i have no clue how to use them in my code.  People have suggested that i use converge, and googling that i didnt find anything helpfull

$result1 = mysql_query("SELECT c.converge_pass_salt AS `salt` FROM `ibf_members_converge` c LEFT JOIN `ibf_members` m ON m.id=c.converge_id WHERE m.name = '$username'");

$row = mysql_fetch_assoc($result1);

$mypassword = md5($row['salt']);
$mypassword = md5('mypassword');
$mypassword = md5($new_pass);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.