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 e27ac4c9f33c86bead99c265a49ed9bb65ffc3c1
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