Skip to content

Commit db857f8

Browse files
Merge pull request #425 from Yamato-Security/develop
v1.1.0 Release
2 parents dc8d7f3 + 631496c commit db857f8

File tree

1,240 files changed

+2141
-48699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,240 files changed

+2141
-48699
lines changed

.github/workflows/rust.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18+
with:
19+
submodules: recursive
1820
- uses: actions-rs/toolchain@v1
1921
with:
2022
toolchain: nightly

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "rules"]
2+
path = rules
3+
url = https://github.com/Yamato-Security/hayabusa-rules.git

CHANGELOG-Japanese.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# 変更点
2+
3+
##v1.1.0 [2022/03/03]
4+
**新機能:**
5+
- `-r / --rules`オプションで一つのルール指定が可能。(ルールをテストする際に便利!) (@kazuminn)
6+
- ルール更新オプション (`-u / --update-rules`): [hayabusa-rules](https://github.com/Yamato-Security/hayabusa-rules)レポジトリにある最新のルールに更新できる。 (@hitenkoku)
7+
- ライブ調査オプション (`-l / --live-analysis`): Windowsイベントログディレクトリを指定しないで、楽にWindows端末でライブ調査ができる。(@hitenkoku)
8+
9+
**改善:**
10+
- ドキュメンテーションの更新。 (@kazuminn@itiB@hitenkoku@YamatoSecurity)
11+
- ルールの更新。(Hayabusaルール: 20個以上、Sigmaルール: 200個以上) (@YamatoSecurity)
12+
- Windowsバイナリは静的でコンパイルしているので、Visual C++ 再頒布可能パッケージをインストールする必要はない。(@hitenkoku)
13+
- カラー出力 (`-c / --color`) True Colorに対応しているターミナル(Windows Terminal、iTerm2等々)ではカラーで出力できる。(@hitenkoku)
14+
- MITRE ATT&CK戦略が出力される。(@hitenkoku)
15+
- パフォーマンスの改善。(@hitenkoku)
16+
- exclude_rules.txtとnoisy_rules.txtの設定ファイルのコメント対応。(@kazuminn)
17+
- より速いメモリアロケータの利用。 (Windowsの場合はrpmalloc、macOS/Linuxの場合は、jemalloc) (@kazuminn)
18+
- Cargo crateの更新。 (@YamatoSecurity)
19+
20+
**バグ修正:**
21+
- `cargo update`がより安定するために、clapのバージョンを固定した。(@hitenkoku)
22+
- フィールドのタブや改行がある場合に、ルールが検知しなかったので、修正した。(@hitenkoku)
23+
24+
## v1.0.0-Release 2 [2022/01/27]
25+
- アンチウィルスに誤検知されたExcelの結果ファイルの削除。(@YamatoSecurity)
26+
- Rustのevtxライブラリを0.7.2に更新。 (@YamatoSecurity)
27+
28+
## v1.0.0 [2021/12/25]
29+
- 最初のリリース

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changes
2+
3+
##v1.1.0 [2022/03/03]
4+
**New Features:**
5+
- Can specify a single rule with the `-r / --rules` option. (Great for testing rules!) (@kazuminn)
6+
- Rule update option (`-u / --update-rules`): Update to the latest rules in the [hayabusa-rules](https://github.com/Yamato-Security/hayabusa-rules) repository. (@hitenkoku)
7+
- Live analysis option (`-l / --live-analysis`): Can easily perform live analysis on Windows machines without specifying the Windows event log directory. (@hitenkoku)
8+
9+
**Enhancements:**
10+
- Updated documentation. (@kazuminn , @hitenkoku , @YamatoSecurity)
11+
- Updated rules. (20+ Hayabusa rules, 200+ Sigma rules) (@YamatoSecurity)
12+
- Windows binaries are now statically compiled so installing Visual C++ Redistributable is not required. (@hitenkoku)
13+
- Color output (`-c / --color`) for terminals that support True Color (Windows Terminal, iTerm2, etc...). (@hitenkoku)
14+
- MITRE ATT&CK tactics are included in the saved CSV output. (@hitenkoku)
15+
- Performance improvement. (@hitenkoku)
16+
- Comments added to exclusion and noisy config files. (@kazuminn)
17+
- Using faster memory allocators (rpmalloc for Windows, jemalloc for macOS and Linux.) (@kazuminn)
18+
- Updated cargo crates. (@YamatoSecurity)
19+
20+
**Bug Fixes:**
21+
- Made the clap library version static to make `cargo update` more stable. (@hitenkoku)
22+
- Some rules were not alerting if there were tabs or carriage returns in the fields. (@hitenkoku)
23+
24+
## v1.0.0-Release 2 [2022/01/27]
25+
- Removed Excel result sample files as they were being flagged by anti-virus. (@YamatoSecurity)
26+
- Updated the Rust evtx library to 0.7.2 (@YamatoSecurity)
27+
28+
## v1.0.0 [2021/12/25]
29+
- Initial release.

0 commit comments

Comments
 (0)