← Back to SOC feed Coverage →

ThreatFox: Havoc IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
iocthreatfoxwin-havoc
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-13T11:00:01Z · Confidence: high

Hunt Hypothesis

This detection targets adversary behavior involving the execution of Havoc post-exploitation tools to establish persistent command and control channels within compromised environments. Proactive hunting is essential in Azure Sentinel to identify early-stage lateral movement and data exfiltration attempts that may bypass standard signature-based defenses, ensuring rapid containment before broader network compromise occurs.

IOC Summary

Malware Family: Havoc Total IOCs: 4 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port154[.]36[.]188[.]233:8080botnet_cc2026-08-1375%
ip:port93[.]152[.]223[.]39:9443botnet_cc2026-08-1375%
ip:port51[.]38[.]39[.]19:443botnet_cc2026-08-13100%
ip:port51[.]38[.]39[.]19:22botnet_cc2026-08-13100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["93.152.223.39", "51.38.39.19", "154.36.188.233"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["93.152.223.39", "51.38.39.19", "154.36.188.233"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.havoc/