← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-06T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known Vidar IOCs to identify systems potentially compromised by this infostealer, which is frequently used to exfiltrate sensitive data such as browser credentials and cryptocurrency wallet keys. Proactively hunting for these indicators in Azure Sentinel is critical because Vidar often operates with low noise, allowing adversaries to steal assets before traditional endpoint detections trigger an alert.

IOC Summary

Malware Family: Vidar Total IOCs: 16 IOC Types: md5_hash, sha256_hash, sha1_hash, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
ip:port46[.]29[.]26[.]47:443botnet_cc2026-09-0675%
ip:port46[.]62[.]133[.]5:443botnet_cc2026-09-0675%
ip:port46[.]29[.]26[.]48:443botnet_cc2026-09-0675%
urlhxxps://community.fandom.com/wikia.php?controller=UserProfile&method=getUserData&format=json&userId=63771805botnet_cc2026-09-06100%
sha1_hash37c70e1f167e1d0a7019ed99cc2f9e20167a9a04payload2026-09-0695%
md5_hash4c09885e2609cbba14e2425e189a0222payload2026-09-0695%
md5_hashd2b2992e39f5ba69c4f76fa55a8504e4payload2026-09-0695%
sha256_hash5ce9391ab6bbe33345a0c4fda045ff55ef0548bb7d33bffd05b9cb42db23d16epayload2026-09-0695%
sha256_hash56975da761c18489905a887741cbfef67f80d7e2f8d040eace9e0c5b76f15a9apayload2026-09-0695%
sha1_hashf3a49c09ac2e1881b647e6599e6ab0719a174cb3payload2026-09-0695%
sha256_hash57563715eddd2a3d404518235fea75b7828cf0933fa10fee34737b694f37154fpayload2026-09-0695%
sha1_hashe82c31031f2ee2c09886c4db5cd111d3a19f6e62payload2026-09-0695%
md5_hashadc82fee3ae38985c14f2c6d517e07bdpayload2026-09-0695%
sha1_hash08768b0231afbeee3364148d27b38f5a94ad3be0payload2026-09-0695%
md5_hash066e25d2197c2bdd471bb79c1355b84apayload2026-09-0695%
sha256_hash3c047882f1bbf5d8911e4d7103f06cf18b587602c95bf8b4b478b82a3226caeapayload2026-09-0695%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Vidar
let malicious_ips = dynamic(["46.29.26.47", "46.29.26.48", "46.62.133.5"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["46.29.26.47", "46.29.26.48", "46.62.133.5"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Vidar
let malicious_urls = dynamic(["https://community.fandom.com/wikia.php?controller=UserProfile&method=getUserData&format=json&userId=63771805"]);
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(["37c70e1f167e1d0a7019ed99cc2f9e20167a9a04", "4c09885e2609cbba14e2425e189a0222", "d2b2992e39f5ba69c4f76fa55a8504e4", "5ce9391ab6bbe33345a0c4fda045ff55ef0548bb7d33bffd05b9cb42db23d16e", "56975da761c18489905a887741cbfef67f80d7e2f8d040eace9e0c5b76f15a9a", "f3a49c09ac2e1881b647e6599e6ab0719a174cb3", "57563715eddd2a3d404518235fea75b7828cf0933fa10fee34737b694f37154f", "e82c31031f2ee2c09886c4db5cd111d3a19f6e62", "adc82fee3ae38985c14f2c6d517e07bd", "08768b0231afbeee3364148d27b38f5a94ad3be0", "066e25d2197c2bdd471bb79c1355b84a", "3c047882f1bbf5d8911e4d7103f06cf18b587602c95bf8b4b478b82a3226caea"]);
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
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure 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/