From 0c38569c83466b52013b7890432bcb6ae74df883 Mon Sep 17 00:00:00 2001 From: Johannes Riedel Date: Tue, 17 Mar 2020 17:06:52 +0100 Subject: Implement occ command security:bruteforceattemps:reset-for-ip Signed-off-by: Johannes Riedel --- core/Command/Security/ResetBruteforceAttempts.php | 62 +++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 core/Command/Security/ResetBruteforceAttempts.php (limited to 'core/Command') diff --git a/core/Command/Security/ResetBruteforceAttempts.php b/core/Command/Security/ResetBruteforceAttempts.php new file mode 100644 index 00000000000..dcb827f8ddb --- /dev/null +++ b/core/Command/Security/ResetBruteforceAttempts.php @@ -0,0 +1,62 @@ +. + * + */ + + +namespace OC\Core\Command\Security; + +use OC\Core\Command\Base; +use OC\Security\Bruteforce\Throttler; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ResetBruteforceAttempts extends Base { + + /** @var Throttler */ + protected $throttler; + + public function __construct(Throttler $throttler) { + $this->throttler = $throttler; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('security:bruteforce:reset') + ->setDescription('resets bruteforce attemps for given IP address') + ->addArgument( + 'ipaddress', + InputArgument::REQUIRED, + 'IP address for which the attempts are to be reset' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $ip = $input->getArgument('ipaddress'); + + if (!filter_var($ip, FILTER_VALIDATE_IP)) { + $output->writeln('"' . $ip . '" is not a valid IP address'); + return 1; + } + + $this->throttler->resetDelayForIP($ip); + } +} -- cgit v1.2.3