This hunt detects adversary activity involving the RevStealer malware by identifying known Indicators of Compromise (IOCs) that signal potential credential theft and sensitive data exfiltration. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly isolate compromised endpoints before attackers can leverage stolen credentials for lateral movement or persistent access within the organization’s cloud infrastructure.
Malware Family: RevStealer Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | gate.runmanor.click | botnet_cc | 2026-08-15 | 75% |
| domain | hub4.cdndock.click | botnet_cc | 2026-08-14 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - RevStealer
let malicious_domains = dynamic(["gate.runmanor.click", "hub4.cdndock.click"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: RevStealer IOCs detection rule in an enterprise environment:
Scenario: Scheduled Security Scans by Endpoint Protection Agents
MDE-Update-Svc or CrowdStrike-Cfg) and filter out connections to known internal IP ranges of the Security Operations Center (SOC) where threat intelligence feeds are hosted.Scenario: Automated Backup and Archiving Jobs
02:00 AM window, they generate false alerts.vbrservice.exe, commvaultagent.exe) and restrict the detection to only trigger outside of standard maintenance windows (e.g., 02:00–04:00 AM) for these specific backup processes.Scenario: Development Environment CI/CD Pipeline Artifacts