PDA

View Full Version : Passwords


samharris
01-23-2007, 08:46 AM
Does anybody know how the passwords are encrypted for vbulletin.

I do not want to know the password but I want to use the username and password to log-in to another section of my site???

Is this possible and ho might this be done!

Dismounted
01-24-2007, 12:09 AM
If you know your PHP, it's md5(md5($password) . salt). The salt is the `salt` field in the `user` table.

samharris
01-24-2007, 05:08 AM
can anybody give me an example how i would use this cause i cannot get it to work