This rule detects adversaries leveraging newly identified stealer indicators to exfiltrate sensitive credentials and data from Azure environments before they are widely cataloged in threat intelligence feeds. A proactive hunt is essential because these unknown IOCs often represent emerging threats that have not yet triggered standard signature-based detections, allowing attackers to operate undetected during the initial stages of an intrusion.
Malware Family: Unknown Stealer Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | tvuvgzk.premiumrent-car.com | payload_delivery | 2026-07-29 | 100% |
| domain | dist.vertexengine.cc | botnet_cc | 2026-07-29 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["tvuvgzk.premiumrent-car.com", "dist.vertexengine.cc"]);
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 |
Here are 5 specific false positive scenarios for the ThreatFox: Unknown Stealer IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Browser Profile Syncing by Endpoint Management Tools
C:\Program Files\Microsoft Intune Agent\MsiInstaller.exe or C:\Program Files\Jamf\bin\jamf.exe, and the process name contains keywords like “ProfileSync” or “BrowserAgent”.Scenario: Scheduled Credential Backup Jobs via Admin Scripts
Backup_Creds.ps1 running under the SYSTEM account may access sensitive registry keys and file paths that trigger the stealer IOC, as it behaves similarly to a tool harvesting stored passwords.-ExecutionPolicy Bypass AND the user context is NT AUTHORITY\SYSTEM, specifically targeting scripts located in C:\Windows\System32\Tasks\Custom_Backup_Jobs.Scenario: Third-Party Security Scanner Updates