From 70771a5dafa2607a7c2500eabbc2dfbaefdabcbb Mon Sep 17 00:00:00 2001 From: Alan Smithee Date: Fri, 4 Feb 2022 09:02:11 +0900 Subject: [PATCH] changed utc short option and rule-update short option #391 --- README-English.md | 4 ++-- README-Japanese.md | 4 ++-- src/detections/configs.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README-English.md b/README-English.md index 13fb5e27..8b32f9bb 100644 --- a/README-English.md +++ b/README-English.md @@ -135,13 +135,13 @@ USAGE: -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 --rule-update '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'' --rfc-2822 'Output date and time in RFC 2822 format. Example: Mon, 07 Aug 2006 12:34:56 -0600' --rfc-3339 'Output date and time in RFC 3339 format. Example: 2006-08-07T12:34:56.485214 -06:00' - -u --utc 'Output time in UTC format (default: local time)' + -U --utc 'Output time in UTC format (default: local time)' -t --thread-number=[NUMBER] 'Thread number (default: optimal number for performance)' -s --statistics 'Prints statistics of event IDs' -q --quiet 'Quiet mode. Do not display the launch banner' diff --git a/README-Japanese.md b/README-Japanese.md index e9d6b7b4..1e127b61 100644 --- a/README-Japanese.md +++ b/README-Japanese.md @@ -129,13 +129,13 @@ USAGE: -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 --rule-update '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'' --rfc-2822 'Output date and time in RFC 2822 format. Example: Mon, 07 Aug 2006 12:34:56 -0600' --rfc-3339 'Output date and time in RFC 3339 format. Example: 2006-08-07T12:34:56.485214 -06:00' - -u --utc 'Output time in UTC format (default: local time)' + -U --utc 'Output time in UTC format (default: local time)' -t --thread-number=[NUMBER] 'Thread number (default: optimal number for performance)' -s --statistics 'Prints statistics of event IDs' -q --quiet 'Quiet mode. Do not display the launch banner' diff --git a/src/detections/configs.rs b/src/detections/configs.rs index b7bdb812..06393ad3 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -60,13 +60,13 @@ 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 --rule-update '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'' --rfc-2822 'Output date and time in RFC 2822 format. Example: Mon, 07 Aug 2006 12:34:56 -0600' --rfc-3339 'Output date and time in RFC 3339 format. Example: 2006-08-07T12:34:56.485214 -06:00' - -u --utc 'Output time in UTC format (default: local time)' + -U --utc 'Output time in UTC format (default: local time)' -t --thread-number=[NUMBER] 'Thread number (default: optimal number for performance)' -s --statistics 'Prints statistics of event IDs' -q --quiet 'Quiet mode. Do not display the launch banner'