hello,
this is a simple question .. how do vBulletin encrypt user passwords
i'm working on a script and i want to encrypt user passwords in the same way the vb do so i can connect between my script and the vb
Thanks, Respect
| SitePoint Sponsor |
hello,
this is a simple question .. how do vBulletin encrypt user passwords
i'm working on a script and i want to encrypt user passwords in the same way the vb do so i can connect between my script and the vb
Thanks, Respect

I believe they md5(), add the salt, and then md5() again.




Wow I thought they just did md5 salt.
That's a lotta encryption.
Founder/Admin of a pretty decent chat forum
Download free winterboard themes for your iPhone
I run sites powered by vbulletin and one about the HTC Jetstream.
Its not encryption...


Last edited by Dan Grossman; Jun 25, 2007 at 16:16. Reason: Now I sound less unfriendly :(
17-29% of paid ad clicks are fraudulent. Get protected with Improvely, your online marketing dashboard.
→ Conversion tracking, click fraud detection, A/B testing and more.
Vbulletin uses somethin like this:
md5(md5('pass').string)
where the string is a random of 3 characters
maybe i dont remember exactly how it does the encryptation but is something like that





Hashing is indeed encryption, just a form of encryption called "one-way encryption". As opposed to "two-way encryption" which you see in e.g. AES, Blowfish, PGP/GPG, and countless others.
And Dunkel has it exactly right. I believe the salt is stored in the database on a per-used basis, but yes, that's exactly what vBulletin (needlessly) uses.
yes brosther .. that's rightI believe they md5(), add the salt, and then md5() again.
thanks alot![]()
Bookmarks