This detection rule identifies potential initial access and execution activities by correlating known indicators of compromise (IOCs) linked to the “Unknown Loader” threat actor within Azure Sentinel logs. Proactively hunting for these specific IOCs is critical because Unknown Loader often serves as a precursor to advanced persistent threats, allowing the SOC team to intercept early-stage infections before they escalate into broader lateral movement or data exfiltration incidents.
Malware Family: Unknown Loader Total IOCs: 2 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | mittenmint.cfd | botnet_cc | 2026-08-10 | 100% |
| url | hxxps://vokhmiwmncjba.vivaldinotabot.com/s/psc4?cl | payload_delivery | 2026-08-10 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["mittenmint.cfd"]);
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 - Unknown Loader
let malicious_urls = dynamic(["https://vokhmiwmncjba.vivaldinotabot.com/s/psc4?cl"]);
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 and corresponding filters for the ThreatFox: Unknown Loader IOCs detection rule:
Scenario: Automated Patch Deployment via SCCM/Intune
C:\Windows\CCM\ or C:\Program Files (x86)\Microsoft Intune Agent\. Additionally, add a filter to ignore alerts where the parent process is ccmsetup.exe or IntuneManagementExtension.exe.Scenario: Scheduled Antivirus Definition Updates
C:\Program Files\CrowdStrike\Falcon Sensor\CrowdStrike.exe (or equivalent for SentinelOne) and the action is “Update” during standard maintenance windows (e.g., 02:00–04:00).Scenario: Third-Party SaaS Connector Installations