mirror of
https://github.com/friendica/friendica
synced 2024-11-19 10:23:41 +00:00
Static reason for login failure to prevent bruteforce
This commit is contained in:
parent
3ecabe0291
commit
3c9b33176f
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class Login extends BaseModule
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
logger('authenticate: failed login attempt: ' . notags($username) . ' from IP ' . $_SERVER['REMOTE_ADDR']);
|
logger('authenticate: failed login attempt: ' . notags($username) . ' from IP ' . $_SERVER['REMOTE_ADDR']);
|
||||||
info('Login failed: ' . $e->getMessage() . EOL);
|
info('Login failed. Please check your credentials.' . EOL);
|
||||||
goaway();
|
goaway();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue