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

Hunt Hypothesis

The detection identifies potential Venus Stealer malware activity through known IOCs, indicating an adversary is exfiltrating credentials from compromised systems. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate credential theft early in the attack lifecycle.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hashf2b4f9ac25b35389294ade3fcfe8a8bb5dc1f0e283c5be145a28bd785e993906payload2026-06-2695%
sha1_hashc18fdfd1a053a9c408fb8ae563ea55684be5d4abpayload2026-06-2695%
md5_hash79c3344864afd83d6cfa95aa816e3286payload2026-06-2695%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Venus Stealer
let malicious_hashes = dynamic(["f2b4f9ac25b35389294ade3fcfe8a8bb5dc1f0e283c5be145a28bd785e993906", "c18fdfd1a053a9c408fb8ae563ea55684be5d4ab", "79c3344864afd83d6cfa95aa816e3286"]);
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/