This hunt detects adversary activity involving known indicators of compromise from the AdaptixC2 command and control infrastructure to identify potential lateral movement or data exfiltration attempts. Proactively hunting for these IOCs within Azure Sentinel is critical because early detection of this specific C2 channel allows the SOC team to isolate affected assets before adversaries can establish persistent access or escalate privileges.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 103[.]146[.]231[.]107:4321 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 103[.]140[.]154[.]7:32333 | botnet_cc | 2026-08-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["103.146.231.107", "103.140.154.7"]);
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.146.231.107", "103.140.154.7"]);
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:
Endpoint Protection Engine Updates
*.crowdstrike.com, *.microsoftonline.net) during the defined maintenance window (e.g., 02:00 – 04:00 UTC). Additionally, exclude processes running under the service account SYSTEM or specific vendor service names like FalconService.Automated Patch Management Deployment
ccmsetup.exe, IvantiAgentService). Configure the detection logic to ignore alerts where the parent process is the patch orchestrator and the destination IP belongs to the internal DMZ range or known vendor distribution points.Third-Party Cloud Backup Synchronization