This hypothesis posits that adversaries are actively deploying the Vidar infostealer to exfiltrate sensitive credentials and financial data through known indicators of compromise. Proactive hunting in Azure Sentinel is critical to identify early-stage infections across endpoints before lateral movement occurs, ensuring rapid containment of this high-severity threat vector.
Malware Family: Vidar Total IOCs: 9 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://scp.jangkarsm188.top/ | botnet_cc | 2026-06-30 | 100% |
| domain | scp.psgiran.news | botnet_cc | 2026-06-30 | 100% |
| url | hxxps://scp.psgiran.news/ | botnet_cc | 2026-06-30 | 100% |
| domain | scp.jangkarsm188.top | botnet_cc | 2026-06-30 | 100% |
| url | hxxps://alpin-tuning.com/ | payload_delivery | 2026-06-30 | 75% |
| url | hxxps://tps.psgiran.news/ | botnet_cc | 2026-06-29 | 100% |
| domain | tps.psgiran.news | botnet_cc | 2026-06-29 | 100% |
| domain | tps.jangkarsm188.top | botnet_cc | 2026-06-29 | 100% |
| url | hxxps://tps.jangkarsm188.top/ | botnet_cc | 2026-06-29 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["scp.psgiran.news", "scp.jangkarsm188.top", "tps.psgiran.news", "tps.jangkarsm188.top"]);
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://scp.jangkarsm188.top/", "https://scp.psgiran.news/", "https://alpin-tuning.com/", "https://tps.psgiran.news/", "https://tps.jangkarsm188.top/"]);
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 rule in an enterprise environment, along with recommended filters and exclusions:
Enterprise Antivirus Definition Updates
C:\Program Files\ directory for known AV executables (e.g., FalconSensor.exe, MsMpEng.exe) that perform network connections or file writes matching the IOC hash, specifically excluding alerts where the parent process is the scheduled update service.IT Asset Management and Patch Deployment
ccmexec.exe, JamfProAgent.exe) and the file path contains temporary directories like %TEMP% or specific deployment folders (C:\Windows\CCMCache). Additionally, filter by user context to exclude accounts ending in _svc or ADMIN$.Scheduled Backup and Data Archiving Jobs