Hello!
You can improve security for your users:
Open class.core.php
REPLACE
withCode:final public function hashed($password) { return md5($password); }
In $salt and $salt2 insert a random word for example:Code:final public function hashed($password) { $salt = "choose"; $salt2 = "choose"; return sha1($salt.$password.$salt2); }
$salt = "549ut85fneif(%&495u8";
$salt2 = "5y8j4g89jndfsaui080??";
NB: If you can't login because appears the error "Password incorrect", you need to update all password from only md5 encryptation to new encryptation.



Reply With Quote


