This detection identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Havoc post-exploitation tool, which is frequently utilized by threat actors for lateral movement and command execution within compromised networks. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of Havoc usage can reveal active post-compromise operations before adversaries establish persistent footholds or exfiltrate sensitive data.
Malware Family: Havoc Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 64[.]176[.]199[.]134:8443 | botnet_cc | 2026-08-15 | 75% |
| ip:port | 62[.]171[.]166[.]237:44300 | botnet_cc | 2026-08-15 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["64.176.199.134", "62.171.166.237"]);
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(["64.176.199.134", "62.171.166.237"]);
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 4 specific false positive scenarios for the ThreatFox: Havoc IOCs detection rule, along with recommended filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Automated Threat Intelligence Feed Ingestion by EDR
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe or C:\Windows\System32\mpclient.dll) and filter out events where the source IP is an internal DNS server or a dedicated threat intelligence appliance.Scenario: Scheduled Security Scans by Internal Vulnerability Management Tools
192.168.10.x range).Scenario: Administrative PowerShell Script Execution for Compliance Audits