update changelog

This commit is contained in:
Yamato Security
2022-10-09 06:07:38 +09:00
parent c264c4cb92
commit 8c212b7524
2 changed files with 4 additions and 4 deletions

View File

@@ -6,11 +6,11 @@
- Hayabusa now checks Channel and EID information based on `rules/config/channel_eid_info.txt` to provide more accurate results. (#463) (@garigariganzy)
- Do not display a message about loading detection rules when using the `-M` or `-L` options. (#730) (@hitenkoku)
- Added output of detected rule authors in standard output. (#724) (@hitenkoku)
- Added a table of rule authors to standard output. (#724) (@hitenkoku)
**Bug Fixes:**
- Fixed duplicate event outputted with metric option due to sum up of event IDs key name. (#729) (@hitenkoku)
- Fixed a bug where the same Channel and EID would be counted seperately with the `-M` option. (#729) (@hitenkoku)
## 1.7.0 [2022/09/29]

View File

@@ -422,7 +422,7 @@ fn emit_csv<W: std::io::Write>(
write_color_buffer(
&disp_wtr,
get_writable_color(Some(Color::Rgb(0, 255, 0))),
"Rules brought to you by:",
"Rule Authors:",
false,
)
.ok();
@@ -1189,7 +1189,7 @@ fn output_detected_rule_authors(rule_author_counter: HashMap<String, i128>) {
for y in 0..div {
if y * 4 + x < sorted_authors.len() {
tmp.push(format!(
"{}({})",
"{} ({})",
sorted_authors[y * 4 + x].0,
sorted_authors[y * 4 + x].1
));