This hypothesis targets the presence of known indicators of compromise associated with the “Unknown Stealer” malware family, which often operates through browser extensions or scripts to exfiltrate sensitive credentials and session tokens. Proactively hunting for these IOCs in Azure Sentinel is critical to identify compromised endpoints or user sessions before the adversary can leverage stolen data to escalate privileges or persist within the environment.
Malware Family: Unknown Stealer Total IOCs: 12 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | okekjaiw.click | botnet_cc | 2026-09-04 | 100% |
| domain | stv4ec5.shop | botnet_cc | 2026-09-04 | 100% |
| domain | vg5sgxv.lol | botnet_cc | 2026-09-04 | 100% |
| domain | 8jdjpwka.baby | botnet_cc | 2026-09-04 | 100% |
| domain | apdhlhs3.xyz | botnet_cc | 2026-09-04 | 100% |
| domain | bduwih8.pro | botnet_cc | 2026-09-04 | 100% |
| domain | fbuytf67.click | botnet_cc | 2026-09-04 | 100% |
| domain | j9af4sr.guru | botnet_cc | 2026-09-04 | 100% |
| domain | machine628.baby | botnet_cc | 2026-09-04 | 100% |
| domain | 67sixcebeh.surf | botnet_cc | 2026-09-04 | 100% |
| domain | quartzdraft.com | botnet_cc | 2026-09-04 | 100% |
| domain | kernel-87.com | botnet_cc | 2026-09-04 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["okekjaiw.click", "stv4ec5.shop", "vg5sgxv.lol", "8jdjpwka.baby", "apdhlhs3.xyz", "bduwih8.pro", "fbuytf67.click", "j9af4sr.guru", "machine628.baby", "67sixcebeh.surf", "quartzdraft.com", "kernel-87.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Scenario: A security team performs a manual threat hunt using YARA or Sigma rules to identify potential stealer malware (e.g., FormBook, Raccoon, or Lumma) on a specific endpoint. The detection logic likely matches against known hash values, file paths, or registry keys associated with these stealers.
yara.exe, sigmacat, or osqueryd. Alternatively, create a dynamic exclusion for hosts tagged with ThreatHunt or IncidentResponse in your CMDB or asset management system during active hunts.Scenario: An IT administrator deploys a new version of a legitimate application that shares a similar file name, path structure, or hash with a known stealer IOC (e.g., a custom internal tool named stealer.exe or a third-party utility with a matching SHA256).
C:\InternalTools\ or C:\Program Files\ApprovedApp\.Scenario: A scheduled maintenance job or backup process temporarily creates a file in a temporary directory (e.g., %TEMP% or C:\Users\Public\) that matches the file name or path pattern of a known stealer (e.g., config.dat or data.bin used by Raccoon Stealer).
%TEMP%, C:\Windows\Temp, or C:\Backup\. Additionally, exclude