This hypothesis posits that adversaries are actively deploying the Vidar infostealer to exfiltrate sensitive credentials and financial data through known indicators of compromise within the Azure environment. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel to rapidly identify early-stage infections and mitigate potential lateral movement before critical assets are compromised.
Malware Family: Vidar Total IOCs: 4 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://ironcladsportfishing.com/ | payload_delivery | 2026-07-12 | 75% |
| url | hxxps://ewbn.org/ | payload_delivery | 2026-07-12 | 75% |
| url | hxxps://alumnofprojects.co.il/ | payload_delivery | 2026-07-12 | 75% |
| domain | gog.tb88tank.top | botnet_cc | 2026-07-12 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["gog.tb88tank.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://ironcladsportfishing.com/", "https://ewbn.org/", "https://alumnofprojects.co.il/"]);
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 Policy Updates via CrowdStrike Falcon or Microsoft Defender
C:\Program Files\CrowdStrike\fs.exe or MsMpEng.exe) when accessing Vidar-related file paths, provided the user context is a Domain Admin or Service Account.Scheduled Vulnerability Scanning with Tenable Nessus or Qualys
\\FileServer\SecRepo\VidarSamples) to validate the detection baseline.svc-tenable-scanner or QualysAgentService) accessing the specific network share path where Vidar test artifacts are stored.Automated Threat Intelligence Feed Integration via Splunk or Sentinel