This hunt targets adversary command and control activities by identifying network traffic matching the specific Indicators of Compromise (IOCs) linked to the AdaptixC2 infrastructure. Proactively hunting for these signatures in Azure Sentinel is critical because early detection of AdaptixC2 communications can reveal persistent threats before they escalate into full-scale data exfiltration or lateral movement incidents.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 31[.]220[.]93[.]222:4321 | botnet_cc | 2026-07-05 | 75% |
| ip:port | 144[.]31[.]62[.]81:443 | botnet_cc | 2026-07-05 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["144.31.62.81", "31.220.93.222"]);
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.62.81", "31.220.93.222"]);
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 four 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
SYSTEM account with a known digital signature hash matching the EDR management agent (e.g., falcon.sys or SentinelOne.exe).Automated Software Distribution via SCCM/Intune
ccmexec.exe process (SCCM) or Microsoft.Store.Apps.UI (Intune) during standard maintenance windows (e.g., 02:00–04:00 UTC). Implement a whitelist for specific destination ports (80/443) when the source is identified as an internal Distribution Point Server.**Third-Party Backup and