This hunt detects adversary activity involving the MintsLoader malware by searching for specific indicators of compromise (IOCs) that signal potential initial access or lateral movement within the environment. The SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections and prevent the execution of malicious payloads before they escalate into broader security incidents.
Malware Family: MintsLoader Total IOCs: 9 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | cloudcrypt7069.com | botnet_cc | 2026-08-14 | 100% |
| domain | cloudguard3537.lol | botnet_cc | 2026-08-14 | 100% |
| domain | coretoken8476.top | botnet_cc | 2026-08-14 | 100% |
| domain | datapass8636.top | botnet_cc | 2026-08-14 | 100% |
| domain | linkcast1961.com | botnet_cc | 2026-08-14 | 100% |
| domain | linkmail5768.com | botnet_cc | 2026-08-14 | 100% |
| domain | teleupdate6573.top | botnet_cc | 2026-08-14 | 100% |
| domain | nodemetrics3379.com | botnet_cc | 2026-08-14 | 100% |
| domain | apiupdate3921.lol | botnet_cc | 2026-08-14 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - MintsLoader
let malicious_domains = dynamic(["cloudcrypt7069.com", "cloudguard3537.lol", "coretoken8476.top", "datapass8636.top", "linkcast1961.com", "linkmail5768.com", "teleupdate6573.top", "nodemetrics3379.com", "apiupdate3921.lol"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios and corresponding filters for the ThreatFox: MintsLoader IOCs detection rule in an enterprise environment:
Scenario: Legitimate Software Deployment via Endpoint Management Tools
ccmsetup.exe (SCCM), IntuneManagementExtension.exe, or IvantiAgent.exe. Additionally, filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 UTC) on known deployment servers.Scenario: Scheduled Backup and Antivirus Scanning Jobs
VeeamAgent.exe, AcronisBackupService.exe, or the specific AV engine process (C:\Program Files\Microsoft Defender\MsMpEng.exe). Filter based on the command line containing keywords like “scan,” “backup,” or “integrity.”Scenario: Internal Development and CI/CD Pipeline Artifacts