This detection rule identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Havoc post-exploitation framework, which is frequently used by threat actors for lateral movement and command execution within compromised networks. The SOC team should proactively hunt for these IOCs in Azure Sentinel because early identification of Havoc artifacts enables rapid containment of active intrusions before adversaries can establish persistence or exfiltrate sensitive data.
Malware Family: Havoc Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 109[.]248[.]160[.]184:8080 | botnet_cc | 2026-08-18 | 100% |
| ip:port | 46[.]63[.]0[.]187:443 | botnet_cc | 2026-08-18 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["46.63.0.187", "109.248.160.184"]);
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(["46.63.0.187", "109.248.160.184"]);
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 in an enterprise environment:
Scenario: Automated Threat Intelligence Feed Ingestion
ThreatIntel-Server01, CrowdStrike Falcon Intelligence) or whitelist the specific IP ranges of the SIEM’s ingestion service accounts.Scenario: Scheduled Security Tool Updates and Definitions
MsMpEng.exe or cbengine) accessing these specific IOCs can trigger a false positive match.Process Name is known security agents (e.g., MsMpEng.exe, cbengine.exe) AND the User Account is a system service account (e.g., NT AUTHORITY\SYSTEM or DOMAIN\UpdateService).Scenario: Admin-Driven Manual IOC Verification