← 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-12T23:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known Coinminer indicators of compromise, which often signal unauthorized cryptocurrency mining operations designed to exploit compute resources for financial gain. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate compromised workloads before they degrade performance, increase cloud costs, or serve as a foothold for further lateral movement.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hash19bebe9719e4f9c21631f7389c445d6f05550c2867024d54177cb14eea88d89dpayload2026-09-1295%
sha1_hashab225b56f24326c9c79687e8a884648a68ad1647payload2026-09-1295%
md5_hash3c55633d66761f990433756516db965cpayload2026-09-1295%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Coinminer
let malicious_hashes = dynamic(["19bebe9719e4f9c21631f7389c445d6f05550c2867024d54177cb14eea88d89d", "ab225b56f24326c9c79687e8a884648a68ad1647", "3c55633d66761f990433756516db965c"]);
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/