This rule detects adversaries leveraging the RevStealer infostealer to exfiltrate sensitive credentials and browser data from compromised endpoints within the Azure Sentinel environment. Proactive hunting for these indicators is critical because RevStealer’s ability to silently harvest stored authentication tokens can lead to rapid lateral movement and persistent unauthorized access if not immediately identified and contained.
Malware Family: RevStealer Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | index.ridgefield.lol | botnet_cc | 2026-08-10 | 75% |
| domain | task.pantryly83.one | botnet_cc | 2026-08-10 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - RevStealer
let malicious_domains = dynamic(["index.ridgefield.lol", "task.pantryly83.one"]);
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 3-5 specific false positive scenarios for the ThreatFox: RevStealer IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Backup Jobs Accessing Credential Stores
C:\ProgramData\Microsoft\User Experience directory or specific registry keys to capture user state and credential data. These processes may match RevStealer’s behavior of reading credential stores (e.g., vss.exe, Veeam.Backup.Service.exe).*Veeam.Backup.Service.exe, *Rubrik.Agent.exe) and restrict the rule to exclude network traffic originating from the “Backup” security group or specific backup server FQDNs.Scenario: Endpoint Detection & Response (EDR) Agent Telemetry
AppData\Local\Google, Mozilla, etc.), which mimics the reconnaissance phase of RevStealer.falcon.sys or MsMpEng.exe) from triggering this rule. Additionally, filter out events where the parent process is a known system service like svchost.exe with the specific service name Wuauserv or DefenderSvc.**Scenario: IT Admin Performing Credential Audits via PowerShell