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 e1903a7 commit cb582a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/detections/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2323,6 +2323,7 @@ pub fn get_target_extensions(arg: Option<&Vec<String>>, json_input_flag: bool) -
let mut target_file_extensions: HashSet<String> = 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"));
}
Expand Down

0 comments on commit cb582a6

Please sign in to comment.