← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxwin-vidar
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-18T11:00:00Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: Vidar Total IOCs: 4 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
domainkz.zk89.netbotnet_cc2026-09-18100%
domainkz[.]199cuan.orgbotnet_cc2026-09-18100%
urlhxxps://kz[.]199cuan.org/botnet_cc2026-09-18100%
urlhxxps://se.zk89.netbotnet_cc2026-09-18100%

KQL: Domain Hunt

// 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

KQL: Url Hunt

// 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

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.vidar/