← Back to SOC feed Coverage →

URLhaus: CoinMiner Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
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 URLhaus →
Retrieved: 2026-06-13T23:00:00Z · Confidence: medium

Hunt Hypothesis

The detection identifies potential CoinMiner malware distribution through malicious URLs, indicating an adversary may be attempting to deploy cryptocurrency-mining malware across compromised systems. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage attacks that could compromise resource usage and system integrity.

IOC Summary

Threat: CoinMiner Total URLs: 6 Active URLs: 6

URLStatusThreatDate Added
hxxps://217.60.195.113/cleanonlinemalware_download2026-06-13
hxxps://217.60.195.113/arm7onlinemalware_download2026-06-13
hxxps://217.60.195.113/x86_64onlinemalware_download2026-06-13
hxxps://217.60.195.113/i686onlinemalware_download2026-06-13
hxxps://217.60.195.113/aarch64onlinemalware_download2026-06-13
hxxps://217.60.195.113/shonlinemalware_download2026-06-13

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: CoinMiner
let malicious_domains = dynamic(["217.60.195.113"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["217.60.195.113"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/