This detection identifies adversary activity involving newly identified malicious URLs tagged by URLhaus, which often indicate early-stage phishing or command-and-control communications. A proactive hunt is essential in Azure Sentinel to rapidly validate these emerging threats before they compromise endpoints or exfiltrate sensitive data within the organization’s network.
Threat: sh Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://160.119.71.134/n2/tbk | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/lterouter | online | malware_download | 2026-08-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: sh
let malicious_domains = dynamic(["160.119.71.134"]);
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(["160.119.71.134"]);
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 5 specific false positive scenarios for the URLhaus: sh Malicious URLs detection rule in an enterprise environment, along with recommended filters and exclusions:
Automated Software Update Scans by Endpoint Protection Agents
update.crowdstrike.com, go.microsoft.com) to fetch the latest threat intelligence feeds. These URLs often contain dynamic query parameters that can trigger a generic “sh” (shell script) tag in URLhaus if the specific endpoint behavior is not fully whitelisted.csagent.exe, MsMpEng.exe) and exclude traffic destined for known vendor update domains.Scheduled PowerShell Script Execution in DevOps Pipelines
.sh files) from internal artifact repositories (e.g., Artifactory, Nexus) to perform deployment tasks. If these internal URLs are newly registered or lack a high reputation score in URLhaus, they may be flagged as malicious despite being legitimate build artifacts.svc-jenkins-build) and restrict the rule to only trigger on URLs containing external public domains rather than internal IP ranges or .internal zones.Third-Party Cloud Management Dashboard Refreshes