Skip to content

Commit

Permalink
fix: add supported extension jsonl
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Dec 16, 2024
1 parent cb582a6 commit 5dd783a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,9 @@ impl App {
}

let (detection_tmp, cnt_tmp, tl_tmp, recover_cnt_tmp, mut detect_infos) =
if evtx_file.extension().unwrap() == "json" {
if evtx_file.extension().unwrap() == "json"
|| evtx_file.extension().unwrap() == "jsonl"
{
self.analysis_json_file(
(evtx_file, time_filter, target_event_ids, stored_static),
detection,
Expand Down

0 comments on commit 5dd783a

Please sign in to comment.