Topic: Security - md5 hashing
Hello,
first of all i would like give a big thanks for this awesome CMS. I've been looking ages for something like this. Keep up good work :-)
Now, quick one:
Im not an security expert but dont you find md5 hashes are too weak nowdays? Even though SALT is used..
I was just thinking about replacing md5 with sha1.
public static function encryptPassword($password) {
//return md5(md5(trim($password) . MONSTRA_PASSWORD_SALT));
return sha1(md5(trim($password) . MONSTRA_PASSWORD_SALT));
}
Still Monstra ftw! :-)