mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Update lostpass.php
use CSPRNG for password reset token generation
This commit is contained in:
parent
efd549d466
commit
f459a35cf4
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ function lostpass_post(App $a)
|
|||
DI::baseUrl()->redirect();
|
||||
}
|
||||
|
||||
$pwdreset_token = Strings::getRandomName(12) . random_int(1000, 9999);
|
||||
$pwdreset_token = Strings::getRandomHex(32);
|
||||
|
||||
$fields = [
|
||||
'pwdreset' => $pwdreset_token,
|
||||
|
|
Loading…
Reference in a new issue