This hunt detects adversary command and control activities linked to the AdaptixC2 framework by identifying network traffic matching nine specific indicators of compromise. Proactively searching for these signatures in Azure Sentinel is critical to rapidly identify early-stage lateral movement or data exfiltration attempts before they escalate into significant security incidents.
Malware Family: AdaptixC2 Total IOCs: 9 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 144[.]31[.]117[.]38:80 | botnet_cc | 2026-07-11 | 100% |
| ip:port | 82[.]158[.]229[.]189:18443 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 82[.]158[.]229[.]30:18443 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 82[.]158[.]229[.]143:18443 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 31[.]207[.]4[.]197:9872 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 178[.]104[.]249[.]136:4321 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 1[.]14[.]234[.]68:4321 | botnet_cc | 2026-07-11 | 75% |
| ip:port | 144[.]31[.]117[.]38:8080 | botnet_cc | 2026-07-11 | 100% |
| ip:port | 144[.]31[.]117[.]38:443 | botnet_cc | 2026-07-11 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["82.158.229.30", "82.158.229.143", "144.31.117.38", "178.104.249.136", "31.207.4.197", "1.14.234.68", "82.158.229.189"]);
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(["82.158.229.30", "82.158.229.143", "144.31.117.38", "178.104.249.136", "31.207.4.197", "1.14.234.68", "82.158.229.189"]);
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 for the ThreatFox: AdaptixC2 IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\ThreatQuarantine directory.csagent.exe, MsMpEng.exe) and the Target Path contains “Quarantine” or “Archive,” provided the file creation date is older than 30 days.Scheduled Software Update Deployments via SCCM/Intune
Update_Adaptix_Client running under the SYSTEM account may download configuration manifests from an internal update server hosting these IOCs, triggering network connection alerts on standard ports (80/443) to known IP ranges associated with the rule’s IOCs.Update_Adaptix_Client scheduled task and limiting alerts to business hours (e.g., 02