This hunt detects adversary activity involving known AdaptixC2 command-and-control infrastructure by monitoring network traffic against specific ThreatFox indicators of compromise. Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage lateral movement or data exfiltration attempts before they escalate into full-scale incidents.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 193[.]32[.]162[.]108:4432 | botnet_cc | 2026-08-17 | 75% |
| ip:port | 107[.]173[.]160[.]185:4321 | botnet_cc | 2026-08-17 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["193.32.162.108", "107.173.160.185"]);
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(["193.32.162.108", "107.173.160.185"]);
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 Endpoint Management Traffic
IntuneManagementExtension.exe, ccmsetup.exe) and exclude traffic originating from the internal IP ranges of your Configuration Management Servers. Additionally, filter out connections where the destination port is standard management ports (e.g., 443) and the User-Agent string contains “Microsoft Intune” or specific vendor identifiers.Scenario: Scheduled Backup and Data Replication Jobs
\Backup\ or specific service names like Veeam.Backup.Service.exe.**Scenario: Third-Party