Security fix: Waiting before retrying password reset

This commit is contained in:
Michael Chernyshev 2019-10-18 13:57:19 +03:00
parent 400df0b02b
commit ace38c133f
2 changed files with 2 additions and 0 deletions

View File

@ -97,6 +97,7 @@
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
'timeout' => 60,
],
],

View File

@ -17,5 +17,6 @@
'sent' => 'We have e-mailed your password reset link!',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that e-mail address.",
'timeout' => 'Please wait before retrying.',
];