This detection identifies adversaries leveraging malicious scripts hosted on compromised or newly registered domains to execute initial access and command-and-control activities via browser-based interactions. Proactive hunting for these URLhaus script indicators in Azure Sentinel is critical to intercept early-stage web-delivered attacks before they establish persistence or exfiltrate sensitive data through the organization’s network perimeter.
Threat: script Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://77.239.124.108/cat.sh | offline | malware_download | 2026-08-15 |
hxxp://103.77.246.150/loader.sh | offline | malware_download | 2026-08-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: script
let malicious_domains = dynamic(["77.239.124.108", "103.77.246.150"]);
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(["77.239.124.108", "103.77.246.150"]);
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 4 specific false positive scenarios for the URLhaus: script Malicious URLs detection rule, including context and recommended filtering strategies:
Automated Cloud Backup & Sync Agents
?token=...&sessionid=...) that URLhaus may flag as suspicious due to their length and structure.*.veeam.com, *.onedrive.live.com) where the query string contains standard synchronization parameters.SIEM and EDR Telemetry Heartbeats
*.splunk.com, *.crowdstrike.com) and restrict the alert to only trigger when the HTTP method is not GET or when the user agent string does not match the known EDR/SIEM client signature.Scheduled Patch Management Jobs