This hunt targets known indicators of compromise associated with VoltStealer, a credential-stealing malware frequently deployed in phishing campaigns to compromise user sessions. Proactively searching for these IOCs in Azure Sentinel allows the SOC to identify potentially infected endpoints or compromised identities before the adversary can escalate privileges or exfiltrate sensitive data.
Malware Family: VoltStealer Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | c9fd4ec3ea940456b89dc7c7192f67ba9b7f258fdb118f6dbfe195fce981c973 | payload | 2026-09-21 | 95% |
| sha1_hash | 8be112ec619ef287abb5ad74186ab04882368e40 | payload | 2026-09-21 | 95% |
| md5_hash | 50eb3d47e565d0e7fcd861032e806de5 | payload | 2026-09-21 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - VoltStealer
let malicious_hashes = dynamic(["c9fd4ec3ea940456b89dc7c7192f67ba9b7f258fdb118f6dbfe195fce981c973", "8be112ec619ef287abb5ad74186ab04882368e40", "50eb3d47e565d0e7fcd861032e806de5"]);
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 |
ansible or Terraform to deploy a new microservice, where the deployment script downloads a pre-built binary or container image from a public registry (e.g., Docker Hub, JFrog Artifactory) that happens to share a hash or URL pattern with a known VoltStealer IOC.
10.10.50.0/24) AND the user account belongs to the svc-ci-cd service group.winget or choco to install a specific version of a third-party application (e.g., 7-Zip or Notepad++) from a mirror site that was recently added to the ThreatFox IOC list due to a compromised build, but is still trusted internally.
winget.exe or choco.exe AND the parent process is cmd.exe or powershell.exe initiated by an administrator group (Domain Admins or IT Admins).Volatility3 or APEX to hunt for VoltStealer remnants in a live system, causing the tool itself to download or reference the IOC hashes/URLs during the analysis phase.
volatility3.exe, apex.exe, yara.exe) AND the user account is in the SOC Forensics security group.