← Back to SOC feed Coverage →

ThreatFox: BeaverTail IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis posits that adversaries are actively deploying BeaverTail malware to establish persistence and exfiltrate sensitive data via known indicators of compromise within the Azure environment. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel to rapidly identify early-stage infections before they escalate into broader lateral movement or data breach incidents.

IOC Summary

Malware Family: BeaverTail Total IOCs: 7 IOC Types: sha256_hash, ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
ip:port172[.]86[.]123[.]37:8086botnet_cc2026-06-30100%
ip:port172[.]86[.]123[.]37:8087botnet_cc2026-06-30100%
domaincode-beautify.compayload_delivery2026-06-30100%
domainipregionchecker.orgpayload_delivery2026-06-30100%
sha256_hash74009ad71c2f41ebfe6b76358f0224f814f8dca1167a858538b5e8df8a76b881payload2026-06-30100%
sha256_hash017cb09cabd9c909e4fb06e8c668d2f89e472e103eda5230d98761a9f998bdb5payload2026-06-30100%
sha256_hash0e1ae44c555c13b03bdbd72f66c456aaffcdd13887ebe9859d302a63e409c462payload2026-06-30100%

KQL: Ip Hunt

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

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - BeaverTail
let malicious_hashes = dynamic(["74009ad71c2f41ebfe6b76358f0224f814f8dca1167a858538b5e8df8a76b881", "017cb09cabd9c909e4fb06e8c668d2f89e472e103eda5230d98761a9f998bdb5", "0e1ae44c555c13b03bdbd72f66c456aaffcdd13887ebe9859d302a63e409c462"]);
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
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: BeaverTail IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

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