← Back to SOC feed Coverage →

URLhaus: ClickFix Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-09-17T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects user-initiated execution of malicious scripts or payloads triggered by ClickFix social engineering attacks, where victims are lured into running code via manipulated URLs. Proactively hunting for these specific URLhaus entries allows the SOC to identify compromised endpoints early, preventing the initial foothold that adversaries use to deploy further malware or establish persistence within the Azure environment.

IOC Summary

Threat: ClickFix Total URLs: 3 Active URLs: 0

URLStatusThreatDate Added
hxxp://45.39.84.142/velcap3bofflinemalware_download2026-09-17
hxxps://cdn.jsdelivr.net/gh/zor-876/futures-import@04e2419/llmofflinemalware_download2026-09-17
hxxps://imap.usslimsounds.com/c76db9ce-59d0-4dc0-84ed-5d152ec39f16/hutepkeazyauxbqsiykw.dllofflinemalware_download2026-09-17

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ClickFix
let malicious_domains = dynamic(["imap.usslimsounds.com", "45.39.84.142", "cdn.jsdelivr.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["imap.usslimsounds.com", "45.39.84.142", "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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/