-
I'm working through the documentation and generally understand the reason behind the change in removing In the documentation examples:
Does this replace the logic of an entire Sigma rule? Or does this reference the Sigma rule Are there any live examples in the Sigma repo that I can look at and compare while I'm building my own? Additionally, and this is a question for maybe a different repo, is this supported already in PySigma? If so, which release version so I can make sure my environment supports this feature too. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, The SIGMA V2 correlation "proposal" is still a work in progress and shouldn't be used in production. The main rule repo isn't using the new correlation and we've deprecated the older correlation rules as we're transitioning to PySIGMA. Also, this feature is not yet implemented in PySIGMA and it's still under construction and discussion :) Now to answer your question about how it works. (this could and will change in the future). Basically there are many correlation types and depending on the type of correlation some fields will be required or added. In the example, you linked it's a If you change the type of the correlation then other fields would be required or removed. For example if you choose a action: correlation
type: temporal
rules:
- recon_cmd_a
- recon_cmd_b
- recon_cmd_c
group-by:
- ComputerName
- User
timespan: 5m
ordered: false Hope this answer your question :) |
Beta Was this translation helpful? Give feedback.
Hi,
The SIGMA V2 correlation "proposal" is still a work in progress and shouldn't be used in production. The main rule repo isn't using the new correlation and we've deprecated the older correlation rules as we're transitioning to PySIGMA. Also, this feature is not yet implemented in PySIGMA and it's still under construction and discussion :)
Now to answer your question about how it works. (this could and will change in the future).
Basically there are many correlation types and depending on the type of correlation some fields will be required or added.
In the example, you linked it's a
value_count
correlation rule. So it needs afield
to count on and a grouping designated by thegroup-by
…