Hell Fox
12-16-2007, 10:29 AM
I would like to see a mod that changed the way that vBulletin hashed its passwords.
So instead of:
md5(md5($password).$salt)
it could be:
md5(sha1(md5($salt.sha1($password)).$salt)) or something.
This way you could make up a custom hashing method for your board and if someone obtained the db then the db would be useless.
I tried to modfiy my functions_login.php and made it work with that kind of hashing, just didn't work with new accounts registered.
-Fox
So instead of:
md5(md5($password).$salt)
it could be:
md5(sha1(md5($salt.sha1($password)).$salt)) or something.
This way you could make up a custom hashing method for your board and if someone obtained the db then the db would be useless.
I tried to modfiy my functions_login.php and made it work with that kind of hashing, just didn't work with new accounts registered.
-Fox