← Back to SOC feed Coverage →

ThreatFox: Vidar IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
iocthreatfoxwin-vidar
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-07-14T23:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis posits that adversaries are actively deploying the Vidar malware family within the Azure environment to establish persistence and exfiltrate sensitive data through its four key indicators of compromise. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel to rapidly identify early-stage infections before they escalate into broader lateral movement or data theft incidents.

IOC Summary

Malware Family: Vidar Total IOCs: 4 IOC Types: md5_hash, sha1_hash, sha256_hash, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://silverbackchatbot.com/payload_delivery2026-07-1475%
sha1_hashe256b2b7d0235138cea6b818f9bb44d7cfb5e4c8payload2026-07-1495%
md5_hash87700720a8a003a7d6e6da15958e4664payload2026-07-1495%
sha256_hash1105c195ea9bf21dcfc8882b1c3887d5056bece5b96170e0ad349cd82a3203a8payload2026-07-1495%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Vidar
let malicious_urls = dynamic(["https://silverbackchatbot.com/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Vidar
let malicious_hashes = dynamic(["e256b2b7d0235138cea6b818f9bb44d7cfb5e4c8", "87700720a8a003a7d6e6da15958e4664", "1105c195ea9bf21dcfc8882b1c3887d5056bece5b96170e0ad349cd82a3203a8"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Vidar IOCs detection rule in an enterprise environment, along with suggested filters and exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/win.vidar/