mirror of
https://github.com/marcredhat/kql
synced 2026-06-10 14:01:20 +00:00
Initial commit: KQL ↔ SDL PowerQuery proof of equivalence
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
let IP_Indicators = ThreatIntelIndicators
|
||||
| extend IndicatorType = tostring(split(ObservableKey, ":", 0)[0])
|
||||
| where IndicatorType in ("ipv4-addr", "ipv6-addr", "network-traffic")
|
||||
| where IsActive == true;
|
||||
IP_Indicators
|
||||
| join kind=innerunique (
|
||||
CommonSecurityLog | where TimeGenerated >= ago(1h)
|
||||
) on $left.ObservableValue == $right.DestinationIP
|
||||
| project TimeGenerated, SourceIP, DestinationIP, Id, Confidence, DeviceVendor
|
||||
Reference in New Issue
Block a user