Merge pull request #9067 from MrPetovan/bug/9065-csrf-anonymous

Re-allow anonymous use of CSRF tokens
This commit is contained in:
Tobias Diekershoff
2020-08-24 18:36:21 +02:00
committed by GitHub

View File

@@ -140,11 +140,7 @@ abstract class BaseModule
return false;
}
if (empty($a->user)) {
return false;
}
$sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
$sec_hash = hash('whirlpool', ($a->user['guid'] ?? '') . ($a->user['prvkey'] ?? '') . session_id() . $x[0] . $typename);
return ($sec_hash == $x[1]);
}