Passwords Question
When a user registers to the forums,
I know that the password field in the "_user" table gets the md5 hash. But do any other tables get it too?
Reason I ask is because I am trying to merge my forum registration and site registration in one. I got most of it down except that say the user's password is "abcd", and I try to login with that password in VB, I get a "wrong pass" notice, but if I change the pass to "abcd" through the vb admin panel, it lets me log in.
Where else do I have to insert the password to?
I figured it out!
Vbulletin actually does this during registration:
- md5 password
- add salt field value to password
- md5(md5(password) . salt)
Thanks guys.
|