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.
Threat: ClickFix Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://casinodas.com/get_verify?i=20630 | online | malware_download | 2026-07-31 |
hxxp://deviceauth-code.us.com/ | offline | malware_download | 2026-07-31 |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are the false positive scenarios and corresponding filters for the URLhaus: ClickFix Malicious URLs detection rule:
Security Tool Health Checks & Telemetry
clickfix.com domain to verify network connectivity or check for configuration updates, which can be flagged as a “ClickFix” interaction by the URLhaus feed even though it is benign internal traffic.svc-falcon-agent, MDE-Service) or specific destination IP ranges belonging to the vendor’s cloud infrastructure, ensuring only user-initiated browser sessions trigger the alert.Automated Patch Management & Software Updates
User-Agent string contains keywords like “Ivanti-Update” or “WSUSClient”.Third-Party Cloud Identity & SSO Integrations