← Back to SOC feed Coverage →

ThreatFox: TinyNuke IOCs

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

Hunt Hypothesis

This hypothesis targets the presence of TinyNuke ransomware indicators, which typically manifest as unauthorized file encryption and cryptocurrency exfiltration attempts following initial access via phishing or exploit kits. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, potentially isolating affected systems before the ransomware fully propagates and disrupts critical business operations.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hashe72b03d7ce71ec92460622726d6bc55228eb8a62d39e82d8749f45fe497ba35cpayload2026-09-0895%
sha1_hash8183f64cc8f6bb0e31906941cb2585d263e2e484payload2026-09-0895%
md5_hashd3a52221539ad3c09e494d95034eb992payload2026-09-0895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - TinyNuke
let malicious_hashes = dynamic(["e72b03d7ce71ec92460622726d6bc55228eb8a62d39e82d8749f45fe497ba35c", "8183f64cc8f6bb0e31906941cb2585d263e2e484", "d3a52221539ad3c09e494d95034eb992"]);
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.tinynuke/