From c4d34e54bfc44cafc14e3dd105eb799ccc4a00c8 Mon Sep 17 00:00:00 2001 From: Alan Smithee Date: Fri, 4 Feb 2022 09:52:30 +0900 Subject: [PATCH] fixed -u long option & version number update #391 --- src/detections/configs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 06393ad3..d4b629dc 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -60,7 +60,7 @@ fn build_app<'a>() -> ArgMatches<'a> { -v --verbose 'Output verbose information' -D --enable-deprecated-rules 'Enable sigma rules marked as deprecated' -n --enable-noisy-rules 'Enable rules marked as noisy' - -u --rule-update 'Clone latest hayabusa-rule' + -u --update-rules 'Clone latest hayabusa-rule' -m --min-level=[LEVEL] 'Minimum level for rules (default: informational)' --start-timeline=[STARTTIMELINE] 'Start time of the event to load from event file. Example: '2018/11/28 12:00:00 +09:00'' --end-timeline=[ENDTIMELINE] 'End time of the event to load from event file. Example: '2018/11/28 12:00:00 +09:00'' @@ -74,7 +74,7 @@ fn build_app<'a>() -> ArgMatches<'a> { --contributors 'Prints the list of contributors'"; App::new(&program) .about("Hayabusa: Aiming to be the world's greatest Windows event log analysis tool!") - .version("1.0.0") + .version("1.1.0") .author("Yamato-Security(https://github.com/Yamato-Security/hayabusa)") .setting(AppSettings::VersionlessSubcommands) .usage(usages)