This hunt detects adversary behavior involving the Epsilon Stealer malware by monitoring for specific Indicators of Compromise (IOCs) that signal active credential and data theft within the environment. A SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify and contain early-stage infestations, preventing potential lateral movement and sensitive information exfiltration before they escalate into major incidents.
Malware Family: Epsilon Stealer Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 1607b565ada67a4c0dc8eda7dc35e70582a362b7 | payload | 2026-08-15 | 95% |
| md5_hash | 6fbacb02382b2a52786994adeed3c8b1 | payload | 2026-08-15 | 95% |
| sha256_hash | 8502dd5e803f7583007481e1821f9242a6ba2774974f6757dd0535a688f6e1b1 | payload | 2026-08-15 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Epsilon Stealer
let malicious_hashes = dynamic(["1607b565ada67a4c0dc8eda7dc35e70582a362b7", "6fbacb02382b2a52786994adeed3c8b1", "8502dd5e803f7583007481e1821f9242a6ba2774974f6757dd0535a688f6e1b1"]);
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 documented false positive scenarios and corresponding exclusions for the ThreatFox: Epsilon Stealer IOCs detection rule:
Scenario: Automated Endpoint Protection Scans
10.x.x.x for CrowdStrike managers) or filter events where the parent process is the security agent itself (falcon.sys, MsMpEng.exe).Scenario: Scheduled Threat Intelligence Feed Ingestion by SIEM/EDR
svc-threat-intel) or exclude events occurring within a defined maintenance window (e.g., 02:00 – 04:00 UTC) where these scheduled jobs are active.Scenario: Security Operations Center (SOC) Manual Investigation & Hunting