This hunt hypothesis targets adversaries utilizing Vidar malware to exfiltrate sensitive data through encrypted command-and-control channels, often initiated by phishing campaigns with malicious URLs or vulnerable document exploitation. Proactively hunting for these indicators in Azure Sentinel is critical due to Vidar’s high severity and its ability to bypass traditional detection mechanisms via encryption, ensuring early identification of potential data breaches before significant information loss occurs.
Malware Family: Vidar Total IOCs: 4 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://sto.sm188dadu.top/ | botnet_cc | 2026-08-17 | 100% |
| url | hxxps://sto[.]1131gg.org/ | botnet_cc | 2026-08-17 | 100% |
| domain | sto.sm188dadu.top | botnet_cc | 2026-08-17 | 100% |
| domain | sto[.]1131gg.org | botnet_cc | 2026-08-17 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["sto.sm188dadu.top", "sto.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://sto.sm188dadu.top/", "https://sto.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, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Cloud Backup Agents Communicating with C2-like Endpoints
VeeamAgent.exe, rubrik-agent.exe) and their associated service accounts. Additionally, exclude known corporate cloud gateway IP ranges used by these vendors from the rule’s IOC matching logic.Scenario: Scheduled Software Update Tasks via Microsoft Endpoint Manager
NT SERVICE\IntuneAgent) and whitelist the vendor-specific domains (e.g., update.microsoft.com, adobe.io).Scenario: Automated Reporting Tools Using External APIs