← Back to SOC feed Coverage →

ThreatFox: Venus Stealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
infostealeriocpy-venus_stealerthreatfox
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-21T23:00:01Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known indicators of compromise associated with the Venus Stealer, a malicious tool frequently used to exfiltrate sensitive data from compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify potential intrusions early, mitigating the risk of credential theft or data exfiltration before the adversary achieves their objectives.

IOC Summary

Malware Family: Venus Stealer Total IOCs: 2 IOC Types: sha1_hash, md5_hash

TypeValueThreat TypeFirst SeenConfidence
sha1_hash6ffde579ff31195cc105e07b2de055c65812d259payload2026-09-2195%
md5_hashe0cee01f0387179a8a9cb85323c56fe5payload2026-09-2195%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Venus Stealer
let malicious_hashes = dynamic(["6ffde579ff31195cc105e07b2de055c65812d259", "e0cee01f0387179a8a9cb85323c56fe5"]);
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.venus_stealer/