← Back to SOC feed Coverage →

ThreatFox: Stealc IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
iocthreatfoxwin-stealc
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-06-14T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: Stealc IOCs rule detects potential adversary activity involving the Stealc malware, which is known for stealing credentials and sensitive data from compromised systems. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate advanced persistent threats that leverage Stealc for lateral movement and data exfiltration.

IOC Summary

Malware Family: Stealc Total IOCs: 4 IOC Types: sha1_hash, sha256_hash, url, md5_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://151[.]240[.]151[.]64/9966f4d17e8f4875aad6.phpbotnet_cc2026-06-1475%
md5_hashc971ef7fa5032f6d999550a0aba36a4dpayload2026-06-1495%
sha256_hash9cfc0394511e10e7fa965aa348c134edc47f8f2af617b92975b3ac573fda95eepayload2026-06-1495%
sha1_hash0cb2f8336c23e581668238619de3dc6edb10cef4payload2026-06-1495%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Stealc
let malicious_urls = dynamic(["http://151.240.151.64/9966f4d17e8f4875aad6.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Stealc
let malicious_hashes = dynamic(["c971ef7fa5032f6d999550a0aba36a4d", "9cfc0394511e10e7fa965aa348c134edc47f8f2af617b92975b3ac573fda95ee", "0cb2f8336c23e581668238619de3dc6edb10cef4"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.stealc/