Query Details
Tags:
Query:
DeviceNetworkEvents
| where RemoteIPType == "Public"
| where RemoteIP in ((externaldata(IP: string ) [@"https://raw.githubusercontent.com/drb-ra/C2IntelFeeds/master/feeds/IPC2s-30day.csv"]
with (format=csv, ignoreFirstRecord=true) | distinct IP
))
| where InitiatingProcessFileName !in ("Google Chrome Helper","chrome.exe","firefox.exe","msedge.exe","opera.exe")
References:
Sure! Here's a simple summary of the query:
DeviceNetworkEvents table.RemoteIPType is "Public".RemoteIP is in a list of IP addresses from an external CSV file hosted on GitHub. This file contains potentially malicious IP addresses.In essence, this query identifies network events involving public IP addresses that match a list of suspicious IPs, but it ignores events initiated by common web browsers.

Ali Hussein
Released: September 13, 2023
Tables
Keywords
Operators