This detection rule identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Havoc post-exploitation tool, which is frequently used by threat actors to establish persistence and execute lateral movement within compromised networks. A SOC team should proactively hunt for these IOCs in Azure Sentinel because early identification of Havoc-related artifacts enables rapid containment of advanced threats before they can fully entrench themselves or exfiltrate sensitive data.
Malware Family: Havoc Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 217[.]217[.]97[.]164:8443 | botnet_cc | 2026-08-27 | 75% |
| ip:port | 106[.]15[.]65[.]247:8443 | botnet_cc | 2026-08-27 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["217.217.97.164", "106.15.65.247"]);
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(["217.217.97.164", "106.15.65.247"]);
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, including tailored filters and exclusions to reduce noise in an enterprise environment:
Scenario: Automated Threat Intelligence Feed Ingestion
threatfox_updater.exe or splunkd) and restrict the alert to exclude events occurring during specific maintenance windows (e.g., 02:00–04:00 UTC). Alternatively, filter out traffic originating from known internal IP ranges dedicated to the SIEM infrastructure.Scenario: Endpoint Detection and Response (EDR) Scanning Artifacts
C:\Program Files\CrowdStrike\fsq.exe or MsMpEng.exe). Additionally, exclude events where the file hash matches a known “good” baseline stored in the enterprise’s internal allowlist.Scenario: Software Deployment via Configuration Management