This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the AdaptixC2 command and control infrastructure, which adversaries leverage to maintain persistent access and exfiltrate data from compromised endpoints. The SOC team should proactively hunt for these IOCs within Azure Sentinel to identify early-stage infections or lateral movement that may evade standard signature-based detection, thereby reducing dwell time before full compromise occurs.
Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 203[.]161[.]55[.]41:7691 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 202[.]73[.]4[.]82:44321 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 194[.]76[.]226[.]90:4321 | botnet_cc | 2026-08-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["194.76.226.90", "203.161.55.41", "202.73.4.82"]);
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(["194.76.226.90", "203.161.55.41", "202.73.4.82"]);
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 |
Legitimate Endpoint Protection Updates
falcon.crowdstrike.com or go.microsoft.com) and restrict detection to non-standard ports if the update service uses a dedicated port range distinct from standard web browsing.Third-Party Cloud Backup Jobs
svc-backup-agent) and whitelist the destination IP ranges of known cloud storage providers used by the enterprise’s backup solution.Software Deployment via Configuration Management