← 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-24T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of Vidar malware indicators, which are commonly used by threat actors to deploy a remote access trojan for credential theft and persistent system control. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing the malware from establishing a foothold and exfiltrating sensitive data before it can be leveraged for lateral movement or ransomware deployment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://t.me/jj43wbotnet_cc2026-09-2475%
urlhxxps://vpanel.v-panel.asia/botnet_cc2026-09-24100%
domainvpanel.v-panel.asiabotnet_cc2026-09-24100%
urlhxxps://gt[.]234-e.combotnet_cc2026-09-24100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["vpanel.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://t.me/jj43w", "https://vpanel.v-panel.asia/", "https://gt.234-e.com"]);
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/