This hypothesis detects adversaries deploying CoinMiner malware via malicious URLs to hijack system resources for unauthorized cryptocurrency mining, which significantly degrades performance and increases operational costs. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify early-stage compromises that may evade traditional signature-based detection while preventing resource exhaustion across the enterprise environment.
Threat: CoinMiner Total URLs: 3 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://cloud.calltop.com.br/apps/web/linux.bin | online | malware_download | 2026-08-27 |
hxxps://www.mediocasavolponi.com/wp-content/plugins/linux.bin | offline | malware_download | 2026-08-27 |
hxxps://casasmediterraneas.com/wp-content/plugins/linux.bin | online | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: CoinMiner
let malicious_domains = dynamic(["cloud.calltop.com.br", "casasmediterraneas.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["cloud.calltop.com.br", "casasmediterraneas.com"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the URLhaus: CoinMiner Malicious URLs rule, including targeted filters and exclusions:
Legitimate Cloud-Based Crypto Analytics Dashboards
*.coinmarketcap.com, *.tradingview.com) and exclude traffic originating from user groups tagged as “Finance” or “Risk Management.”Scheduled DevOps Container Health Checks
svc-jenkins-build, azure-devops-agent) and filter URLs containing specific path parameters common in container registry APIs (e.g., /v2/_catalog or /api/v1/images).Enterprise Endpoint Management & Patching Agents