Skip to content

Commit

Permalink
fix(security): Describe occ security:bruteforce:attempts accurately
Browse files Browse the repository at this point in the history
This command is used to list a summary of brute force protection attempts associated with a given IP address and, optionally, a specific action. It does not reset attempts (there's already another command for that).

Signed-off-by: Josh <[email protected]>
Co-authored-by: Joas Schilling <[email protected]>
  • Loading branch information
joshtrichards and nickvergessen authored Feb 21, 2024
1 parent d52ebaa commit 82f0adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/Command/Security/BruteforceAttempts.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ protected function configure(): void {
parent::configure();
$this
->setName('security:bruteforce:attempts')
->setDescription('resets bruteforce attempts for given IP address')
->setDescription('Show bruteforce attempts status for a given IP address')
->addArgument(
'ipaddress',
InputArgument::REQUIRED,
'IP address for which the attempts are to be reset',
'IP address for which the attempts status is to be shown',
)
->addArgument(
'action',
Expand Down

0 comments on commit 82f0adb

Please sign in to comment.