Hacker News new | ask | show | jobs
by knutae 5328 days ago
Running a hash function directly on a hash makes little sense. You probably meant:

    md5(md5(password) + user_salt)
1 comments

[edit]I'm wrong, you're right[/edit]

Just re-checked... the line is this:

    md5(md5($vbulletin->GPC['password']) . $vbulletin->userinfo['salt']))
I got confused by the last bracket closing an outer conditional.