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

Hunt Hypothesis

This rule detects the presence of Vidar, a data exfiltration malware that actively harvests credentials and sensitive information from compromised hosts. Proactively hunting for these IOCs allows the SOC to identify and isolate infected endpoints before the adversary successfully exfiltrates stolen data or establishes a persistent foothold within the Azure environment.

IOC Summary

Malware Family: Vidar Total IOCs: 8 IOC Types: url, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://fefeo.iknowthat.spacebotnet_cc2026-09-2675%
urlhxxp://dzdi.serendipityhub.spacebotnet_cc2026-09-2675%
urlhxxps://95[.]217[.]241[.]133botnet_cc2026-09-2675%
urlhxxps://www.pinterest.com/m1duusbotnet_cc2026-09-2675%
urlhxxps://65[.]108[.]201[.]76botnet_cc2026-09-2675%
urlhxxps://91[.]98[.]111[.]49botnet_cc2026-09-2675%
urlhxxps://2[.]28[.]9[.]232botnet_cc2026-09-2675%
sha256_hash819b8c72cf69208a6206fe5642011b9d6b54fd83c9eac0646526bc39b32d86e5payload2026-09-26100%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Vidar
let malicious_urls = dynamic(["http://fefeo.iknowthat.space", "http://dzdi.serendipityhub.space", "https://95.217.241.133", "https://www.pinterest.com/m1duus", "https://65.108.201.76", "https://91.98.111.49", "https://2.28.9.232"]);
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(["819b8c72cf69208a6206fe5642011b9d6b54fd83c9eac0646526bc39b32d86e5"]);
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/