This detection targets adversary command and control activity by identifying network traffic matching five specific Indicators of Compromise (IOCs) linked to the AdaptixC2 framework. Proactive hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage lateral movement or data exfiltration attempts before they escalate into broader compromises.
Malware Family: AdaptixC2 Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]156[.]87[.]224:8443 | botnet_cc | 2026-08-16 | 75% |
| ip:port | 192[.]162[.]199[.]185:38492 | botnet_cc | 2026-08-16 | 75% |
| ip:port | 154[.]37[.]218[.]235:8080 | botnet_cc | 2026-08-15 | 100% |
| ip:port | 154[.]37[.]218[.]235:443 | botnet_cc | 2026-08-15 | 100% |
| ip:port | 154[.]37[.]218[.]235:80 | botnet_cc | 2026-08-15 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["192.162.199.185", "154.37.218.235", "45.156.87.224"]);
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(["192.162.199.185", "154.37.218.235", "45.156.87.224"]);
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 an enterprise environment:
Scenario: Automated Endpoint Security Scans
MSSQL$EDRService, CrowdStrikeFalcon) or filter logs where the process name is MsMpEng.exe or CSFalconService.exe and the user context is a local system account.Scenario: Scheduled Threat Intelligence Ingestion Jobs
Process Name being powershell.exe and the command line containing keywords like -ImportThreats, -AdaptixC2, or specific script paths (e.g., C:\Scripts\DailyIOCUpdate.ps1). Additionally, exclude events occurring during known maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Admin-Driven Manual IOC Verification
nslookup, `curl