This detection identifies adversary activity involving the Vidar infostealer by monitoring for four specific indicators of compromise known to target sensitive credentials and financial data. Proactively hunting for these signals in Azure Sentinel is critical because early identification of Vidar’s presence allows the SOC team to contain potential data exfiltration before attackers establish persistence or escalate their attack chain.
Malware Family: Vidar Total IOCs: 4 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://nhg.sm188dadu.top/ | botnet_cc | 2026-08-18 | 100% |
| domain | nhg.sm188dadu.top | botnet_cc | 2026-08-18 | 100% |
| url | hxxps://nhg[.]1131gg.org/ | botnet_cc | 2026-08-18 | 100% |
| domain | nhg[.]1131gg.org | botnet_cc | 2026-08-18 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["nhg.sm188dadu.top", "nhg.1131gg.org"]);
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://nhg.sm188dadu.top/", "https://nhg.1131gg.org/"]);
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 3-5 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment:
Endpoint Protection Scanning of Known Artifacts
ProcessName matches *FalconSensor.exe, *MsMpEng.exe, or *SentinelOneAgent.exe.Scheduled Maintenance and Patch Deployment Jobs
ParentProcessName is *ccmexec.exe or *ansible-runner, indicating the activity was initiated by a deployment engine.Internal Security Automation and Threat Hunting Scripts