This detection identifies adversary activity linked to the AdaptixC2 command and control infrastructure by monitoring for specific threat intelligence indicators within Azure Sentinel logs. Proactively hunting for these signals allows the SOC team to rapidly detect early-stage lateral movements or data exfiltration attempts before they escalate into full-scale breaches.
Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 2[.]26[.]26[.]153:43216 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 194[.]233[.]80[.]96:4321 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 130[.]12[.]182[.]184:1339 | botnet_cc | 2026-07-27 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["130.12.182.184", "194.233.80.96", "2.26.26.153"]);
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(["130.12.182.184", "194.233.80.96", "2.26.26.153"]);
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, along with targeted filters and exclusions to refine the alerting logic in an enterprise environment.
Scenario: Automated Patch Deployment via SCCM/Intune
Parent_Process_Name is “ccmexec.exe” (SCCM) or “Microsoft.IntuneManagementAgent” AND the event timestamp falls between 01:00 and 05:00 UTC.Scenario: Third-Party Backup Agent Communication
File_Path matches C:\Program Files\Veeam\BackupAndReplication\Agent\* or C:\Commvault\ContentStore\*, regardless of the specific IOC hash match.Scenario: Scheduled PowerShell Script for Asset Inventory