← Back to SOC feed Coverage →

ThreatFox: Havoc IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-04-24T09:00:00Z · Confidence: high

Hunt Hypothesis

The detection identifies potential Havoc malware activity through suspicious network behavior indicative of data exfiltration and persistence. SOC teams should proactively hunt for this behavior in Azure Sentinel to mitigate the risk of sensitive data theft and establish long-term system compromise.

IOC Summary

Malware Family: Havoc Total IOCs: 5 IOC Types: sha256_hash, domain, ip:port

TypeValueThreat TypeFirst SeenConfidence
domaincarrolc.combotnet_cc2026-04-2490%
domaincwrtwright.combotnet_cc2026-04-2490%
ip:port45[.]61[.]136[.]30:443botnet_cc2026-04-2490%
sha256_hashfb3630822b70bacb56aa4cec29b5a0e3e9acb3920809e70310a4003385a6d34apayload2026-04-2490%
sha256_hash59e3c4cb06331b4f2d78a9a0592f3747e573bd01c5a7650c26361d1e25520712payload2026-04-2460%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["45.61.136.30"]);
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(["45.61.136.30"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Havoc
let malicious_domains = dynamic(["carrolc.com", "cwrtwright.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Havoc
let malicious_hashes = dynamic(["fb3630822b70bacb56aa4cec29b5a0e3e9acb3920809e70310a4003385a6d34a", "59e3c4cb06331b4f2d78a9a0592f3747e573bd01c5a7650c26361d1e25520712"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

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