PDA

View Full Version : vBulletin Users table


DJ Biscuit
01-02-2008, 11:05 PM
I am writing a script for my website but I want it to use the same users off the forums but does anyone know what encryption vBulletin uses for passwords?

ZomgStuff
01-03-2008, 12:01 AM
md5?

Adrian Schneider
01-03-2008, 12:07 AM
It's represented like this in MySQL:
md5(concat(md5('password'), user.salt))

Andrew Green
01-03-2008, 12:09 AM
I believe its a double md5 with a salt also stored in the db.

So it gets md5ed by javascript, then sent, then md5ed again with a salt.

But regardless, it would probably be easier to integrate with vbulletin rather then rebuilding the wheel and writing a second login system.

DJ Biscuit
01-03-2008, 01:38 AM
Yea.. I knew it had to be more than md5 but i will try double md5 with the salt