This detection rule identifies adversary activity linked to the Havoc post-exploitation framework by monitoring three specific Indicators of Compromise (IOCs) that signal potential command-and-control or lateral movement behaviors. SOC teams should proactively hunt for these signals in Azure Sentinel to rapidly detect and contain Havoc-based attacks before adversaries can establish persistence or exfiltrate sensitive data within the cloud environment.
Malware Family: Havoc Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 62[.]171[.]166[.]237:8080 | botnet_cc | 2026-08-15 | 75% |
| ip:port | 176[.]44[.]51[.]156:443 | botnet_cc | 2026-08-15 | 75% |
| ip:port | 212[.]103[.]26[.]10:55000 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["62.171.166.237", "212.103.26.10", "176.44.51.156"]);
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(["62.171.166.237", "212.103.26.10", "176.44.51.156"]);
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: Havoc IOCs detection rule:
Scenario: Antivirus Engine Updates via Scheduled Tasks
UpdateService.exe or ccSvcHst.exe) that download definition files from vendor servers. These downloads may match Havoc’s network IOCs if the vendor uses overlapping IP ranges or specific certificate hashes associated with the threat intelligence feed.MsMpEng.exe, ccSvcHst.exe) when they initiate outbound connections to trusted vendor update domains, regardless of the matched IOC hash or IP.Scenario: Internal Patch Management Deployment
WUAEngine.exe, JamfProAgent) may establish connections to internal distribution points that share network signatures or file hashes similar to Havoc’s IOCs, particularly if the organization uses a proxy server with a common certificate chain.10.x.x.x range).Scenario: Cloud Backup and Synchronization Services