6 ms·
Running a hash function directly on a hash makes little sense. You probably meant: md5(md5(password) + user_salt)
by knutae 15y ago
Running a hash function directly on a hash makes little sense. You probably meant:
md5(md5(password) + user_salt)
- buro9 15y ago[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.