This detection rule identifies adversary behavior consistent with the Vidar infostealer by monitoring for specific Indicators of Compromise (IOCs) such as malicious file hashes and network connections to known command-and-control infrastructure. A SOC team should proactively hunt for these signals in Azure Sentinel because early identification of Vidar activity allows for rapid containment before sensitive credentials and personal data are exfiltrated, mitigating the high risk associated with this prevalent banking trojan.
Malware Family: Vidar Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | xor.sm188castle.top | botnet_cc | 2026-08-13 | 100% |
| domain | xor.beri303.org | botnet_cc | 2026-08-13 | 100% |
| url | hxxps://sep.beri303.org | botnet_cc | 2026-08-13 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["xor.sm188castle.top", "xor.beri303.org"]);
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 - Vidar
let malicious_urls = dynamic(["https://sep.beri303.org"]);
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: Vidar IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Antivirus/EDR Full Scans
ProcessName matches FalconSensor.exe, MsMpEng.exe, or DefenderService.exe occurring between 01:00 and 05:00 local time.Scenario: Admin-Initiated Patch Deployment via Configuration Management
UserName belongs to the IT-Admins security group or where the source network is within the corporate management subnet (e.g., 10.20.x.x).Scenario: Internal Threat Intelligence Platform Synchronization