Skip to content

Commit

Permalink
fix: common field
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Dec 17, 2023
1 parent 55ff063 commit 4e93edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/sigmac/logsource_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def need_field_conversion(self) -> bool:
return False

def is_detectable_fields(self, keys) -> bool:
common_fields = ["CommandLine", "ProcessId", "OriginalFileName"]
common_fields = ["CommandLine", "ProcessId"]
keys = [re.sub(r"\|.*", "", k) for k in keys]
keys = [k for k in keys if k not in common_fields]
if not keys:
Expand Down

0 comments on commit 4e93edb

Please sign in to comment.