← Back to SOC feed Coverage →

ThreatFox: BeaverTail IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEventsUrlClickEvents
iocjs-beavertailthreatfox
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-09-09T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential compromise by BeaverTail, a threat actor known for deploying web shells and leveraging stolen credentials, through the presence of specific indicators of compromise. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to detect early-stage intrusion attempts and isolate affected assets before the adversary can establish persistence or escalate privileges.

IOC Summary

Malware Family: BeaverTail Total IOCs: 4 IOC Types: ip:port, domain, url

TypeValueThreat TypeFirst SeenConfidence
ip:port151[.]80[.]76[.]67:1224botnet_cc2026-09-09100%
urlhxxp://151[.]80[.]76[.]67:1224/api/checkStatusbotnet_cc2026-09-09100%
urlhxxps://a5lab.co/api/settings/linuxpayload_delivery2026-09-09100%
domaina5lab.copayload_delivery2026-09-0990%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - BeaverTail
let malicious_ips = dynamic(["151.80.76.67"]);
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(["151.80.76.67"]);
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 - BeaverTail
let malicious_domains = dynamic(["a5lab.co"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - BeaverTail
let malicious_urls = dynamic(["http://151.80.76.67:1224/api/checkStatus", "https://a5lab.co/api/settings/linux"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/js.beavertail/