← Back to SOC feed Coverage →

ThreatFox: XRed IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-xred
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 potential compromise by the XRed threat actor, a known ransomware group, by identifying assets that match specific indicators of compromise such as known file hashes or network connections. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to detect early-stage intrusion or lateral movement before the adversary can deploy their ransomware payload or exfiltrate data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hash19f88273e1076a090e4ec439c2ee560cpayload2026-09-0895%
sha256_hashfe892c48559945e7e707a5fed5324ad5c2588de0965152c0ecd8b6e6b07e56d6payload2026-09-0895%
sha1_hash6fe767347543cf94386c17d98306ffd2798b2438payload2026-09-0895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - XRed
let malicious_hashes = dynamic(["19f88273e1076a090e4ec439c2ee560c", "fe892c48559945e7e707a5fed5324ad5c2588de0965152c0ecd8b6e6b07e56d6", "6fe767347543cf94386c17d98306ffd2798b2438"]);
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.xred/