This hunt detects adversary behavior where endpoints access known ClearFake phishing or malware distribution URLs identified by URLhaus, indicating potential initial compromise or lateral movement attempts. The SOC team should proactively investigate these signals in Azure Sentinel to rapidly isolate affected assets and prevent data exfiltration before the malicious payloads execute fully.
Threat: ClearFake Total URLs: 5 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://jbqh.betaverse.casino/2d723589-f1ce-4428-902f-7013737dc360 | offline | malware_download | 2026-07-11 |
hxxps://adewbrfg.bet90forward.win/3d02a915-32d5-417d-81de-799708fb01a8 | offline | malware_download | 2026-07-11 |
hxxps://tniukh64.bitbet.download/?ublib=0a4db2cc-3de0-4503-8ebe-c8c5c4734e95 | offline | malware_download | 2026-07-11 |
hxxps://hlme.bet90forward.app/308b6622-28b1-4cc5-948d-b0d55ac36823 | offline | malware_download | 2026-07-11 |
hxxps://uzmapubv.behtarin-site-shartbandi-football.com/4439bf95-cee6-4e54-8dde-47a4bceb9fa3 | offline | malware_download | 2026-07-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClearFake
let malicious_domains = dynamic(["tniukh64.bitbet.download", "jbqh.betaverse.casino", "adewbrfg.bet90forward.win", "hlme.bet90forward.app", "uzmapubv.behtarin-site-shartbandi-football.com"]);
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(["tniukh64.bitbet.download", "jbqh.betaverse.casino", "adewbrfg.bet90forward.win", "hlme.bet90forward.app", "uzmapubv.behtarin-site-shartbandi-football.com"]);
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:
Automated Software Update Scans by Endpoint Protection Agents
clearfake.com infrastructure or its associated CDN endpoints, triggering a hit if the specific URL is flagged as “ClearFake” but represents a legitimate vendor communication channel rather than active malware.10.20.30.x for SCCM or Intune management nodes) and restrict the rule to only flag URLs accessed by interactive user sessions, excluding service accounts running update jobs.Scheduled Vulnerability Assessment Scans
User-Agent string containing specific identifiers for vulnerability scanners (e.g., Tenable-Nessus, QualysAgent) and filter out events where the HTTP response code is 200 OK with a low dwell time (<5 seconds), indicating a quick probe rather than a user browsing session.IT Helpdesk Ticketing System Integration