This detection identifies adversary activity involving ClickFix malware distribution through three specific malicious URLs known to deliver ransomware or infostealer payloads via browser-based attacks. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malware establishes persistence on user systems.
Threat: ClickFix Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://shell-node-7uxe.vercel.app/activator/windows?id=s | online | malware_download | 2026-07-23 |
hxxps://shell-node-7uxe.vercel.app/activator/windows?id=e | online | malware_download | 2026-07-23 |
hxxps://shell-node-7uxe.vercel.app/task/parser/windows?token=912 | online | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClickFix
let malicious_domains = dynamic(["shell-node-7uxe.vercel.app"]);
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(["shell-node-7uxe.vercel.app"]);
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 and corresponding filters for the URLhaus: ClickFix Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Tool Health Checks
CN=SentinelOne-HealthCheck, CrowdStrike-Falcon). Add a filter to ignore alerts where the UserAgent contains keywords like “Tenable,” “Falcon,” or “Nessus.”Scenario: Scheduled Macro Execution in Office 365
AppID-xxxxx). Additionally, filter out URLs that resolve to known internal CDN subdomains or approved partner domains listed in a whitelisted allow-list CSV.Scenario: Software Update Mechanisms for Enterprise Applications