This hunt targets adversary command and control activities by identifying network connections to known AdaptixC2 infrastructure indicators of compromise within the Azure Sentinel environment. Proactively hunting for these specific IOCs is critical because early detection of this established botnet’s communication patterns allows the SOC team to isolate affected assets before lateral movement or data exfiltration occurs.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 193[.]35[.]17[.]42:9956 | botnet_cc | 2026-06-29 | 75% |
| ip:port | 104[.]168[.]38[.]165:4321 | botnet_cc | 2026-06-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["193.35.17.42", "104.168.38.165"]);
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.35.17.42", "104.168.38.165"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Policy Updates via Microsoft Defender for Endpoint (MDE)
MsMpEng.exe or SenseAgent) connecting to Microsoft’s cloud infrastructure, which may be flagged if the IOCs overlap with known Microsoft update servers or if the AdaptixC2 IOC is a shared library component used by MDE.MsMpEng.exe, SenseAgent.exe, and AntimalwareService.exe when connecting to IP ranges belonging to Microsoft Azure CDN or known update endpoints (e.g., *.update.microsoft.com).Scheduled Third-Party Patch Management Jobs (Ivanti or SCCM)
Setup.exe or PatchAgent) downloads a dependency package from a vendor repository that hosts an AdaptixC2-associated URL or file hash, generating legitimate HTTP/HTTPS traffic during the maintenance window (e.g., 02:00–04:00 UTC).svc-patchmgr) and exclude traffic from the SCCM/Ivanti client process IDs during defined maintenance windows.Cloud Backup Agent Communication (Veeam or Commvault)