This hunt detects adversary behavior involving user interactions with malicious URLs identified by URLhaus as part of the ClickFix campaign, which are known to deliver targeted payloads or phishing content. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromise attempts and prevent potential lateral movement or data exfiltration driven by this specific threat cluster.
Threat: ClickFix Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://daleeby.com/R4JnneaiZebrwCkgG | offline | malware_download | 2026-08-19 |
hxxp://scuttlepopdownload.monster | offline | malware_download | 2026-08-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClickFix
let malicious_domains = dynamic(["daleeby.com", "scuttlepopdownload.monster"]);
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(["daleeby.com", "scuttlepopdownload.monster"]);
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 4 specific false positive scenarios for the URLhaus: ClickFix Malicious URLs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Security Scanner Traffic
Source IP matching the dedicated subnet of security appliances (e.g., 10.50.20.0/24) and filter out events where the User-Agent string contains keywords like “Tenable,” “Qualys,” or “Nessus.”Scenario: Scheduled Software Update & Patching Jobs
02:00 - 04:00 UTC) where the Process Name matches update agents such as ccmexec.exe, jamfproagentd, or ivanti_agent_service.Scenario: Legitimate Marketing & CRM Campaigns