This hunt targets adversary behavior where Vidar malware infiltrates endpoints via phishing campaigns to steal banking credentials and exfiltrate sensitive data over encrypted channels. Proactively hunting for these specific indicators in Azure Sentinel is critical to detect early-stage credential theft before attackers can leverage stolen identities for lateral movement or financial fraud.
Malware Family: Vidar Total IOCs: 5 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | f4m.kijangturbo88.top | botnet_cc | 2026-07-16 | 100% |
| url | hxxps://f4m.kijangturbo88.top/ | botnet_cc | 2026-07-16 | 100% |
| domain | f4m.ambiltogel.net | botnet_cc | 2026-07-16 | 100% |
| url | hxxps://f4m.ambiltogel.net/ | botnet_cc | 2026-07-16 | 100% |
| url | hxxps://lmstamper.com/ | payload_delivery | 2026-07-16 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["f4m.kijangturbo88.top", "f4m.ambiltogel.net"]);
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://f4m.kijangturbo88.top/", "https://f4m.ambiltogel.net/", "https://lmstamper.com/"]);
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 4 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule in an enterprise environment, along with recommended filters and exclusions:
Legitimate Phishing Simulation Campaigns
*.knowbe4.com, *.proofpoint.com). Additionally, filter traffic originating from the internal Security Awareness distribution server’s MAC address or hostname.Scheduled Software Updates via Centralized Management
svc-sccm-dist, svc-jamf-agent) or restrict the alert to exclude known update schedules (e.g., 02:00–04:00 UTC on Tuesdays) for these management tools. Whitelist the specific URLs and certificate issuers associated with your software supply chain vendors.Admin Remote Access via Cloud Gateways