This hunt targets adversary behavior where threat actors leverage ClearFake-malicious URLs to execute phishing campaigns or deliver initial payloads into the enterprise network. The SOC team should proactively investigate these specific indicators within Azure Sentinel to identify early-stage compromise vectors and prevent lateral movement before broader infection occurs.
Threat: ClearFake Total URLs: 6 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://39p49guo.mokatebatedari.xyz/?ublib=aec9e769-eb3a-4f2c-b43e-a59bc857ba59 | offline | malware_download | 2026-06-29 |
hxxps://w0l83hua.1xsignupbet.com/?ublib=1f7d1d52-c5f9-4339-bccd-f55fda1c63a2 | offline | malware_download | 2026-06-29 |
hxxps://cdn.jsdelivr.net/gh/Robiboart/ExtraktLive/zetrix09 | online | malware_download | 2026-06-29 |
hxxps://dsr.bet1forward.com/85a9b236-1e40-4fe1-a884-e1dbdce11510 | offline | malware_download | 2026-06-29 |
hxxps://4wvw2ekl.jarayemaleyhamval.xyz/?ublib=a68dd97e-0383-4bb4-8a0e-417de3872ca4 | offline | malware_download | 2026-06-29 |
hxxps://1j4lxwuu.1xboropartners.com/?ublib=5e4cad7e-e822-425d-9f6b-dc057f064a70 | offline | malware_download | 2026-06-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClearFake
let malicious_domains = dynamic(["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(["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 in an enterprise environment:
Automated Software Update Scanners
C:\Program Files\Microsoft Defender\MsMpEng.exe or CrowdStrike Falcon Sensor) and restrict the alert to only trigger if the destination IP is not within the organization’s known trusted update server CIDR ranges.IT Asset Management & Patching Workflows
svc-patch-admin or IT-Service-Account) and the Time Window, ensuring alerts are suppressed for these specific service accounts during scheduled maintenance hours (e.g., 02:00 – 05:00 UTC).Security Information & Event Management (SIEM) Enrichment Jobs