This hypothesis posits that adversaries are leveraging the specific network and file indicators of the Vidar malware to establish persistence and exfiltrate sensitive data within the Azure environment. Proactive hunting for these nine IOCs is critical to identify early-stage infections before they escalate into widespread lateral movement or data breaches, ensuring rapid containment in the Sentinel workspace.
Malware Family: Vidar Total IOCs: 9 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://dup.omni-signage.com/ | botnet_cc | 2026-07-10 | 75% |
| domain | dup.omni-signage.com | botnet_cc | 2026-07-10 | 75% |
| url | hxxps://dup.kencangsm188.top/ | botnet_cc | 2026-07-10 | 75% |
| domain | dup.kencangsm188.top | botnet_cc | 2026-07-10 | 75% |
| url | hxxps://cft.omni-signage.com/ | botnet_cc | 2026-07-10 | 75% |
| domain | cft.omni-signage.com | botnet_cc | 2026-07-10 | 75% |
| url | hxxps://cft.kencangsm188.top/ | botnet_cc | 2026-07-10 | 75% |
| domain | cft.kencangsm188.top | botnet_cc | 2026-07-10 | 75% |
| url | hxxps://vikingplaza.com/ | payload_delivery | 2026-07-10 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Vidar
let malicious_domains = dynamic(["dup.omni-signage.com", "dup.kencangsm188.top", "cft.omni-signage.com", "cft.kencangsm188.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://dup.omni-signage.com/", "https://dup.kencangsm188.top/", "https://cft.omni-signage.com/", "https://cft.kencangsm188.top/", "https://vikingplaza.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 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule, along with recommended filters and exclusions tailored for an enterprise environment:
Endpoint Detection and Response (EDR) Scheduled Scans
C:\Program Files\CrowdStrike\fs.exe or MsMpEng.exe) and restrict the alert to non-scan hours if possible, or whitelist the specific destination IP ranges associated with the EDR vendor’s update servers.Software Deployment via Configuration Management
DOMAIN\SCCM-Deploy-Svc) and specific process paths related to configuration management tools (e.g., C:\Windows\CCM\CcmExec.exe or ansible-playbook). Additionally, whitelist the specific destination ports used for these administrative updates.