This hunt detects adversary activity involving AdaptixC2 command and control infrastructure by identifying traffic or logs matching its specific indicators of compromise. Proactively hunting for these signals in Azure Sentinel is critical to rapidly identify early-stage intrusions leveraging this C2 framework before they escalate into broader network compromises.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 57[.]129[.]92[.]151:4321 | botnet_cc | 2026-07-29 | 75% |
| ip:port | 45[.]195[.]8[.]67:4321 | botnet_cc | 2026-07-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["45.195.8.67", "57.129.92.151"]);
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(["45.195.8.67", "57.129.92.151"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: AdaptixC2 IOCs detection rule in an enterprise environment:
Scenario: Legitimate Software Deployment via Configuration Management Tools
Exclude if ProcessName contains "ccmexec.exe" OR "ansible-playbook" AND Source IP is in the range of internal management subnets.Scenario: Scheduled Backup Jobs Connecting to Cloud Repositories
Exclude if ProcessName is "vrb_service.exe" OR "commvault_agent" AND the event occurs between 01:00 and 05:00 local time on weekdays.Scenario: Third-Party SaaS Integration for Identity or Ticketing