This hunt hypothesis targets adversary behavior involving the deployment of Havoc C2 infrastructure by detecting specific Indicators of Compromise (IOCs) linked to its network communications and file artifacts. Proactive hunting for these signatures in Azure Sentinel is critical because Havoc’s modular architecture allows attackers to rapidly establish persistent command-and-control channels that may evade standard signature-based defenses without deep IOC correlation.
Malware Family: Havoc Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 37[.]235[.]54[.]142:53236 | botnet_cc | 2026-07-13 | 75% |
| ip:port | 172[.]86[.]119[.]141:443 | botnet_cc | 2026-07-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["37.235.54.142", "172.86.119.141"]);
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(["37.235.54.142", "172.86.119.141"]);
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 for the ThreatFox: Havoc IOCs detection rule in an enterprise environment, including targeted filters and exclusions:
Endpoint Management Agent Updates
SHA256: a1b2...c3d4 corresponding to JamfPro-Agent-v4.2.exe).Scheduled Backup and Disaster Recovery Jobs
VeeamAgent.exe (or similar service name) running under a dedicated service account (e.g., svc_backup_prod) during defined maintenance windows (e.g., 02:00–06:00 UTC). This can be implemented via a time-based filter on the SIEM ingestion pipeline.Third-Party SaaS Integration Probes