This detection identifies adversary activity involving known AdaptixC2 command and control indicators that facilitate persistent remote access and data exfiltration. Proactively hunting for these specific IOCs within Azure Sentinel is critical to rapidly isolate compromised endpoints before attackers can establish a foothold or move laterally across the network.
Malware Family: AdaptixC2 Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 47[.]93[.]42[.]22:443 | botnet_cc | 2026-08-03 | 100% |
| ip:port | 47[.]93[.]42[.]22:80 | botnet_cc | 2026-08-03 | 100% |
| ip:port | 173[.]199[.]70[.]174:8080 | botnet_cc | 2026-08-03 | 100% |
| ip:port | 173[.]199[.]70[.]174:443 | botnet_cc | 2026-08-03 | 100% |
| ip:port | 173[.]199[.]70[.]174:80 | botnet_cc | 2026-08-03 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["47.93.42.22", "173.199.70.174"]);
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(["47.93.42.22", "173.199.70.174"]);
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 4 specific false positive scenarios for the ThreatFox: AdaptixC2 IOCs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Scheduled Backup Job Executing Cloud Sync
VeeamBackupService.exe or rubrik-agent) and restrict the alert to exclude traffic originating from the dedicated backup server subnet (e.g., 10.20.45.0/24).Scenario: Endpoint Protection Cloud Communication
FalconSensor.exe or MsMpEng.exe) and exclude any outbound connections to the vendor’s official update domains (e.g., *.crowdstrike.com, *.microsoft.com).Scenario: Admin Remote Management via RDP/SSH