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

Hunt Hypothesis

This hunt targets adversaries leveraging the Vidar malware family by correlating network and host telemetry against a curated set of 18 specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage infections before they establish persistence or exfiltrate sensitive data, given Vidar’s high severity and known capabilities.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://geurtuin.com/payload_delivery2026-06-2875%
urlhxxps://engr-salahuddin.com/payload_delivery2026-06-2875%
domainbibliorock.lolbotnet_cc2026-06-2875%
domainmistertwister.salebotnet_cc2026-06-28100%
domainmemshowblob.forumbotnet_cc2026-06-28100%
sha1_hash3eae959cc134d89dcfab4f8388569626e166be0epayload2026-06-2795%
md5_hash885e4c62d17993ccffbfd44a1c128ddfpayload2026-06-2795%
sha256_hashbac12c7b2bc08d4d552e4692bc1566d7d54efc67c3a1131628c491c23626d773payload2026-06-2795%
sha1_hashb10573574be99566629f6ca88ba82d0e7e2122a7payload2026-06-2795%
md5_hashf269378bb7d1c7817fa6200a1198b9dfpayload2026-06-2795%
sha256_hashabb0ddc5d6972b69a938f88cbc354dffbd14adcd13b8049e6654f51dd3f5836dpayload2026-06-2795%
urlhxxps://villapescados.com.br/payload_delivery2026-06-2775%
urlhxxps://rssssociety.org.in/payload_delivery2026-06-2775%
urlhxxps://shootiamedia.com/payload_delivery2026-06-2775%
urlhxxps://brightleafholdings.com/payload_delivery2026-06-2775%
urlhxxps://nhuydecor.com/payload_delivery2026-06-2775%
urlhxxps://villacamarao.com.br/payload_delivery2026-06-2775%
urlhxxps://smartpos.com.tr/payload_delivery2026-06-2775%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["bibliorock.lol", "mistertwister.sale", "memshowblob.forum"]);
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://geurtuin.com/", "https://engr-salahuddin.com/", "https://villapescados.com.br/", "https://rssssociety.org.in/", "https://shootiamedia.com/", "https://brightleafholdings.com/", "https://nhuydecor.com/", "https://villacamarao.com.br/", "https://smartpos.com.tr/"]);
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(["3eae959cc134d89dcfab4f8388569626e166be0e", "885e4c62d17993ccffbfd44a1c128ddf", "bac12c7b2bc08d4d552e4692bc1566d7d54efc67c3a1131628c491c23626d773", "b10573574be99566629f6ca88ba82d0e7e2122a7", "f269378bb7d1c7817fa6200a1198b9df", "abb0ddc5d6972b69a938f88cbc354dffbd14adcd13b8049e6654f51dd3f5836d"]);
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 4 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule, tailored for an enterprise environment using common security and management tools:

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