diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-05-25 14:04:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 14:04:18 +0200 |
commit | e57bca31adc9a2591357825fa7042596fcb51f7d (patch) | |
tree | e7880a8fa58482fcfb07c104a5bf85de96b9cb8a /core/register_command.php | |
parent | cbde1d102c06f44d9b4f84cb3d72f9fbf0a3beb5 (diff) | |
parent | bd997a105cc582180bb36dad3ca8ffce25fc9e34 (diff) | |
download | nextcloud-server-e57bca31adc9a2591357825fa7042596fcb51f7d.tar.gz nextcloud-server-e57bca31adc9a2591357825fa7042596fcb51f7d.zip |
Merge pull request #20005 from joeried/occ-remove-bruteforce-attempts-by-ip
Implement occ command to reset bruteforce attemps from a given IP address
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index e355d1429c1..d818423d1ab 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -175,6 +175,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Security\ListCertificates(\OC::$server->getCertificateManager(null), \OC::$server->getL10N('core'))); $application->add(new OC\Core\Command\Security\ImportCertificate(\OC::$server->getCertificateManager(null))); $application->add(new OC\Core\Command\Security\RemoveCertificate(\OC::$server->getCertificateManager(null))); + $application->add(new OC\Core\Command\Security\ResetBruteforceAttempts(\OC::$server->getBruteForceThrottler())); } else { $application->add(new OC\Core\Command\Maintenance\Install(\OC::$server->getSystemConfig())); } |