← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

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

Hunt Hypothesis

This hunt detects adversary activity involving the Vidar infostealer by monitoring for matches against a curated set of 24 Indicators of Compromise (IOCs) known to facilitate credential theft and data exfiltration. The SOC team should proactively hunt for these signals in Azure Sentinel because Vidar’s prevalence in modern supply chain attacks necessitates early identification of its specific network artifacts to prevent lateral movement and sensitive data loss before full-scale infection occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://jax.sm188dadu.top/botnet_cc2026-08-16100%
domainjax.sm188dadu.topbotnet_cc2026-08-16100%
urlhxxps://jax[.]10001slot.org/botnet_cc2026-08-16100%
domainjax[.]10001slot.orgbotnet_cc2026-08-16100%
domainprc.sm188daftar.combotnet_cc2026-08-16100%
urlhxxps://178[.]105[.]46[.]149botnet_cc2026-08-16100%
urlhxxps://2[.]29[.]8[.]156botnet_cc2026-08-16100%
domainprc[.]10001toto.orgbotnet_cc2026-08-16100%
domainjoe.sm188dadu.topbotnet_cc2026-08-15100%
urlhxxps://joe.sm188dadu.top/botnet_cc2026-08-15100%
domainjoe[.]10001slot.orgbotnet_cc2026-08-15100%
md5_hashf9c60eb51354ab07885428d7b868ade6payload2026-08-1595%
sha256_hash63eedb85b370d3d55a6023987dc1ca36c49074b364804b3187aa9db9eac2dd33payload2026-08-1595%
sha1_hash89dba32d78049d5650f10eb53173461a4969b673payload2026-08-1595%
sha1_hashfb837122ffb8b7041986db79fdd5e908d8ec38c8payload2026-08-1595%
md5_hash4d4dad091692dc25b7ab60efab9fc5e3payload2026-08-1595%
md5_hash9327108ce3c50647935244813d506f4dpayload2026-08-1595%
sha256_hashf2b7f869036f558eabe71d5f73820dd56a58269d3db1435f26daeeb687c49f9dpayload2026-08-1595%
md5_hash25f8beb77d6bbfd007a326d24978827epayload2026-08-1595%
sha256_hash1d118a9482bb8f30bb53c18c8441d5aa8b21ee823206c630238edf0f99ec568epayload2026-08-1595%
sha1_hash01e3a1b3b3f89bf99c183aea978f17cf890eea01payload2026-08-1595%
sha256_hash769c5186f40c16fa4e4871bf488301c01e89e3e94f1244f979e1b12b7f244dedpayload2026-08-1595%
sha1_hash77f274a99d94bdab1709eff41f801bf893393130payload2026-08-1595%
sha1_hash63a9e6a56ce653494116948cb043fd275b5ee5b5payload2026-08-1595%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["jax.sm188dadu.top", "jax.10001slot.org", "prc.sm188daftar.com", "prc.10001toto.org", "joe.sm188dadu.top", "joe.10001slot.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://jax.sm188dadu.top/", "https://jax.10001slot.org/", "https://178.105.46.149", "https://2.29.8.156", "https://joe.sm188dadu.top/"]);
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(["f9c60eb51354ab07885428d7b868ade6", "63eedb85b370d3d55a6023987dc1ca36c49074b364804b3187aa9db9eac2dd33", "89dba32d78049d5650f10eb53173461a4969b673", "fb837122ffb8b7041986db79fdd5e908d8ec38c8", "4d4dad091692dc25b7ab60efab9fc5e3", "9327108ce3c50647935244813d506f4d", "f2b7f869036f558eabe71d5f73820dd56a58269d3db1435f26daeeb687c49f9d", "25f8beb77d6bbfd007a326d24978827e", "1d118a9482bb8f30bb53c18c8441d5aa8b21ee823206c630238edf0f99ec568e", "01e3a1b3b3f89bf99c183aea978f17cf890eea01", "769c5186f40c16fa4e4871bf488301c01e89e3e94f1244f979e1b12b7f244ded", "77f274a99d94bdab1709eff41f801bf893393130", "63a9e6a56ce653494116948cb043fd275b5ee5b5"]);
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
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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

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