This hunt hypothesis detects adversary activity involving the AdaptixC2 command and control infrastructure by monitoring for three specific indicators of compromise within network traffic and endpoint logs. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage lateral movement or data exfiltration attempts before they escalate into a full-blown incident, given the high severity associated with this threat actor’s operational patterns.
Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 87[.]251[.]64[.]204:63812 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 45[.]11[.]59[.]152:43200 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 193[.]93[.]194[.]42:57301 | botnet_cc | 2026-07-24 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["87.251.64.204", "193.93.194.42", "45.11.59.152"]);
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(["87.251.64.204", "193.93.194.42", "45.11.59.152"]);
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 specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: AdaptixC2 IOCs detection rule:
Scenario: Enterprise Endpoint Protection Scans
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe) or exclude traffic originating from known internal update servers (e.g., 10.20.5.15 for WSUS) when the destination port is 443 and the user context is a system account (SYSTEM).Scenario: Scheduled Backup Jobs
DOMAIN\BackupSvc) running between 02:00 and 06:00 UTC on weekdays. Additionally, exclude connections where the process path contains \Veeam\ or \RubrikAgent\.Scenario: Legitimate Cloud Management Tools