This hypothesis targets the Hook malware family, which establishes covert command-and-control channels and exfiltrates data through compromised IP:port pairs often disguised as legitimate traffic. Proactively hunting for these specific IOCs in Azure Sentinel is critical to identify early-stage compromise and prevent lateral movement before the adversary achieves full persistence or data exfiltration.
Malware Family: Hook Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 130[.]61[.]146[.]214:443 | botnet_cc | 2026-09-22 | 75% |
| ip:port | 130[.]61[.]146[.]214:80 | botnet_cc | 2026-09-22 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Hook
let malicious_ips = dynamic(["130.61.146.214"]);
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(["130.61.146.214"]);
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 |
svc_app_monitor) or source IPs belonging to the application server VLAN to the known Hook C2 IPs, provided the destination port matches the application’s expected health check port (e.g., 8080 or 9000) rather than a standard web port.veeam.exe, cvp.exe) when connecting to the Hook IOC IPs, assuming the connection is initiated by the backup service account and not a user session.10.0.1.50 for DNS) and the destination port is 53 (DNS) or 67/68 (DHCP),