diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-01-17 17:21:27 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2017-01-18 15:25:16 +0100 |
commit | cdf01feba78696aa74b7f57a43380757d67df4aa (patch) | |
tree | c2d8f65ed871dc5789b5fb4867d34b495381756f /core/Controller/OCSController.php | |
parent | 0271ae3b46e3421871b8eecb4b453dd5793e5e30 (diff) | |
download | nextcloud-server-cdf01feba78696aa74b7f57a43380757d67df4aa.tar.gz nextcloud-server-cdf01feba78696aa74b7f57a43380757d67df4aa.zip |
add action to existing brute force protection
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'core/Controller/OCSController.php')
-rw-r--r-- | core/Controller/OCSController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/OCSController.php b/core/Controller/OCSController.php index c59b0d7ad3f..dc9775f2603 100644 --- a/core/Controller/OCSController.php +++ b/core/Controller/OCSController.php @@ -128,7 +128,7 @@ class OCSController extends \OCP\AppFramework\OCSController { */ public function personCheck($login = '', $password = '') { if ($login !== '' && $password !== '') { - $this->throttler->sleepDelay($this->request->getRemoteAddress()); + $this->throttler->sleepDelay($this->request->getRemoteAddress(), 'login'); if ($this->userManager->checkPassword($login, $password)) { return new DataResponse([ 'person' => [ |