This detection identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Havoc post-exploitation tool, which is frequently used by threat actors for command and control or lateral movement within compromised networks. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of Havoc usage allows the SOC team to rapidly isolate affected assets and disrupt ongoing campaigns 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 | 172[.]188[.]0[.]134:22 | botnet_cc | 2026-08-14 | 100% |
| ip:port | 172[.]188[.]0[.]134:443 | botnet_cc | 2026-08-14 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Havoc
let malicious_ips = dynamic(["172.188.0.134"]);
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(["172.188.0.134"]);
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 |
Scenario: Legitimate Security Tool Communication
Source Process Name is FalconSensor.exe (or MsMpEng.exe) and the Destination Domain matches the official ThreatFox update domain (e.g., *.threatfox.io).Scenario: Scheduled Administrative Backup Jobs
01:30 and 05:00 where the User Account is a service account named svc-backup-admin and the Process Command Line contains the keyword /backup-archive.Scenario: Internal DevOps CI/CD Pipeline Execution