This hunt targets adversary behavior involving the execution of malicious processes and network connections linked to the Vidar malware family, specifically leveraging eight known Indicators of Compromise (IOCs). Proactively hunting for these artifacts in Azure Sentinel is critical because Vidar’s modular architecture allows it to persist across diverse environments, making early detection essential to prevent data exfiltration before lateral movement occurs.
Malware Family: Vidar Total IOCs: 8 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://vcf.psgiran.news/ | botnet_cc | 2026-07-03 | 75% |
| domain | vcf.psgiran.news | botnet_cc | 2026-07-03 | 75% |
| url | hxxps://vcf.jokimecat88.top/ | botnet_cc | 2026-07-03 | 75% |
| domain | vcf.jokimecat88.top | botnet_cc | 2026-07-03 | 75% |
| domain | vcd.psgiran.news | botnet_cc | 2026-07-03 | 75% |
| url | hxxps://vcd.psgiran.news/ | botnet_cc | 2026-07-03 | 75% |
| domain | framesavecloudjs.beer | botnet_cc | 2026-07-03 | 100% |
| url | hxxps://sollostech.com/ | payload_delivery | 2026-07-03 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["vcf.psgiran.news", "vcf.jokimecat88.top", "vcd.psgiran.news", "framesavecloudjs.beer"]);
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://vcf.psgiran.news/", "https://vcf.jokimecat88.top/", "https://vcd.psgiran.news/", "https://sollostech.com/"]);
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 & Quarantine Operations
ProcessName contains “Cortex”, “SentinelOne”, or “MsMpEng”) and restrict alerts to specific file paths where EDR quarantines are stored (e.g., C:\ProgramData\Microsoft\Windows Defender\Quarantine).IT Asset Management & Patch Deployment
User = “svc_patch_deploy” or “SYSTEM”) and correlate with the execution of known installer packages (e.g., ProcessName contains “msiexec.exe” or “Setup.exe” with a known Publisher).Security Information and Event Management (SIEM) Log Ingestion