This hunt targets adversaries leveraging the ClickFix malware family to distribute malicious payloads through compromised or newly registered web domains that users may inadvertently access. Proactively hunting these specific URL signatures in Azure Sentinel is critical because ClickFix often employs rapid domain-flipping tactics that can bypass static allow-lists, requiring real-time behavioral analysis to prevent initial infection and lateral movement.
Threat: ClickFix Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://marjdl.pro/a9170b87.exe | online | malware_download | 2026-07-14 |
hxxps://marjdl.pro/d9792a72.exe | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClickFix
let malicious_domains = dynamic(["marjdl.pro"]);
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(["marjdl.pro"]);
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 specific false positive scenarios for the URLhaus: ClickFix Malicious URLs detection rule, including tailored filters and exclusions:
Scheduled Software Update Scans by Endpoint Protection Agents
clickfix.com or related subdomains to validate update signatures before pushing patches to workstations. The high volume of automated requests from the agent service account can be misidentified as user-initiated malicious browsing activity.svc-falcon-updater, defender-agent) or restrict the detection to exclude traffic where the User Agent string contains known endpoint management identifiers (e.g., CrowdStrike-Update-Agent or Microsoft Defender Antivirus).IT Helpdesk Ticketing System Integration
10.20.50.0/24 for the ServiceNow cluster) or filter out requests where the HTTP Method is POST/PUT with a payload size > 5KB, which typically indicates an API integration rather than a simple user click-through.**Automated Browser Health Checks by