This hunt detects adversary command and control activity by identifying network communications matching known AdaptixC2 indicators of compromise within Azure Sentinel. Proactive hunting is essential to rapidly identify early-stage infections and prevent lateral movement before the threat actor establishes a persistent foothold in the environment.
Malware Family: AdaptixC2 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]162[.]199[.]180:4321 | botnet_cc | 2026-08-01 | 75% |
| ip:port | 104[.]253[.]79[.]117:4321 | botnet_cc | 2026-08-01 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["104.253.79.117", "192.162.199.180"]);
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(["104.253.79.117", "192.162.199.180"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Endpoint Protection Updates
09:00–17:00 local time). Alternatively, exclude process names associated with the EDR updater service (e.g., C:\Program Files\CrowdStrike\csfalcon.exe) from triggering this specific rule.Scenario: Scheduled Backup and Archive Jobs
VeeamBackupService or CommServeAgent) and restrict the detection to exclude traffic originating from known internal IP ranges dedicated to backup infrastructure (e.g., 10.20.30.0/24).Scenario: Third-Party SIEM Log Ingestion