← Back to SOC feed Coverage →

ThreatFox: Stealc IOCs

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

Hunt Hypothesis

This hypothesis targets the presence of known Indicators of Compromise (IOCs) linked to the Stealc threat actor, which often deploy malicious payloads or establish persistence mechanisms to exfiltrate sensitive data. Proactively hunting for these specific IOCs in Azure Sentinel allows the SOC to identify compromised assets early, potentially disrupting the adversary’s operations before they achieve their objective of stealthy data theft.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha1_hash669d803901ca39a60e50067b80f4d77b1d7f6276payload2026-09-0895%
md5_hash5bae18cb6cd8ad345b24cbec6b62a4b9payload2026-09-0895%
sha256_hashb7a06c7dd0943016ee68b5c14ec8a20578df56f9d9fa5f6ea73df6daa5211c07payload2026-09-0895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Stealc
let malicious_hashes = dynamic(["669d803901ca39a60e50067b80f4d77b1d7f6276", "5bae18cb6cd8ad345b24cbec6b62a4b9", "b7a06c7dd0943016ee68b5c14ec8a20578df56f9d9fa5f6ea73df6daa5211c07"]);
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.stealc/