Skip to content

Commit

Permalink
Merge pull request #1490 from Yamato-Security/1489-rename-timeline-of…
Browse files Browse the repository at this point in the history
…fset

rename timeline_offset to time_offset
  • Loading branch information
YamatoSecurity authored Nov 13, 2024
2 parents 00b062b + c2f6c2f commit 899851a
Show file tree
Hide file tree
Showing 18 changed files with 151 additions and 149 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-Japanese.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
- 属性と同じ名前を持つ複数のサブノードは上書きされ、最後の1つだけが出力されていた。(omerbenamram/evtx #245)
- `logon-summary``eid-metrics`が複数のプログレスバーを出力することがあった。 #1479 (@fukusuket)

**その他:**

- `timeline-offset`オプションは、`--time-offset`に名前変更された。 (#1490) (@yamatosecurity)

## 2.18.0 [2024/10/23] - SecTor Release

**新機能:**
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
- Multiple sub-nodes with attributes and the same name would be overwritten and only the last one kept. (omerbenamram/evtx #245)
- `logon-summary` and `eid-metrics` would sometimes output multiple progress bars. #1479 (@fukusuket)

**Other:**

- The `--timeline-offset` option has been renamed to `--time-offset`. (#1490) (@yamatosecurity)

## 2.18.0 [2024/10/23] - SecTor Release

**New Features:**
Expand Down
28 changes: 14 additions & 14 deletions src/afterfact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2322,7 +2322,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -2417,7 +2417,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -2670,7 +2670,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: Some("verbose-2".to_string()),
enable_deprecated_rules: false,
Expand Down Expand Up @@ -2775,7 +2775,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: Some("verbose-2".to_string()),
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3012,7 +3012,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3107,7 +3107,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3355,7 +3355,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3450,7 +3450,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3771,7 +3771,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -3867,7 +3867,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -4132,7 +4132,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -4228,7 +4228,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -4418,7 +4418,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down Expand Up @@ -4514,7 +4514,7 @@ mod tests {
filepath: None,
live_analysis: false,
recover_records: false,
timeline_offset: None,
time_offset: None,
},
profile: None,
enable_deprecated_rules: false,
Expand Down
Loading

0 comments on commit 899851a

Please sign in to comment.