← Back to SOC feed Coverage →

URLhaus: ClickFix 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-07-31T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt detects adversary behavior involving the distribution of malicious URLs associated with the ClickFix campaign, which often targets users through deceptive web links to compromise endpoints. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage phishing or drive-by download attacks that could lead to credential theft and lateral movement within the network.

IOC Summary

Threat: ClickFix Total URLs: 2 Active URLs: 1

URLStatusThreatDate Added
hxxps://casinodas.com/get_verify?i=20630onlinemalware_download2026-07-31
hxxp://deviceauth-code.us.com/offlinemalware_download2026-07-31

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClickFix
let malicious_domains = dynamic(["casinodas.com"]);
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(["casinodas.com"]);
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

Here are the false positive scenarios and corresponding filters for the URLhaus: ClickFix Malicious URLs detection rule:

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