This hypothesis posits that adversaries are actively deploying Havoc C2 infrastructure to establish persistent command and control channels within the environment. Proactive hunting in Azure Sentinel is critical to identify these specific IOCs early, preventing potential lateral movement and data exfiltration before the adversary can fully operationalize their beaconing capabilities.
Malware Family: Havoc Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 74[.]249[.]72[.]157:22 | botnet_cc | 2026-07-16 | 100% |
| ip:port | 74[.]249[.]72[.]157:443 | botnet_cc | 2026-07-16 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["74.249.72.157"]);
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(["74.249.72.157"]);
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: Havoc IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Management Patching and Agent Updates
10.x.x.x range) and destination ports associated with the specific vendor’s update service (e.g., port 443 to *.crowdstrike.com). Additionally, whitelist the specific process names of the EDR agents (e.g., CwdHost.exe, MsMpEng.exe) when communicating with these IOCs.Software Supply Chain and CI/CD Pipeline Artifacts
java.exe running under jenkins-agent, dockerd) and restrict the alert scope to business hours or specific scheduled maintenance windows (