Browse Source

Fix #9864: Decrease $maxDelay in Throttler.php

Signed-off-by: Mark Berezovsky <xpnf@yandex.ru>
tags/v14.0.0beta1
Mark Berezovsky 6 years ago
parent
commit
ad66c6bf08
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/Security/Bruteforce/Throttler.php

+ 1
- 1
lib/private/Security/Bruteforce/Throttler.php View File

@@ -228,7 +228,7 @@ class Throttler {
return 0;
}

$maxDelay = 30;
$maxDelay = 25;
$firstDelay = 0.1;
if ($attempts > (8 * PHP_INT_SIZE - 1)) {
// Don't ever overflow. Just assume the maxDelay time:s

Loading…
Cancel
Save