PostNuke

Flexible Content Management System

News

MD5 vs DES

Contributed by on Jan 24, 2002 - 11:32 AM

I realised that the password list looked relatively different. Then upon checking user.php, I saw :




$pass=crypt($pass,substr($dbpass,0,2));




That won't do, as my passwords seemed to be MD5 now. So, change the above to :




$pass=crypt($pass,$dbpass,0,2);




And now all is well again with the world...
2086