-
How WEC logs being parsed in zircolite and matched to sigma sql statements? In my lab i am forwarding WEC logs from multiple machines to SIEM and from SIEM i can export by filtering on suspected machine all wec logs for certain time in to JSON file, which i have then converted in to JSONL by using jq -c --stream. below command does create model and insert data without issue but not being detected. Am i doing things in correct order ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
To handle JSONL sources, Zircolite flattens any JSON given, which allows conversion to a table in a SQLite in memory Db. The rules in SQL are executed on this Db to get matches. The workflow is detailed here : Workflow. Multiple factors can lead to your logs not being handled correctly, can you share a anonymized sample of your logs ? |
Beta Was this translation helpful? Give feedback.
To handle JSONL sources, Zircolite flattens any JSON given, which allows conversion to a table in a SQLite in memory Db. The rules in SQL are executed on this Db to get matches.
The workflow is detailed here : Workflow.
Multiple factors can lead to your logs not being handled correctly, can you share a anonymized sample of your logs ?