This rule detects adversaries leveraging newly identified stealer indicators from ThreatFox to exfiltrate sensitive credentials and data before they are widely known in threat intelligence feeds. A SOC team should proactively hunt for these unknown IOCs within Azure Sentinel to gain a critical time advantage, enabling early containment of stealthy threats that evade traditional signature-based defenses.
Malware Family: Unknown Stealer Total IOCs: 2 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | slotbet200.xyz | payload_delivery | 2026-09-01 | 75% |
| url | hxxps://sites.google.com/view/mehrmarkenwerkstattheiligensta/home | payload_delivery | 2026-09-01 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["slotbet200.xyz"]);
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://sites.google.com/view/mehrmarkenwerkstattheiligensta/home"]);
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 |
Here are 4 specific false positive scenarios for the ThreatFox: Unknown Stealer IOCs detection rule in an enterprise environment, along with suggested filters and exclusions:
Scenario: Automated Browser Update & Cache Cleanup
AppData directories.C:\Program Files\Microsoft Intune Agent\IntuneAgent.exe, C:\Program Files (x86)\Google\Update\GoogleCrashHandler.exe) and restrict the rule to exclude file extensions commonly used for cache/temp files (.tmp, .log, .cache) when accessed by these specific processes.Scenario: Scheduled Credential Backup Jobs
NTDS.dit exports, C:\Users\*\AppData\Roaming) to a central file server. These jobs enumerate and read sensitive files containing tokens and passwords, mimicking the behavior of a stealer exfiltrating data.*CredentialBackup*, *NightlySync*) or filter out events where the parent process is Task Scheduler (svchost.exe -k netsvcs) and the destination path points to a known internal backup share (e.g., \\backup-server\creds\).**Scenario: Endpoint