Event Correlation using sigma rules #4059
-
Hi, Is this something that can be done via a single rule in the sigma syntax or do we need to chain up rules to this? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, If you're looking for a program spawning another program. This can be achieved via a simple SIGMA rule using 2 fields. detection:
selection:
ParentImage|endswith: '\python.exe'
Image|endswith: '\chrome.exe' If you want to chain the result of 2 alerts then you would require correlation. You could check the SIGMA specification for the deprecated correlation syntax here. You could also check some example rules in the repo here Hope this answers your question. |
Beta Was this translation helpful? Give feedback.
Hi,
If you're looking for a program spawning another program. This can be achieved via a simple SIGMA rule using 2 fields.
Image
andParentImage
. An example in SIGMA would be:If you want to chain the result of 2 alerts then you would require correlation.
You could check the SIGMA specification for the deprecated correlation syntax here.
You could also check some example rules in the repo here
Hope this answers your question.