diff --git a/contributors.txt b/contributors.txt index bdbb24af..03c81c17 100644 --- a/contributors.txt +++ b/contributors.txt @@ -1,9 +1,10 @@ Hayabusa was possible thanks to the following people (in alphabetical order): Akira Nishikawa (@nishikawaakira): Previous lead developer, core hayabusa rule support, etc... +DustInDark(@hitenkoku): Core Developer Garigariganzy (@garigariganzy31): Developer, event ID statistics implementation, etc... ItiB (@itiB_S144) : Core developer, sigmac hayabusa backend, rule creation, etc... -James Takai / hachiyone(@hach1yon): Current lead developer, tokio multi-threading, sigma aggregation logic, sigmac backend, rule creation, etc… +James Takai / hachiyone(@hach1yon): Current lead developer, tokio multi-threading, sigma aggregation logic, sigmac backend, rule creation, sigma count implementation etc… Kazuminn (@k47_um1n): Developer Yusuke Matsui (@apt773): AD hacking working group leader, rule testing, documentation, research, support, etc... Zach Mathis (@yamatosecurity, Yamato Security Founder): Project leader, tool and concept design, rule creation and tuning, etc… @@ -13,6 +14,7 @@ Hayabusa would not have been possible without first creating RustyBlue, so we wo Zach Mathis (@yamatosecurity, Yamato Security Founder): Project Leader Nishikawa Akira (@nishikawaakira): Lead Developer +DustInDark (@hitenkoku): Core Developer kazuminn (@k47_um1n): Core Developer itiB (@itiB_S144): Core Developer James Takai / hachiyone (@hach1yon): Core Developer diff --git a/logs/.gitkeep b/logs/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 52c7ccd8..7f5c37cd 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -69,7 +69,7 @@ fn build_app<'a>() -> ArgMatches<'a> { -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' - -Q --quiet-errors 'Quiet errors mode. Do not display errors or save error logs' + -Q --quiet-errors 'Quiet errors mode. Do not save error logs.' --contributors 'Prints the list of contributors'"; App::new(&program) .about("Hayabusa: Aiming to be the world's greatest Windows event log analysis tool!") diff --git a/src/detections/print.rs b/src/detections/print.rs index 54c97738..e5081ced 100644 --- a/src/detections/print.rs +++ b/src/detections/print.rs @@ -239,7 +239,7 @@ impl AlertMessage { return; } println!( - "Generated error was output to {}. Please see the file for details.", + "Errors were generated. Please check {} for details.", ERROR_LOG_PATH.to_string() ); }