← 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-07-31T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity involving the Vidar infostealer by monitoring for matches against a curated set of ten specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage infections and prevent data exfiltration before the malware establishes persistence or spreads laterally across the environment.

IOC Summary

Malware Family: Vidar Total IOCs: 10 IOC Types: domain, url, sha1_hash, md5_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://joemartinwords.com/payload_delivery2026-07-3175%
urlhxxps://bestpackers.org/payload_delivery2026-07-3175%
urlhxxps://yshaastro.in/payload_delivery2026-07-3175%
domainvog.akasia988.netbotnet_cc2026-07-3175%
urlhxxps://vog.akasia988.net/botnet_cc2026-07-3175%
urlhxxps://dbm.akasia988.net/botnet_cc2026-07-3175%
domaindbm.akasia988.netbotnet_cc2026-07-3175%
sha256_hashec0078d806fcb7b0ef538a51ae03217888ce1bd3e96a73beceecc2c12675d77dpayload2026-07-3195%
sha1_hash018356c22bf7997520cc341b97eb7e6e4b4ccb67payload2026-07-3195%
md5_hashbf8ec2994ca75d5e09c66a0fc740459epayload2026-07-3195%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["vog.akasia988.net", "dbm.akasia988.net"]);
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://joemartinwords.com/", "https://bestpackers.org/", "https://yshaastro.in/", "https://vog.akasia988.net/", "https://dbm.akasia988.net/"]);
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(["ec0078d806fcb7b0ef538a51ae03217888ce1bd3e96a73beceecc2c12675d77d", "018356c22bf7997520cc341b97eb7e6e4b4ccb67", "bf8ec2994ca75d5e09c66a0fc740459e"]);
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

Here are 5 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:

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