This hunt targets the presence of known Indicators of Compromise (IOCs) associated with the “stealler” malware family, which is designed to exfiltrate sensitive data such as credentials and browser information. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints or cloud assets before the adversary can successfully extract and leverage stolen secrets for lateral movement or privilege escalation.
Malware Family: stealler Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 2b8ed70633be6e539cbdf7ac60b770aece2442c8 | payload | 2026-09-06 | 95% |
| md5_hash | 1eeb3ebf665197ce9a35fc1ac745c118 | payload | 2026-09-06 | 95% |
| sha256_hash | edd33db4a56d62fc653f67fc589d3421a2ce6678b4a28f85077f9200d8f2ea8b | payload | 2026-09-06 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - stealler
let malicious_hashes = dynamic(["2b8ed70633be6e539cbdf7ac60b770aece2442c8", "1eeb3ebf665197ce9a35fc1ac745c118", "edd33db4a56d62fc653f67fc589d3421a2ce6678b4a28f85077f9200d8f2ea8b"]);
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 |
Raccoon, Lumma, or RedLine samples) to isolated test VMs or endpoints for signature validation, memory analysis, or YARA rule testing.
Sysinternals, Wireshark, Fiddler, or specific EDR console agents) or where the file path resides in a dedicated C:\Forensics\ or C:\Temp\IOC_Test\ directory.update.exe or helper.dll) during agent updates or task execution.
nagios.exe, cwagent.exe, ninjaone.exe) or where the working directory is within the vendor’s standard installation path (e.g., C:\Program Files\ConnectWise\).schtasks or Task Scheduler) running patch management agents like WSUS, SCCM/MECM, or Ivanti may temporarily create or execute files with names or hashes that overlap with stealer IOCs during the download or staging phase of updates.