This hunt detects adversary activity involving the AdaptixC2 command and control infrastructure by identifying matches against three specific Indicators of Compromise (IOCs). Proactive hunting for these signals in Azure Sentinel is critical to rapidly uncover early-stage lateral movement or data exfiltration attempts that may evade standard signature-based detections.
Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]195[.]8[.]67:443 | botnet_cc | 2026-08-02 | 100% |
| ip:port | 45[.]195[.]8[.]67:4443 | botnet_cc | 2026-08-02 | 100% |
| ip:port | 4[.]228[.]96[.]20:5000 | botnet_cc | 2026-08-02 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["4.228.96.20", "45.195.8.67"]);
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(["4.228.96.20", "45.195.8.67"]);
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 exclusion strategies for the ThreatFox: AdaptixC2 IOCs detection rule in an enterprise environment:
Scenario: Endpoint Protection Software Updates
FalconSensor.exe or MsMpEng.exe) and the network destination matches known update server ranges defined in the threat intelligence feed.Scenario: Scheduled Backup Jobs
Scenario: Third-Party Cloud Management Tools