This detection rule identifies adversary activity involving the Stealer malware by monitoring for three specific indicators of compromise that signal potential data exfiltration and credential theft. Proactive hunting in Azure Sentinel is critical to rapidly isolate affected endpoints and prevent lateral movement before sensitive information is compromised.
Malware Family: stealler Total IOCs: 3 IOC Types: sha256_hash, sha1_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | 7dee819b76bf7a145dc60d279411b721 | payload | 2026-08-07 | 95% |
| sha256_hash | d42b84a94d990cb280c33739284c7a2318e466754584d9c99de7fca99d650157 | payload | 2026-08-07 | 95% |
| sha1_hash | 19da7a33ccc9c5cf690f7cc9dcca33cd04c95e6f | payload | 2026-08-07 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - stealler
let malicious_hashes = dynamic(["7dee819b76bf7a145dc60d279411b721", "d42b84a94d990cb280c33739284c7a2318e466754584d9c99de7fca99d650157", "19da7a33ccc9c5cf690f7cc9dcca33cd04c95e6f"]);
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 filtering strategies:
Endpoint Protection Scans by Admin Tools
ProcessName matches known EDR service executables (e.g., FalconSensorService.exe, MsMpEng.exe) and restrict alerts to non-system accounts. Add a filter: NOT ProcessImage IN ('C:\Program Files\CrowdStrike\FalconSensor\...', 'C:\ProgramData\Microsoft\Windows Defender\...').Scheduled Backup Jobs Accessing Shared Data
.docx, .xlsx) or registry keys related to document access, these backup agents may trigger hits while indexing large volumes of legitimate corporate documents.BackupServiceAccount or VeeamSystem. Filter logic: AND AccountName NOT IN ('DOMAIN\VeeamBackup', 'DOMAIN\AcronisAgent') AND ProcessImage CONTAINS 'backup'.Software Deployment via Configuration Management