From 5dd783a6c610ff11dc4f6a9a919eecb28c9dedd7 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Tue, 17 Dec 2024 07:30:44 +0900 Subject: [PATCH] fix: add supported extension jsonl --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d782e425c..bbc58be92 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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,