From cb582a6c7dadccef9a2256d213663611be4f382d Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Tue, 17 Dec 2024 07:21:24 +0900 Subject: [PATCH] fix: add supported extension jsonl --- src/detections/configs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 8333a96ef..8dbc84f81 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -2323,6 +2323,7 @@ pub fn get_target_extensions(arg: Option<&Vec>, json_input_flag: bool) - let mut target_file_extensions: HashSet = convert_option_vecs_to_hs(arg); if json_input_flag { target_file_extensions.insert(String::from("json")); + target_file_extensions.insert(String::from("jsonl")); } else { target_file_extensions.insert(String::from("evtx")); }