Browse Source

properly tie auth cookies to private salt

pull/40/head
Michael Save 12 years ago
parent
commit
eb146d9201
  1. 2
      inc/mod/auth.php

2
inc/mod/auth.php

@ -21,7 +21,7 @@ function mkhash($username, $password, $salt = false) {
}
// generate hash (method is not important as long as it's strong)
$hash = substr(base64_encode(md5($username . sha1($username . $password . $salt . ($config['mod']['lock_ip'] ? $_SERVER['REMOTE_ADDR'] : ''), true), true)), 0, 20);
$hash = substr(base64_encode(md5($username . $config['cookies']['salt'] . sha1($username . $password . $salt . ($config['mod']['lock_ip'] ? $_SERVER['REMOTE_ADDR'] : ''), true), true)), 0, 20);
if (isset($generated_salt))
return Array($hash, $salt);

Loading…
Cancel
Save