This detection rule identifies adversary activity by matching network and endpoint telemetry against specific Indicators of Compromise (IOCs) attributed to the Chaos threat actor. Proactively hunting for these signals in Azure Sentinel is critical due to the high severity rating, allowing the SOC team to rapidly isolate potential breaches before they escalate into broader incidents.
Malware Family: Chaos Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 144[.]31[.]106[.]168:443 | botnet_cc | 2026-08-30 | 75% |
| ip:port | 144[.]31[.]106[.]168:80 | botnet_cc | 2026-08-30 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Chaos
let malicious_ips = dynamic(["144.31.106.168"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["144.31.106.168"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Chaos IOCs rule, including tailored filters and exclusions suitable for an enterprise environment:
Scheduled Security Scans by Enterprise AV/EDR
Process Name (e.g., MsMpEng.exe, FalconSensor.exe) and restrict the detection to exclude traffic originating from the specific IP ranges of internal Security Management Servers or the designated Update Distribution Point (UDP).Automated Threat Intelligence Feed Ingestion
Source User is a service account (e.g., svc-threat-intel, siem-ingestion) and the Destination Port matches the standard API ingestion port used by the threat intelligence engine (typically 443 or 8080).Admin-Driven Manual Threat Hunting Queries