← Back to SOC feed Coverage →

ThreatFox: BeaverTail IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-06-21T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: BeaverTail IOCs rule detects potential adversary activity linked to the BeaverTail threat group, which is associated with high-severity malicious behavior. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate early-stage compromises from a known advanced threat actor.

IOC Summary

Malware Family: BeaverTail Total IOCs: 9 IOC Types: sha256_hash, url, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port23[.]27[.]202[.]27:27017payload_delivery2026-06-21100%
urlhxxp://23[.]27[.]13[.]43/payload_delivery2026-06-21100%
urlhxxp://198[.]105[.]127[.]210/payload_delivery2026-06-21100%
urlhxxp://23[.]27[.]202[.]27:27017/payload_delivery2026-06-21100%
sha256_hashf5c6be4753d6613c97f1b10c4d93a5d97a8f4fb21eb13da0ed04b23a8a61c2f6payload2026-06-21100%
sha256_hash7520924e8d680263216a8eae31e6e2fc4424024ab61d7eb1503b663cb82811d2payload2026-06-21100%
sha256_hashc2bf4f7f74b80ed3d57473ba9e897fe5b8991e38a99343a46e0f8032e53a4ba7payload2026-06-21100%
ip:port23[.]27[.]13[.]43:80payload_delivery2026-06-21100%
ip:port198[.]105[.]127[.]210:80payload_delivery2026-06-21100%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - BeaverTail
let malicious_urls = dynamic(["http://23.27.13.43/", "http://198.105.127.210/", "http://23.27.202.27:27017/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - BeaverTail
let malicious_hashes = dynamic(["f5c6be4753d6613c97f1b10c4d93a5d97a8f4fb21eb13da0ed04b23a8a61c2f6", "7520924e8d680263216a8eae31e6e2fc4424024ab61d7eb1503b663cb82811d2", "c2bf4f7f74b80ed3d57473ba9e897fe5b8991e38a99343a46e0f8032e53a4ba7"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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