This detection rule identifies the presence of five critical Indicators of Compromise (IOCs) linked to the Unknown Stealer malware, which is known for exfiltrating sensitive credentials and personal data from compromised endpoints. Proactively hunting for these IOCs within Azure Sentinel allows the SOC team to rapidly detect early-stage infections before the adversary establishes persistence or initiates large-scale data theft operations.
Malware Family: Unknown Stealer Total IOCs: 5 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | pawsockenjoyer.site | botnet_cc | 2026-07-31 | 100% |
| url | hxxps://pawsockenjoyer.site/api/hwid | botnet_cc | 2026-07-31 | 100% |
| url | hxxps://pawsockenjoyer.site/v1/stats | botnet_cc | 2026-07-31 | 100% |
| url | hxxps://pawsockenjoyer.site/v1/webhook | botnet_cc | 2026-07-31 | 100% |
| url | hxxps://pawsockenjoyer.site/v1/poll | botnet_cc | 2026-07-31 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["pawsockenjoyer.site"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown Stealer
let malicious_urls = dynamic(["https://pawsockenjoyer.site/api/hwid", "https://pawsockenjoyer.site/v1/stats", "https://pawsockenjoyer.site/v1/webhook", "https://pawsockenjoyer.site/v1/poll"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Scenario: Automated backup agents (e.g., Veeam Backup & Replication or Rubrik) scanning the network to identify new endpoints often generate traffic matching generic stealer signatures when probing unknown subnets.
vbrservice.exe or rubrik-agent.Scenario: Scheduled Windows Update tasks running via Task Scheduler (specifically the usocd.exe or DoSvc processes) initiating outbound connections to Microsoft update servers that may contain IOCs overlapping with stealer behavior.
.microsoft.com and the source process is svchost.exe running under the “Windows Update” service context.Scenario: Endpoint Detection and Response (EDR) agents like CrowdStrike Falcon or SentinelOne performing periodic telemetry uploads to their cloud management consoles, which can mimic the network signatures of data exfiltration stealers.
FalconSensor.exe, SoneAgent.exe) and exclude any outbound connections to known vendor FQDNs (e.g., *.falcon.crowdstrike.com).Scenario: IT administrators running manual discovery scripts using tools like PowerShell or Ansible Tower to inventory new hardware, which triggers network probes that resemble the initial reconnaissance phase of a stealer.
powershell.exe initiated by a domain admin account (e.g., DOMAIN\AdminUser) and the command line contains keywords like “Inventory”