mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
update: password check limit
This commit is contained in:
parent
c36a54dae2
commit
125a882a7e
@ -190,7 +190,7 @@ class AuthController extends Controller
|
|||||||
$email = $request->input('email');
|
$email = $request->input('email');
|
||||||
$password = $request->input('password');
|
$password = $request->input('password');
|
||||||
|
|
||||||
$passwordErrorCount = (int)Cache::get('PASSWORD_ERROR_LIMIT') || 0;
|
$passwordErrorCount = (int)Cache::get(CacheKey::get('PASSWORD_ERROR_LIMIT', $email)) || 0;
|
||||||
|
|
||||||
if ($passwordErrorCount >= 5) {
|
if ($passwordErrorCount >= 5) {
|
||||||
abort(500, __('Incorrect email or password'));
|
abort(500, __('Incorrect email or password'));
|
||||||
|
Loading…
Reference in New Issue
Block a user