This hunt hypothesis targets adversaries utilizing Vidar malware to execute credential theft and sensitive data exfiltration following initial compromise through phishing vectors. Proactive hunting in Azure Sentinel is essential to identify early indicators of this sophisticated threat, enabling rapid containment before critical assets are accessed or extracted by the attacker.
Malware Family: Vidar Total IOCs: 14 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | sii[.]11gokil.org | botnet_cc | 2026-08-21 | 100% |
| domain | zaf[.]11gokil.org | botnet_cc | 2026-08-21 | 100% |
| domain | ges[.]1001gacor.org | botnet_cc | 2026-08-21 | 100% |
| domain | tax.sm188dnsx.top | botnet_cc | 2026-08-21 | 100% |
| domain | sii.sm188dnsx.top | botnet_cc | 2026-08-21 | 100% |
| domain | zaf.sm188dnsx.top | botnet_cc | 2026-08-21 | 100% |
| domain | tax[.]11gokil.org | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://sii[.]11gokil.org/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://zaf[.]11gokil.org/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://tax.sm188dnsx.top/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://sii.sm188dnsx.top/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://zaf.sm188dnsx.top/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://tax[.]11gokil.org/ | botnet_cc | 2026-08-21 | 100% |
| url | hxxps://ges[.]1001gacor.org/ | botnet_cc | 2026-08-21 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["sii.11gokil.org", "zaf.11gokil.org", "ges.1001gacor.org", "tax.sm188dnsx.top", "sii.sm188dnsx.top", "zaf.sm188dnsx.top", "tax.11gokil.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://sii.11gokil.org/", "https://zaf.11gokil.org/", "https://tax.sm188dnsx.top/", "https://sii.sm188dnsx.top/", "https://zaf.sm188dnsx.top/", "https://tax.11gokil.org/", "https://ges.1001gacor.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 |
Scenario 1: Legitimate Phishing Simulation Campaigns
10.20.x.x) or specific known simulation domains (e.g., *.knowbe4.com, *.proofpoint.com). Additionally, exclude alerts where the user agent string contains “PhishingSimulation” or matches a specific campaign ID header.Scenario 2: Scheduled Backup and Data Archiving Jobs
svc_backup_prod). Furthermore, exclude traffic destined for known cloud storage endpoints (e.g., blob.core.windows.net, s3.amazonaws.com) initiated by the backup agent process names (VeeamService.exe, AzureBackupAgent.exe).Scenario 3: Enterprise Document Management and Collaboration Tools *