SolarWinds -CVE-2021-35211
Description
//Check for network connections with SolarWInds IP's based on DeviceNetworkEvents## Query
Query · kql
let IPs = pack_array("98.176.196.89", "68.235.178.32",
"208.113.35.58","144.34.179.162","97.77.97.58");
DeviceNetworkEvents
| where RemotePort == 443
| where Protocol == "Tcp" and ActionType == "ConnectionSuccess"
| where Timestamp > ago(7d)
| where RemoteIP in(IPs)