This detection rule identifies adversary activity involving the Stealer malware by monitoring for three specific Indicators of Compromise (IOCs) known to facilitate credential theft and data exfiltration. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly detect early-stage infections, thereby preventing lateral movement and minimizing potential data loss before the threat escalates.
Malware Family: stealler Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 128d921b2200fa96cae6076c7e44b6359e8bff22 | payload | 2026-07-31 | 95% |
| md5_hash | 511f859cacc58d37186eb3262362ce4b | payload | 2026-07-31 | 95% |
| sha256_hash | a6f0cbcb7f2c1d46f27fa4d84c18718e77a7151d25933e62073231a08383a012 | payload | 2026-07-31 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - stealler
let malicious_hashes = dynamic(["128d921b2200fa96cae6076c7e44b6359e8bff22", "511f859cacc58d37186eb3262362ce4b", "a6f0cbcb7f2c1d46f27fa4d84c18718e77a7151d25933e62073231a08383a012"]);
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 4 specific false positive scenarios for the ThreatFox: stealler IOCs detection rule, along with targeted filters and exclusions tailored for an enterprise environment:
Scenario: Automated Backup Agent Scanning Stealer Artifacts
Downloads folder, the backup agent may generate network traffic or process execution logs matching Stealer IOCs during its nightly job window.VeeamTransport.exe, rubrik-agent.exe) and the file path resides within standard backup staging directories (e.g., C:\ProgramData\Veeam\Backup...).Scenario: Endpoint DLP Policy Enforcement on User Downloads
10.x.x.x) and the file extension is .msi or .exe originating from approved software repositories (e.g., GoToMyPC, Zoom).Scenario: Scheduled Security Scans by EDR Agents