This hunt targets adversary command and control activity by identifying network traffic matching three specific ThreatFox IOCs linked to the AdaptixC2 infrastructure. Proactive detection in Azure Sentinel is critical because early identification of these indicators can reveal persistent lateral movement or data exfiltration attempts before they escalate into a full-scale incident.
Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 209[.]99[.]188[.]193:8080 | botnet_cc | 2026-07-09 | 100% |
| ip:port | 209[.]99[.]188[.]193:80 | botnet_cc | 2026-07-09 | 100% |
| ip:port | 202[.]1[.]31[.]83:2234 | botnet_cc | 2026-07-09 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["209.99.188.193", "202.1.31.83"]);
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(["209.99.188.193", "202.1.31.83"]);
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 4 specific false positive scenarios for the ThreatFox: AdaptixC2 IOCs detection rule in an enterprise environment, including suggested filters and exclusions:
Endpoint Security Management Console Updates
10.50.10.x for CrowdStrike) or filter by the specific service account used for updates (e.g., svc_crowdstrike_update).Automated Vulnerability Scanning Jobs
svc_nessus_agent) or exclude connections where the destination port matches standard scanning ports (e.g., TCP 80, 443, 161) during defined maintenance windows (e.g., Sunday 02:00–06:00 UTC).Third-Party Cloud SaaS Integration Probes