This detection identifies adversary activity involving the RevStealer malware, which targets sensitive data such as browser credentials and session tokens to facilitate account takeovers. A proactive hunt is essential within Azure Sentinel to rapidly identify compromised endpoints and extract stolen artifacts before attackers can leverage these credentials for lateral movement or financial fraud.
Malware Family: RevStealer Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | route.ambergroup.one | botnet_cc | 2026-08-01 | 75% |
| domain | registry.evercircle.click | botnet_cc | 2026-08-01 | 75% |
| domain | config.cove-post.xyz | botnet_cc | 2026-08-01 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - RevStealer
let malicious_domains = dynamic(["route.ambergroup.one", "registry.evercircle.click", "config.cove-post.xyz"]);
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 4 specific false positive scenarios for the ThreatFox: RevStealer IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Backup Agent Execution
C:\Users\*\AppData) to capture browser data and credentials. These agents may trigger network connections to external update servers or internal repositories that match RevStealer’s IOCs regarding file enumeration and exfiltration patterns.C:\Program Files\Veeam\Backup and Replication Service\...\Veeam.Backup.Service.exe) when they are running under the context of a dedicated service account (e.g., DOMAIN\svc_backup).Scenario: Endpoint Detection & Response (EDR) Health Checks
C:\Program Files\CrowdStrike\Falcon Sensor\csfalcon.exe) when the source user is a system account or the specific “Falcon Service” identity, specifically during their defined maintenance windows.Scenario: Identity Management & SSO Token Refresh