This detection rule identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Havoc post-exploitation tool, which attackers utilize to establish persistence and execute lateral movement within compromised networks. A proactive hunt for these IOCs in Azure Sentinel is critical because early identification of Havoc artifacts enables the SOC team to rapidly contain active threats before they can deploy additional payloads or exfiltrate sensitive data.
Malware Family: Havoc Total IOCs: 6 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 93[.]152[.]223[.]39:9090 | botnet_cc | 2026-08-12 | 100% |
| ip:port | 93[.]152[.]223[.]39:8080 | botnet_cc | 2026-08-12 | 100% |
| ip:port | 93[.]152[.]223[.]39:22 | botnet_cc | 2026-08-12 | 100% |
| ip:port | 93[.]152[.]223[.]39:5900 | botnet_cc | 2026-08-12 | 100% |
| ip:port | 93[.]152[.]223[.]39:80 | botnet_cc | 2026-08-12 | 100% |
| ip:port | 93[.]152[.]223[.]39:443 | botnet_cc | 2026-08-12 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["93.152.223.39"]);
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(["93.152.223.39"]);
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 5 specific false positive scenarios for the ThreatFox: Havoc IOCs detection rule, tailored for a legitimate enterprise environment:
Scenario: Automated Vulnerability Scanning by Qualys or Tenable
svc-qualys-scan) or restrict the rule trigger to exclude the specific CIDR blocks of the vulnerability management platform’s update servers if they match the Havoc IOC list.Scenario: Scheduled Microsoft Defender for Endpoint (MDE) Cloud Updates
ProcessName is MsMpEng.exe (Microsoft Defender Antivirus) and the destination port matches standard update ports (e.g., 443).Scenario: Third-Party SaaS Integration (e.g., Jira or ServiceNow)