Skip to content

Commit c815b71

Browse files
malexmavetwwd
authored andcommitted
Ensure severity info matches working values in code. Closes #8
1 parent 546e20a commit c815b71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ There are several optional parameters to customize the execution:
3030
|-----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
3131
| `--format` | The output format of the findings. Can be plain text (`txt`), `csv` or `json`. |
3232
| `--output` | The path to the output file. If not provided, the output will be printed on stdout. |
33-
| `--min-severity` | The minimum severity of findings that should be reported. Can be one of INFO, WARNING, ERROR, CRITICAL. |
33+
| `--min-severity` | The minimum severity of findings that should be reported. Can be one of INFO, LOW, MEDIUM, HIGH, CRITICAL. |
3434
| `--auditors` | Specify the exact auditors to run, separated by space (others will be ignored). |
3535
| `--config` | Provide a config file with auditor-specific exclusions and parameters. Generate a template using [generate-config-template](#generate-config-template). |
3636
| `--ignore-disabled-clients` | When set, will not audit disabled OIDC clients. |

kcwarden/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def add_audit_parser(subparsers):
7373
parser_audit.add_argument(
7474
"-s",
7575
"--min-severity",
76-
help="The minimum severity of findings that should be reported. Can be one of INFO, WARNING, ERROR, CRITICAL.",
76+
help="The minimum severity of findings that should be reported. Can be one of INFO, LOW, MEDIUM, HIGH, CRITICAL.",
7777
type=str,
7878
)
7979
add_plugin_directory_argument(parser_audit)

0 commit comments

Comments
 (0)