This hunt detects adversary activity involving four specific Indicators of Compromise (IOCs) linked to the AdaptixC2 command and control infrastructure, which are often utilized by threat actors for persistent communication with compromised hosts. Proactively hunting for these IOCs within Azure Sentinel is critical because early identification of AdaptixC2 traffic can reveal stealthy lateral movement or data exfiltration attempts before they escalate into a full-scale incident.
Malware Family: AdaptixC2 Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 207[.]56[.]26[.]118:4321 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 207[.]56[.]26[.]121:4321 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 117[.]24[.]4[.]112:3333 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 103[.]51[.]145[.]75:4321 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["103.51.145.75", "117.24.4.112", "207.56.26.118", "207.56.26.121"]);
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(["103.51.145.75", "117.24.4.112", "207.56.26.118", "207.56.26.121"]);
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 5 specific false positive scenarios for the ThreatFox: AdaptixC2 IOCs detection rule, including targeted filters and exclusions:
Scenario: Scheduled Antivirus Definition Updates
falcon.sys (CrowdStrike) or MsMpEng.exe (Defender) when they initiate network connections to specific update domains (e.g., *.crowdstrike.com, *.microsoft.com). Additionally, exclude traffic occurring strictly between 02:00 and 04:00 UTC on weekdays.Scenario: Third-Party Patch Management Execution
svc-patch-mgmt or IvantiService). Configure a filter to suppress detections where the source process path is located within the C:\Program Files\Ivanti\ directory.Scenario: Automated Cloud Backup Jobs