Replies: 0 comments 3 replies
-
Why? I always thought that there should be a native way to apply IOCs in every SIEM - e.g. STIX as input. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all! So i'm one of the maintainers of the Confluent Sigma (apache licensed) which is built to apply sigma rules against streams of data in Kafka in real time. A common pattern that I have seen in the Kafka world is to check events against a massive term list and use that to route data. So the most obvious example of that is an IP or DNS blacklist (or whitelist). Without sigma you could do this easily with a kstreams app or ksql query but I want to be able to apply this in Sigma. Clearly you could embed a long list of terms in a single sigma rule but that obviously will become unwieldy and unscalable quickly. You could also just have separate rules for each term but thats not great either. Ideally what you would want to do is reference a term list in the sigma rule where the term list is an implementation specific construct that you would join against. In the Kafka world this is easy with a ktable against terms in a topic for instance. I may be missing this but is there a syntax to already do this? Thoughts
Beta Was this translation helpful? Give feedback.
All reactions