mirror of
https://github.com/marcredhat/kql
synced 2026-06-09 21:47:13 +00:00
Initial commit: KQL ↔ SDL PowerQuery proof of equivalence
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
let baseline = SecurityEvent
|
||||
| where TimeGenerated between (ago(14d) .. ago(1d))
|
||||
| where EventID == 4688
|
||||
| summarize by FileName = tostring(split(NewProcessName, '\\')[-1]);
|
||||
SecurityEvent
|
||||
| where TimeGenerated >= ago(1d) | where EventID == 4688
|
||||
| extend FileName = tostring(split(NewProcessName, '\\')[-1])
|
||||
| join kind=leftanti baseline on FileName
|
||||
Reference in New Issue
Block a user