update changelog and readme text

This commit is contained in:
Tanaka Zakku
2022-06-21 16:30:24 +09:00
parent 08fc0461ef
commit 965e2bb91c
4 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# 変更点
## v1.4 [2022/XX/XX]
## v1.4.0 [2022/XX/XX]
**新機能:**

View File

@@ -1,11 +1,11 @@
# Changes
## v1.4 [2022/XX/XX]
## v1.4.0 [2022/XX/XX]
**New Features:**
- Added `--target-file-ext` option. You can specify additional file extensions to scan in addtition to the default `.evtx` files. For example, `--target-file-ext evtx_data` or multiple extensions with `--target-file-ext evtx1 evtx2`. (#586) (@hitenkoku)
- Added `--exclude-status` option: Exclude filter by `status` in a rule. (#596) (@hitenkoku)
- Added `--exclude-status` option: You can ignore rules based on their `status`. (#596) (@hitenkoku)
**Enhancements:**

View File

@@ -336,7 +336,7 @@ OPTIONS:
-d, --directory <DIRECTORY> Directory of multiple .evtx files
-D, --enable-deprecated-rules Enable rules marked as deprecated
--end-timeline <END_TIMELINE> End time of the event logs to load (ex: "2022-02-22 23:59:59 +09:00")
--exclude-status <EXCLUDE_STATUS>... Exclude by status in rule (ex: experimental) (ex: stable test)
--exclude-status <EXCLUDE_STATUS>... Ignore rules according to status (ex: experimental) (ex: stable test)
-f, --filepath <FILE_PATH> File path to one .evtx file
-F, --full-data Print all field information
-h, --help Print help information

View File

@@ -214,7 +214,7 @@ pub struct Config {
#[clap(long = "target-file-ext", multiple_values = true)]
pub evtx_file_ext: Option<Vec<String>>,
/// Exclude by status in rule (ex: experimental) (ex: stable test)
/// Ignore rules according to status (ex: experimental) (ex: stable test)
#[clap(long = "exclude-status", multiple_values = true)]
pub exclude_status: Option<Vec<String>>,
}