This rule detects the presence of Vidar malware, a credential stealer that often arrives via phishing and uses encrypted channels to exfiltrate sensitive data. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised endpoints before the malware successfully transmits stolen credentials or sensitive information to threat actors.
Malware Family: Vidar Total IOCs: 4 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | kz.zk89.net | botnet_cc | 2026-09-18 | 100% |
| domain | kz[.]199cuan.org | botnet_cc | 2026-09-18 | 100% |
| url | hxxps://kz[.]199cuan.org/ | botnet_cc | 2026-09-18 | 100% |
| url | hxxps://se.zk89.net | botnet_cc | 2026-09-18 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["kz.zk89.net", "kz.199cuan.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://kz.199cuan.org/", "https://se.zk89.net"]);
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 |
Scenario: Scheduled Credential Rotation via PowerShell
cmd.exe with specific arguments or use net use/whoami commands that match Vidar’s credential harvesting IOCs (e.g., specific command-line patterns or process creation chains).powershell.exe or pwsh.exe and the command line contains keywords like -Credential, -Rotate, or specific internal script paths (e.g., C:\Scripts\CredRotation\). Additionally, exclude if the process is initiated by a known service account (e.g., svc-itops) rather than an interactive user.Scenario: Enterprise Backup Agent Execution
vssadmin.exe, commvaultagent.exe, rubrikagent.exe) or if the process path resides in standard backup installation directories (e.g., C:\Program Files\Veeam\, C:\Program Files\Commvault\).Scenario: Phishing Simulation Campaigns