This hunt detects adversary activity involving known indicators of compromise from the AdaptixC2 command and control infrastructure to identify potential active infections within the environment. Proactively hunting for these specific IOCs in Azure Sentinel allows the SOC team to rapidly isolate compromised assets and mitigate lateral movement before the threat escalates, given the high severity associated with this C2 framework.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 173[.]199[.]70[.]174:14321 | botnet_cc | 2026-07-30 | 75% |
| ip:port | 65[.]49[.]220[.]29:8128 | botnet_cc | 2026-07-30 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["173.199.70.174", "65.49.220.29"]);
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(["173.199.70.174", "65.49.220.29"]);
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 3-5 specific false positive scenarios for the ThreatFox: AdaptixC2 IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Software Updates via Managed Deployment Tools
ccmsetup.exe (SCCM) or ivanti-agent.exe, and the destination IP belongs to the internal corporate subnet (e.g., 10.x.x.x) rather than external public IPs.Scenario: Scheduled Administrative Backup Jobs
VeeamAgent.exe or AcronisBackupService.exe and the event timestamp falls within defined maintenance windows (e.g., 01:00–05:00 local time) on non-business days.Scenario: Security Tool Communication with Cloud Intelligence Feeds