← Back to SOC feed Coverage →

ThreatFox: Phantom Stealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
infostealeriocthreatfoxwin-phantom_stealer
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-10T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of Phantom Stealer, a data exfiltration malware that compromises systems to steal credentials and sensitive files, often introduced via phishing or malicious downloads. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify and isolate infected endpoints before the adversary completes the exfiltration of critical data and establishes persistent access.

IOC Summary

Malware Family: Phantom Stealer Total IOCs: 6 IOC Types: sha256_hash, sha1_hash, md5_hash

TypeValueThreat TypeFirst SeenConfidence
md5_hash7ea1ac9405b7ffcb6c087e3b65d1462apayload2026-09-1095%
md5_hash41c524a1390a872f207f17a08b443a72payload2026-09-1095%
sha256_hashfc8f02c2dbb35322152f330c0b872bb71ea30d4a74472734531e60de9f2454efpayload2026-09-1095%
sha1_hashce147e4941248647e59168df4e92e0331416aa0dpayload2026-09-1095%
sha256_hasheac635e113733a48d63427369c5456b94ffe8075f447eb6e465157f08ab4c87bpayload2026-09-1095%
sha1_hashdddcb764f3af1265392641bbade3632b2f319ab0payload2026-09-1095%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Phantom Stealer
let malicious_hashes = dynamic(["7ea1ac9405b7ffcb6c087e3b65d1462a", "41c524a1390a872f207f17a08b443a72", "fc8f02c2dbb35322152f330c0b872bb71ea30d4a74472734531e60de9f2454ef", "ce147e4941248647e59168df4e92e0331416aa0d", "eac635e113733a48d63427369c5456b94ffe8075f447eb6e465157f08ab4c87b", "dddcb764f3af1265392641bbade3632b2f319ab0"]);
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.phantom_stealer/