This hunt targets the presence of seven specific IOCs linked to the BeaverTail threat actor, indicating potential compromise or reconnaissance activity within the environment. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify and isolate affected assets before the adversary can establish persistence or exfiltrate data.
Malware Family: BeaverTail Total IOCs: 7 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://gamboracle.vercel.app/api | payload_delivery | 2026-09-18 | 90% |
| url | hxxp://51[.]210[.]52[.]212:1224/api/checkStatus | botnet_cc | 2026-09-18 | 95% |
| ip:port | 51[.]210[.]52[.]212:1224 | botnet_cc | 2026-09-18 | 95% |
| url | hxxps://ip-vm.vercel.app/api/settings/mac | payload_delivery | 2026-09-18 | 95% |
| url | hxxps://ip-vm.vercel.app/api/settings/linux | payload_delivery | 2026-09-18 | 95% |
| url | hxxps://ip-vm.vercel.app/api/settings/windows | payload_delivery | 2026-09-18 | 95% |
| url | hxxps://ip-vm.vercel.app/api/settings/env | payload_delivery | 2026-09-18 | 95% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - BeaverTail
let malicious_ips = dynamic(["51.210.52.212"]);
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(["51.210.52.212"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - BeaverTail
let malicious_urls = dynamic(["https://gamboracle.vercel.app/api", "http://51.210.52.212:1224/api/checkStatus", "https://ip-vm.vercel.app/api/settings/mac", "https://ip-vm.vercel.app/api/settings/linux", "https://ip-vm.vercel.app/api/settings/windows", "https://ip-vm.vercel.app/api/settings/env"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
python.exe, powershell.exe, pwsh.exe) and the command line contains keywords like verify, check, integrity, or deploy.falconctl.exe, mbam.exe, kavsvc.exe) or where the process name matches common EDR/AV service executables.dockerd, containerd-shim, kubelet, or crio, or where the working directory path contains /var/lib/docker/, /kublet/, or /tmp/test/.