← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
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-12T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of Vidar infostealer indicators, which adversaries deploy to harvest sensitive credentials and browser data from compromised endpoints. Proactively hunting for these specific IOCs in Azure Sentinel allows the SOC to identify active infections and potential lateral movement before the stolen data is exfiltrated to threat actor infrastructure.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domain16dewaslot.orgbotnet_cc2026-09-12100%
sha256_hasheb5c5bd5eac25aa48887db9fcf4e028428308c3ff24041ee2990074a743d05e5payload2026-09-12100%
domainmy.v-panel.asiabotnet_cc2026-09-12100%
urlhxxps://my.v-panel.asia/botnet_cc2026-09-12100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["16dewaslot.org", "my.v-panel.asia"]);
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://my.v-panel.asia/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Vidar
let malicious_hashes = dynamic(["eb5c5bd5eac25aa48887db9fcf4e028428308c3ff24041ee2990074a743d05e5"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
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/