This detection rule identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Stealer malware family, which is known for exfiltrating sensitive credentials and financial data from compromised endpoints. The SOC team should proactively hunt for these IOCs within Azure Sentinel to rapidly detect early-stage infections and prevent potential lateral movement or data breaches 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 |
|---|---|---|---|---|
| md5_hash | 11b388e073236318b3851c168aa1abde | payload | 2026-08-08 | 95% |
| sha256_hash | 254412f2ca69b69f8b686f874374e2584aaf55ad5c3e8ed6eddfa69f3fe6ea2b | payload | 2026-08-08 | 95% |
| sha1_hash | 3b2ce84bea55b35c195a046f40dd838931960270 | payload | 2026-08-08 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - stealler
let malicious_hashes = dynamic(["11b388e073236318b3851c168aa1abde", "254412f2ca69b69f8b686f874374e2584aaf55ad5c3e8ed6eddfa69f3fe6ea2b", "3b2ce84bea55b35c195a046f40dd838931960270"]);
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 the false positive scenarios and corresponding exclusions for the ThreatFox: stealler IOCs detection rule:
Endpoint Protection Scanning of Quarantine Archives
MsMpEng.exe, FalconSensorService) when they access paths containing “Quarantine” or “Threats”. Additionally, filter out events where the file age is greater than 30 days.IT Admin Manual Artifact Analysis
Process Monitor or Wireshark. The detection logic captures the IOCs associated with this manual review session as an active threat.C:\Users\<AdminName>\Downloads\Analysis).Automated Backup and Archive Jobs