← Back to SOC feed Coverage →

ThreatFox: WannaCryptor IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-wannacryptor
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-24T23:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of WannaCryptor ransomware by correlating known IOCs with indicators of rapid file encryption and lateral movement, which are critical signs of active ransomware deployment. Proactively hunting for these patterns in Azure Sentinel allows the SOC to identify and isolate compromised endpoints before the encryption process completes, thereby minimizing data loss and operational downtime.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashf5ec29d01c9adb0ecabb2da6bc8fb81apayload2026-09-2495%
sha256_hash541677c2ce44edbb6241907c36463e6ded77a9d7cdb48ceb4113f1111ad2f9e8payload2026-09-2495%
sha1_hashaafeaf4892cd200b9dd7b9e03259b49204d2973bpayload2026-09-2495%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - WannaCryptor
let malicious_hashes = dynamic(["f5ec29d01c9adb0ecabb2da6bc8fb81a", "541677c2ce44edbb6241907c36463e6ded77a9d7cdb48ceb4113f1111ad2f9e8", "aafeaf4892cd200b9dd7b9e03259b49204d2973b"]);
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.wannacryptor/