This hunt targets adversary behavior involving the execution of Vidar malware components by monitoring network and endpoint telemetry against four specific threat intelligence indicators. Proactively hunting these IOCs in Azure Sentinel is critical to rapidly identify early-stage infections and mitigate data exfiltration risks before they escalate into broader organizational compromises.
Malware Family: Vidar Total IOCs: 4 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://hat.jurangsm188.top/ | botnet_cc | 2026-07-07 | 75% |
| domain | hat.jurangsm188.top | botnet_cc | 2026-07-07 | 75% |
| url | hxxps://hat.realmadridiran.news/ | botnet_cc | 2026-07-07 | 100% |
| domain | hat.realmadridiran.news | botnet_cc | 2026-07-07 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["hat.jurangsm188.top", "hat.realmadridiran.news"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Vidar
let malicious_urls = dynamic(["https://hat.jurangsm188.top/", "https://hat.realmadridiran.news/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\ThreatFox\Quarantine directory. The Vidar IOCs often include hash-based indicators that match benign files previously downloaded by security teams or archived threat intelligence feeds stored in this specific path.NT SERVICE\CrowdStrikeService, SYSTEM) when the file path contains \Quarantine\ or \ThreatIntel\. Additionally, filter out events where the process command line includes specific scan flags like /deep-scan or -archive-check.Internal Threat Intelligence Feed Synchronization
10.20.50.x) during scheduled maintenance windows (e.g., 02:00–04:00 UTC). Specifically, exclude processes named feed_sync_service.exe or Python scripts (python3 feed_ingestion.py) running under the svc_threat_intel