mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
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 <josh.t.richards@gmail.com> Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
This commit is contained in:
parent
dd291e1a16
commit
e27ac4c9f3
1 changed files with 2 additions and 2 deletions
|
|
@ -41,11 +41,11 @@ class BruteforceAttempts extends Base {
|
|||
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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue