Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for Sigma v2 |re sub modifiers #1399

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update changelog
  • Loading branch information
YamatoSecurity committed Aug 16, 2024
commit 48e3154c64870bb268ceb765ec6b98be18ff4138
8 changes: 8 additions & 0 deletions CHANGELOG-Japanese.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## 2.17.0 [2024/08/23] "HITCON Community Release"

**新機能:**

- Sigma V2の`|re`のサブモディファイアに対応した。 submodifers. (#1399) (@fukusuket)
- 参考: https://github.com/SigmaHQ/sigma-specification/blob/main/appendix/sigma-modifiers-appendix.md
* `i`: (insensitive) 大文字小文字を区別しないマッチングを無効にする。
* `m`: (multi-line) 複数行にまたがってマッチする。`^` /`$` は行頭/行末にマッチする。
* `s`: (single-line) ドット文字 (`.`) は改行文字を含むすべての文字にマッチする。

**改善:**

- `cidr-utils`クレートを新バージョン0.6.xに対応した。 (#1366) (@hitenkoku)
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## 2.17.0 [2024/08/23] "HITCON Community Release"

**New Features:**

- Support for the Sigma V2 `|re` submodifers. (#1399) (@fukusuket)
- Reference: https://github.com/SigmaHQ/sigma-specification/blob/main/appendix/sigma-modifiers-appendix.md
* `i`: (insensitive) disable case-sensitive matching.
* `m`: (multi-line) match across multiple lines. `^` /`$` match the start/end of line.
* `s`: (single-line) the dot character (`.`) matches all characters, including the newline character.

**Enhancements:**

- Support for the newer version 0.6.x `cidr-utils` crate. (#1366) (@hitenkoku)
Expand Down
Loading