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

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of the Vidar malware by matching network and endpoint telemetry against a curated set of ten specific Indicators of Compromise (IOCs). A SOC team should proactively hunt for these signals in Azure Sentinel to identify early-stage infections that may evade standard signature-based detection, thereby preventing potential data exfiltration or lateral movement within the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://fwf.merahsm188.top/botnet_cc2026-07-2475%
domainfwf.merahsm188.topbotnet_cc2026-07-2475%
domainfwf[.]808skor.orgbotnet_cc2026-07-24100%
urlhxxps://fwf[.]808skor.org/botnet_cc2026-07-24100%
sha1_hash5a43ccbb36c23176b99cb7727d338f43319f353fpayload2026-07-2495%
md5_hashe006cb0220146177e684c11e8548ab39payload2026-07-2495%
sha256_hash3bb64d86bed8337443f4b6f6c981914dd7d94b6fa7b61709015f9698e13bc67cpayload2026-07-2495%
md5_hash5cc694a33b659fb6c6e18633daea040cpayload2026-07-2495%
sha256_hashc118f7037676c76b39d05c16c337158c0d714decee91af1c44f41c899233b265payload2026-07-2495%
sha1_hashc2b2ecfe88e5555a73cd3d893d369b1640b626bdpayload2026-07-2495%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["fwf.merahsm188.top", "fwf.808skor.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://fwf.merahsm188.top/", "https://fwf.808skor.org/"]);
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(["5a43ccbb36c23176b99cb7727d338f43319f353f", "e006cb0220146177e684c11e8548ab39", "3bb64d86bed8337443f4b6f6c981914dd7d94b6fa7b61709015f9698e13bc67c", "5cc694a33b659fb6c6e18633daea040c", "c118f7037676c76b39d05c16c337158c0d714decee91af1c44f41c899233b265", "c2b2ecfe88e5555a73cd3d893d369b1640b626bd"]);
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 filters for the ThreatFox: Vidar IOCs detection rule:

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