. * */ 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): int { $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); return 0; } }