← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

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

Hunt Hypothesis

This rule detects the presence of Vidar infostealer indicators, which adversaries deploy to harvest sensitive data such as credentials, browser history, and cryptocurrency wallet information. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised endpoints before the stolen data is exfiltrated, thereby reducing the dwell time of this high-severity threat.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://178[.]104[.]112[.]188botnet_cc2026-09-08100%
md5_hashbedbf012561c71bb4a9a65c2984b400apayload2026-09-0895%
sha256_hash0b5baefd7cc0b2f4ed9a537ec813ca59130fe2d88783971687d8bcfa50015ff0payload2026-09-0895%
sha1_hashd2ef8967da190d374da416b080051a19e56f1947payload2026-09-0895%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Vidar
let malicious_urls = dynamic(["https://178.104.112.188"]);
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(["bedbf012561c71bb4a9a65c2984b400a", "0b5baefd7cc0b2f4ed9a537ec813ca59130fe2d88783971687d8bcfa50015ff0", "d2ef8967da190d374da416b080051a19e56f1947"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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