This detection rule identifies adversary behavior where CoinMiner cryptocurrency mining malware infiltrates systems through malicious URLs delivered via phishing campaigns, subsequently hijacking computational resources to generate unauthorized digital currency profits. A SOC team should proactively hunt for this activity in Azure Sentinel to mitigate the risk of severe performance degradation and potential financial loss caused by undetected resource exhaustion across the enterprise environment.
Threat: CoinMiner Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://cta.edu.pe/wp-content/plugins/linux.bin | online | malware_download | 2026-08-26 |
hxxps://cta.edu.pe/wp-content/plugins/linux.bin | online | malware_download | 2026-08-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: CoinMiner
let malicious_domains = dynamic(["cta.edu.pe"]);
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(["cta.edu.pe"]);
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 |
Scenario 1: Legitimate Browser-Based Crypto Asset Management
*.coinbase.com, *.metamask.io) and whitelist URLs containing known wallet authentication tokens or API endpoints used by these financial tools.Scenario 2: Scheduled Automated Security Scans
qualys-scan-01.corp.local) and filter out traffic occurring during defined maintenance windows (e.g., 02:00–04:00 UTC) when these jobs are active.Scenario 3: Legitimate Cloud-Based Development Environments