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

Hunt Hypothesis

This hunt detects adversary activity involving the Vidar information stealer by monitoring for matches against a curated set of 90 known Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage data exfiltration attempts and prevent potential credential theft before the malware establishes persistence on compromised endpoints.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port185[.]181[.]8[.]182:443botnet_cc2026-08-31100%
ip:port46[.]224[.]87[.]76:443botnet_cc2026-08-31100%
ip:port62[.]238[.]126[.]31:443botnet_cc2026-08-31100%
ip:port185[.]229[.]225[.]31:443botnet_cc2026-08-31100%
ip:port2[.]29[.]15[.]172:443botnet_cc2026-08-31100%
ip:port2[.]28[.]53[.]167:443botnet_cc2026-08-31100%
ip:port168[.]119[.]61[.]136:443botnet_cc2026-08-31100%
ip:port91[.]98[.]236[.]89:443botnet_cc2026-08-31100%
ip:port77[.]42[.]69[.]149:443botnet_cc2026-08-31100%
ip:port2[.]28[.]55[.]31:443botnet_cc2026-08-31100%
ip:port62[.]238[.]117[.]133:443botnet_cc2026-08-31100%
ip:port2[.]28[.]51[.]112:443botnet_cc2026-08-31100%
ip:port46[.]29[.]26[.]43:443botnet_cc2026-08-31100%
ip:port46[.]29[.]26[.]42:443botnet_cc2026-08-31100%
ip:port103[.]13[.]210[.]168:443botnet_cc2026-08-31100%
ip:port5[.]223[.]57[.]239:443botnet_cc2026-08-31100%
ip:port95[.]217[.]223[.]130:443botnet_cc2026-08-31100%
ip:port194[.]146[.]39[.]66:443botnet_cc2026-08-31100%
ip:port178[.]104[.]215[.]65:443botnet_cc2026-08-31100%
ip:port46[.]29[.]26[.]32:443botnet_cc2026-08-31100%
ip:port46[.]29[.]26[.]41:443botnet_cc2026-08-31100%
ip:port168[.]119[.]60[.]33:443botnet_cc2026-08-31100%
ip:port5[.]78[.]91[.]236:443botnet_cc2026-08-31100%
ip:port168[.]119[.]56[.]135:443botnet_cc2026-08-31100%
ip:port2[.]28[.]48[.]67:443botnet_cc2026-08-31100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Vidar
let malicious_ips = dynamic(["95.217.223.130", "46.29.26.32", "46.29.26.35", "2.28.53.167", "5.223.57.239", "5.78.91.236", "46.29.26.42", "168.119.56.135", "91.98.236.89", "77.42.69.149", "194.146.39.66", "46.29.26.43", "62.238.126.31", "62.238.117.133", "168.119.61.136", "2.28.55.31", "2.29.15.172", "2.28.51.112", "2.28.48.67", "46.29.26.41", "46.224.87.76", "185.229.225.31", "103.13.210.168", "185.181.8.182", "178.104.215.65", "168.119.60.33"]);
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(["95.217.223.130", "46.29.26.32", "46.29.26.35", "2.28.53.167", "5.223.57.239", "5.78.91.236", "46.29.26.42", "168.119.56.135", "91.98.236.89", "77.42.69.149", "194.146.39.66", "46.29.26.43", "62.238.126.31", "62.238.117.133", "168.119.61.136", "2.28.55.31", "2.29.15.172", "2.28.51.112", "2.28.48.67", "46.29.26.41", "46.224.87.76", "185.229.225.31", "103.13.210.168", "185.181.8.182", "178.104.215.65", "168.119.60.33"]);
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(["rmv.sm188dvlv.icu", "vcd.sm188dvlv.icu", "tak.sm188dvlv.icu", "eos.sm188dvlv.icu", "uza.sm188dvlv.icu", "jij.sm188dvlv.icu", "x0x.sm188dvlv.icu", "hh3.sm188dvlv.icu", "jre.sm188dvlv.lat", "rrr.sm188dvlv.lat", "zca.sm188dvlv.lat", "chi.sm188dvlv.lat", "tra.sm188dvlv.lat", "nsn.sm188dvlv.lat", "jre.12naga.org", "rrr.12naga.org", "zca.12naga.org", "tra.12naga.org", "ley.sm188dvlv.icu", "sha.sm188dvlv.icu", "rsc.sm188dvlv.icu", "bnb.sm188dvlv.icu", "pnd.onlineturbo88.top", "nsn.12naga.org", "ley.123ful.net", "chi.12naga.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://2.28.53.167/", "https://46.29.26.41/", "https://185.181.8.182/", "https://62.238.126.31/", "https://2.29.15.172/", "https://46.29.26.42/", "https://103.13.210.168/", "https://5.223.57.239/", "https://178.104.215.65/", "https://62.238.117.133/", "https://2.28.51.112/", "https://46.29.26.43/", "https://tra.12naga.org/", "https://chi.sm188dvlv.lat/", "https://tra.sm188dvlv.lat/", "https://nsn.sm188dvlv.lat/", "https://rrr.12naga.org/", "https://jij.sm188dvlv.icu/", "https://x0x.sm188dvlv.icu/", "https://hh3.sm188dvlv.icu/", "https://jre.sm188dvlv.lat/", "https://rrr.sm188dvlv.lat/", "https://zca.sm188dvlv.lat/", "https://bnb.sm188dvlv.icu/", "https://rmv.sm188dvlv.icu/", "https://vcd.sm188dvlv.icu/", "https://tak.sm188dvlv.icu/", "https://eos.sm188dvlv.icu/", "https://uza.sm188dvlv.icu/", "https://dev.epicgames.com/community/api/user_profiles/profile.json?hash_id=EMqJL"]);
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

Here are specific false positive scenarios and corresponding filters for the ThreatFox: Vidar IOCs detection rule in an enterprise environment:

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