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

Hunt Hypothesis

This rule detects potential compromise by Phantom Stealer, a credential-stealing malware known for targeting Azure AD and other cloud identities, by matching against its specific IOCs. Proactively hunting for these indicators allows the SOC to identify early signs of credential theft and lateral movement before the adversary can establish persistence or exfiltrate sensitive data from the Azure environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha1_hash497735f77995080e7d677b465b22c36c33ad6065payload2026-09-0595%
md5_hash7ab123e9e6b30c85ce2432cd10a0c1c6payload2026-09-0595%
sha256_hash70501144a459b9fdbc8b6e549fbc08db479b7d7aab4e02a352b3f11ba1ec686apayload2026-09-0595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Phantom Stealer
let malicious_hashes = dynamic(["497735f77995080e7d677b465b22c36c33ad6065", "7ab123e9e6b30c85ce2432cd10a0c1c6", "70501144a459b9fdbc8b6e549fbc08db479b7d7aab4e02a352b3f11ba1ec686a"]);
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/