← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

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

Hunt Hypothesis

This hunt detects adversary activity involving the Vidar infostealer by monitoring network and endpoint logs against a curated set of 20 specific indicators of compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage data exfiltration attempts, allowing the SOC team to isolate compromised assets before sensitive credentials and personal information are fully harvested.

IOC Summary

Malware Family: Vidar Total IOCs: 20 IOC Types: url, ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://dfd.bayototo.org/botnet_cc2026-08-07100%
domaindfd.bayototo.orgbotnet_cc2026-08-07100%
ip:port65[.]109[.]127[.]15:443botnet_cc2026-08-07100%
ip:port62[.]238[.]60[.]47:443botnet_cc2026-08-07100%
ip:port167[.]233[.]217[.]108:443botnet_cc2026-08-07100%
ip:port167[.]233[.]168[.]67:443botnet_cc2026-08-07100%
ip:port116[.]202[.]186[.]230:443botnet_cc2026-08-07100%
ip:port167[.]233[.]174[.]147:443botnet_cc2026-08-07100%
ip:port65[.]109[.]72[.]175:443botnet_cc2026-08-07100%
ip:port167[.]233[.]160[.]192:443botnet_cc2026-08-07100%
ip:port178[.]105[.]30[.]143:443botnet_cc2026-08-07100%
ip:port167[.]233[.]125[.]232:443botnet_cc2026-08-07100%
urlhxxps://65[.]109[.]127[.]15/botnet_cc2026-08-07100%
urlhxxps://167[.]233[.]217[.]108/botnet_cc2026-08-07100%
urlhxxps://167[.]233[.]168[.]67/botnet_cc2026-08-07100%
urlhxxps://167[.]233[.]174[.]147/botnet_cc2026-08-07100%
urlhxxps://65[.]109[.]72[.]175/botnet_cc2026-08-07100%
urlhxxps://167[.]233[.]160[.]192/botnet_cc2026-08-07100%
urlhxxps://178[.]105[.]30[.]143/botnet_cc2026-08-07100%
urlhxxps://167[.]233[.]125[.]232/botnet_cc2026-08-07100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Vidar
let malicious_ips = dynamic(["167.233.217.108", "167.233.160.192", "167.233.168.67", "65.109.127.15", "65.109.72.175", "62.238.60.47", "167.233.174.147", "178.105.30.143", "167.233.125.232", "116.202.186.230"]);
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(["167.233.217.108", "167.233.160.192", "167.233.168.67", "65.109.127.15", "65.109.72.175", "62.238.60.47", "167.233.174.147", "178.105.30.143", "167.233.125.232", "116.202.186.230"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["dfd.bayototo.org"]);
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://dfd.bayototo.org/", "https://65.109.127.15/", "https://167.233.217.108/", "https://167.233.168.67/", "https://167.233.174.147/", "https://65.109.72.175/", "https://167.233.160.192/", "https://178.105.30.143/", "https://167.233.125.232/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure 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/