From c7f44bd315acabcf4cdb0ecdb89f31f1c2d43c4e Mon Sep 17 00:00:00 2001 From: Tanaka Zakku <71482215+YamatoSecurity@users.noreply.github.com> Date: Wed, 10 Aug 2022 10:48:32 +0900 Subject: [PATCH] updated menu --- src/detections/configs.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 7518db47..637bf772 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -185,7 +185,7 @@ pub struct Config { /// Tune alert levels (default: ./rules/config/level_tuning.txt) #[clap( - help_heading = Some("ADVANCED"), + help_heading = Some("OTHER-ACTIONS"), long = "level-tuning", hide_default_value = true, value_name = "FILE" @@ -216,12 +216,12 @@ pub struct Config { #[clap(help_heading = Some("FILTERING"), long = "exclude-status", multiple_values = true, value_name = "STATUS")] pub exclude_status: Option>, - /// Specify output profile - #[clap(help_heading = Some("OUTPUT-SETTINGS"), short = 'P', long = "profile")] + /// Specify output profile (minimal, standard, verbose, verbose-all-field-info, verbose-details-and-all-field-info) + #[clap(help_heading = Some("OUTPUT"), short = 'P', long = "profile")] pub profile: Option, - /// Set default output profile - #[clap(help_heading = Some("OUTPUT-SETTINGS"), long = "set-default-profile", value_name = "PROFILE")] + /// Set default output profile (minimal, standard, verbose, verbose-all-field-info, verbose-details-and-all-field-info) + #[clap(help_heading = Some("OTHER-ACTIONS"), long = "set-default-profile", value_name = "PROFILE")] pub set_default_profile: Option, }