Quote:
Originally Posted by *****Sniper
Yes it does work, thank you!
|
And if you're doing it at the SQL level:
UPDATE vbuser SET salt = '000';
UPDATE vbuser SET password = MD5(CONCAT(MD5(old_cleartext_password), salt));
That will do your entire table in one shot. Obviously replace old_cleartext_password with whatever field from whatever table it is that has the passwords.