This hunt detects adversary behavior involving the deployment of Venus Stealer indicators to exfiltrate sensitive credentials and system data from compromised endpoints. A SOC team should proactively search for these specific IOCs within Azure Sentinel to rapidly identify active infections and prevent potential lateral movement before critical assets are breached.
Malware Family: Venus Stealer Total IOCs: 6 IOC Types: sha1_hash, sha256_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 91b31807f78c59ac463c15e2a4a94d3e4ec85958 | payload | 2026-07-27 | 95% |
| md5_hash | 653498f67781d06904988a7c36d7097e | payload | 2026-07-27 | 95% |
| sha256_hash | 600cf8533d43cc3b073ab18ed728cb4c9c037870c53ab8f0eb66bf225a3ac7e3 | payload | 2026-07-27 | 95% |
| sha256_hash | 7d98375b03ed4def16841cc9b749a9297701edf20cba2f6f64bf96fcc995c79d | payload | 2026-07-27 | 95% |
| sha1_hash | 6dbce49761da2db96277b1c7cd65176ca9b7fa58 | payload | 2026-07-27 | 95% |
| md5_hash | 39763d60e7122f64bd38797e83ef7977 | payload | 2026-07-27 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Venus Stealer
let malicious_hashes = dynamic(["91b31807f78c59ac463c15e2a4a94d3e4ec85958", "653498f67781d06904988a7c36d7097e", "600cf8533d43cc3b073ab18ed728cb4c9c037870c53ab8f0eb66bf225a3ac7e3", "7d98375b03ed4def16841cc9b749a9297701edf20cba2f6f64bf96fcc995c79d", "6dbce49761da2db96277b1c7cd65176ca9b7fa58", "39763d60e7122f64bd38797e83ef7977"]);
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
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: Venus Stealer IOCs detection rule in an enterprise environment:
Scenario 1: Endpoint Protection Scanning of Quarantine Archives
C:\Program Files\CrowdStrike\fs_qc.exe or MsMpEng.exe) when accessing paths designated for quarantine storage (e.g., C:\CrowdStrike\Quarantine or C:\Windows\System32\comapp).Scenario 2: Scheduled Patch Deployment and Software Inventory
NT SERVICE\IvantiPatch or SYSTEM) specifically within the C:\Program Files\PatchManagement directory.Scenario 3: Backup and Archiving Operations on Shared Drives *