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

Hunt Hypothesis

This hypothesis targets the presence of known Venus Stealer indicators, which are frequently used by threat actors to exfiltrate sensitive data such as browser credentials and cryptocurrency keys from compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify active infections or recent compromises before the stealer can successfully transmit stolen information to attacker-controlled infrastructure.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hash0e0035d9c080a0a78045e8ec10577587payload2026-09-2595%
sha256_hash58620667f662ecf815eb764ef4e1c1d369eb24047154232f9f181cfa0a228b63payload2026-09-2595%
sha1_hash752865298c77004af435fca8b87c063290430cbfpayload2026-09-2595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Venus Stealer
let malicious_hashes = dynamic(["0e0035d9c080a0a78045e8ec10577587", "58620667f662ecf815eb764ef4e1c1d369eb24047154232f9f181cfa0a228b63", "752865298c77004af435fca8b87c063290430cbf"]);
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/