Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(security): Describe occ security:bruteforce:attempts accurately
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
2 people authored and backportbot[bot] committed Feb 21, 2024
commit 4a008e22cd6ea7534bf8a5be62d27c3c45d22297
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