This hunt targets adversary behavior where compromised endpoints attempt to communicate with known ClearFake phishing or malware distribution sites identified by URLhaus. Proactively hunting these specific malicious URLs in Azure Sentinel is critical because it enables early detection of initial infection vectors before they escalate into broader lateral movement or data exfiltration incidents.
Threat: ClearFake Total URLs: 5 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://8zdusrwn.xbetone.com/?ublib=9cdfeca6-12c8-4d7c-8465-88e1f2af1a60 | offline | malware_download | 2026-06-28 |
hxxps://dows.sabad724.bio/95460196-1102-499d-9e6e-cd30b5a0cd4f | offline | malware_download | 2026-06-28 |
hxxps://cdn.jsdelivr.net/gh/Tedy324/federation-host@aa596d3/strict | offline | malware_download | 2026-06-28 |
hxxps://htfll3q5.1x303.casino/?ublib=126bfe76-429c-44e9-af64-07a521331b01 | offline | malware_download | 2026-06-28 |
hxxps://o2rfpbnw.vip1xbet.net/?ublib=a5eef300-c272-4fec-9464-9dbba9c9887c | offline | malware_download | 2026-06-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClearFake
let malicious_domains = dynamic(["htfll3q5.1x303.casino", "dows.sabad724.bio", "8zdusrwn.xbetone.com", "o2rfpbnw.vip1xbet.net", "cdn.jsdelivr.net"]);
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(["htfll3q5.1x303.casino", "dows.sabad724.bio", "8zdusrwn.xbetone.com", "o2rfpbnw.vip1xbet.net", "cdn.jsdelivr.net"]);
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: ClearFake Malicious URLs detection rule, tailored for an enterprise environment where legitimate activities trigger alerts due to known benign traffic patterns matching the “ClearFake” signature.
Automated Software Update Scans by Endpoint Protection Agents
C:\Program Files\CrowdStrike\fs.exe or Microsoft Defender Antivirus) destined for known update domains, provided the HTTP status code is 200 OK.Scheduled Group Policy Object (GPO) Health Checks
DC-IP-RANGE) and filter by the specific scheduled task name GroupPolicyHealthCheck running during off-hours (e.g., 02:00–04:00 local time).Third-Party SaaS Integration Webhooks