This hunt detects adversary activity involving the Vidar infostealer by monitoring for specific indicators of compromise such as malicious hashes and network connections. A SOC team should proactively search for these signals in Azure Sentinel to identify early-stage infections that could lead to credential theft and lateral movement before broader impact occurs.
Malware Family: Vidar Total IOCs: 13 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://book.watersendproperties.com/ | payload_delivery | 2026-07-30 | 75% |
| url | hxxps://magrirentcar.com/ | payload_delivery | 2026-07-30 | 75% |
| url | hxxps://m36.akasia988.net/ | botnet_cc | 2026-07-30 | 75% |
| domain | m36.akasia988.net | botnet_cc | 2026-07-30 | 75% |
| url | hxxps://cesarreina.com/ | payload_delivery | 2026-07-30 | 75% |
| url | hxxps://out.akasia988.net/ | botnet_cc | 2026-07-30 | 75% |
| domain | out.akasia988.net | botnet_cc | 2026-07-30 | 75% |
| url | hxxps://aware-cr1.com/api/gate | botnet_cc | 2026-07-30 | 100% |
| url | hxxps://bpo.akasia988.net | botnet_cc | 2026-07-30 | 100% |
| url | hxxps://t.me/gk6p2s | botnet_cc | 2026-07-30 | 100% |
| url | hxxps://mabuhayasianstore.fo/ | payload_delivery | 2026-07-30 | 75% |
| url | hxxps://thebookkeepingcomp.org/ | payload_delivery | 2026-07-30 | 75% |
| url | hxxps://mattressbd.com/ | payload_delivery | 2026-07-30 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["m36.akasia988.net", "out.akasia988.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://book.watersendproperties.com/", "https://magrirentcar.com/", "https://m36.akasia988.net/", "https://cesarreina.com/", "https://out.akasia988.net/", "https://aware-cr1.com/api/gate", "https://bpo.akasia988.net", "https://t.me/gk6p2s", "https://mabuhayasianstore.fo/", "https://thebookkeepingcomp.org/", "https://mattressbd.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 5 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule, along with tailored filters and exclusions suitable for an enterprise environment:
Scenario: Endpoint Protection Scanning of Quarantine Archives
C:\Program Files\CrowdStrike\FalconSensor\csagent.exe (or equivalent for Defender) when accessing paths containing \Quarantine\ or \Updates\.Scenario: Scheduled Backup Jobs Accessing Shared Network Drives
Process Name matches vrb.exe (Veeam) or commvaultagent.exe, and the Source File Path contains \Backup\ or \Archive\.Scenario: IT Admin Deployment of Security Tools via SCCM
ccmexec.exe process may extract and execute Vidar-related components (e.g., a specific IOCs manifest file), mimicking the behavior of the actual threat.