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

Hunt Hypothesis

This detection rule identifies active compromise scenarios where adversaries deploy the Venus Stealer to exfiltrate sensitive credentials and data by matching against a curated set of 24 known indicators of compromise. Proactive hunting for these specific IOCs within Azure Sentinel is critical to rapidly identify early-stage infections, enabling the SOC team to contain potential lateral movement before attackers can fully establish persistence or escalate privileges.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashe5fb52cb4836455493489879979cf724payload2026-08-1595%
sha256_hash5cc44ec9af3b258dc4cd4fddccfa03550e8f5d3aa57fe78eb9c0805ed0850182payload2026-08-1595%
sha1_hash35ac62eefcad505cd25e97b9aff3c147a608c27epayload2026-08-1595%
sha1_hash93273d32065f099ae72fbf818e70fda2233acbc1payload2026-08-1595%
md5_hash5e973fd7c15c435631fc18e1df82592apayload2026-08-1595%
sha256_hashad1f1c29707bba2a41e9d964abb63ff0dc764ea98c3e2a1e38a39dd2c7bcfd6bpayload2026-08-1595%
sha256_hash514fa7786356f49ad0e1164fec6fcfb3c2759db9c069beac2f89baa804f7d5fepayload2026-08-1595%
sha1_hashc5f1ea4f7fb4e9b3dd5a3257f051110edcd613d0payload2026-08-1595%
md5_hash1d944ff591ebcff069f17e5e57180a6fpayload2026-08-1595%
md5_hash17ea6604b441e15f0e96d072aa67efe0payload2026-08-1595%
md5_hash1e1831dac3e7b29ce85e256af3a59bc8payload2026-08-1595%
sha256_hash57478a0f3dcf4df1c96dbb3cd9aa3b255814bd3a4185bf90ba768eb28b471797payload2026-08-1595%
sha1_hash19a544e28b2c0b70efd96ca0a8ec178c275c9bb0payload2026-08-1595%
sha256_hash4f8b3ce56a567f4d1f5a3e4ef0fedcdfad707bfc1b4234397da600f8e2e32316payload2026-08-1595%
sha1_hashbcd816c8d313d033d5bbb36c6ffe89982456e7a4payload2026-08-1595%
md5_hash71a61f1cd6274c59ada288288565632bpayload2026-08-1595%
md5_hash61a4fe4b3fd2331c05a5594a12b2c86epayload2026-08-1595%
sha256_hash4b957314a35c2c055475a95ed0cf76b2ea51c2afd9c59ab14be0015d7fbea6bepayload2026-08-1595%
sha1_hashd43859ade6f1828829fad88d5be0441893828075payload2026-08-1595%
sha256_hash460001cd92917d1c8d4e538d0ec367abf02e6533e357083a8382a1e41f7be5cepayload2026-08-1595%
sha1_hash4e794424b5aedfbe473ceeca647d98a1056d7564payload2026-08-1595%
sha1_hash652cddd50fc79e027162b7502b7fff935aecf2b5payload2026-08-1595%
md5_hashcfc95149b7433840e6a64ff648a78575payload2026-08-1595%
sha256_hash580529f353d25341fb93ac3f616a58ad37ca8227866d0799e763191528878930payload2026-08-1595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Venus Stealer
let malicious_hashes = dynamic(["e5fb52cb4836455493489879979cf724", "5cc44ec9af3b258dc4cd4fddccfa03550e8f5d3aa57fe78eb9c0805ed0850182", "35ac62eefcad505cd25e97b9aff3c147a608c27e", "93273d32065f099ae72fbf818e70fda2233acbc1", "5e973fd7c15c435631fc18e1df82592a", "ad1f1c29707bba2a41e9d964abb63ff0dc764ea98c3e2a1e38a39dd2c7bcfd6b", "514fa7786356f49ad0e1164fec6fcfb3c2759db9c069beac2f89baa804f7d5fe", "c5f1ea4f7fb4e9b3dd5a3257f051110edcd613d0", "1d944ff591ebcff069f17e5e57180a6f", "17ea6604b441e15f0e96d072aa67efe0", "1e1831dac3e7b29ce85e256af3a59bc8", "57478a0f3dcf4df1c96dbb3cd9aa3b255814bd3a4185bf90ba768eb28b471797", "19a544e28b2c0b70efd96ca0a8ec178c275c9bb0", "4f8b3ce56a567f4d1f5a3e4ef0fedcdfad707bfc1b4234397da600f8e2e32316", "bcd816c8d313d033d5bbb36c6ffe89982456e7a4", "71a61f1cd6274c59ada288288565632b", "61a4fe4b3fd2331c05a5594a12b2c86e", "4b957314a35c2c055475a95ed0cf76b2ea51c2afd9c59ab14be0015d7fbea6be", "d43859ade6f1828829fad88d5be0441893828075", "460001cd92917d1c8d4e538d0ec367abf02e6533e357083a8382a1e41f7be5ce", "4e794424b5aedfbe473ceeca647d98a1056d7564", "652cddd50fc79e027162b7502b7fff935aecf2b5", "cfc95149b7433840e6a64ff648a78575", "580529f353d25341fb93ac3f616a58ad37ca8227866d0799e763191528878930"]);
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

Here are 5 specific false positive scenarios for the ThreatFox: Venus Stealer IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/py.venus_stealer/