← Back to SOC feed Coverage →

ThreatFox: Coinminer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-coinminer
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-04T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known coinminer indicators of compromise, which signal that an adversary is likely executing cryptocurrency mining scripts to monetize stolen compute resources. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate compromised workloads before they consume excessive resources or serve as a foothold for further lateral movement within the environment.

IOC Summary

Malware Family: Coinminer Total IOCs: 3 IOC Types: sha256_hash, sha1_hash, md5_hash

TypeValueThreat TypeFirst SeenConfidence
sha1_hashb2a61fa51e6633e6e8779cfe78b62cb323ea3337payload2026-09-0495%
md5_hash128b69594026f6c198c9483eabc2fbdcpayload2026-09-0495%
sha256_hash714b9bf949c12a76d47fadad0f1999bb25535cfd1b8392d7dc971eb9525185a5payload2026-09-0495%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Coinminer
let malicious_hashes = dynamic(["b2a61fa51e6633e6e8779cfe78b62cb323ea3337", "128b69594026f6c198c9483eabc2fbdc", "714b9bf949c12a76d47fadad0f1999bb25535cfd1b8392d7dc971eb9525185a5"]);
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
DeviceFileEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.coinminer/