← Back to SOC feed Coverage →

ThreatFox: stealler IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocpy-steallerthreatfox
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-19T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known indicators of compromise associated with the Stealler infostealer, a tool frequently used by adversaries to exfiltrate sensitive data such as credentials and browser history. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised endpoints early, mitigating the risk of persistent data theft and lateral movement before the adversary achieves their objectives.

This hunt targets the presence of known indicators of compromise associated with the Stealler infostealer, a tool frequently used by adversaries to exfiltrate sensitive data such as credentials and browser history. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised endpoints early, mitigating the risk of persistent data theft and lateral movement before the adversary achieves their objectives.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hasha5181dd5da1137c6d2e88acdc1ff32fdpayload2026-09-1995%
sha256_hash1ad42cab7899671275d79ff38317ae4df61d58de9d2e4f23facf297b5b33654bpayload2026-09-1995%
sha1_hashfc3874454b6ecbd71ca4364f26f78cc99dd872cbpayload2026-09-1995%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - stealler
let malicious_hashes = dynamic(["a5181dd5da1137c6d2e88acdc1ff32fd", "1ad42cab7899671275d79ff38317ae4df61d58de9d2e4f23facf297b5b33654b", "fc3874454b6ecbd71ca4364f26f78cc99dd872cb"]);
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/py.stealler/