This detection identifies adversary behavior where compromised hosts initiate connections to newly identified malicious URLs flagged by URLhaus with an ‘sh’ (suspicious host) tag, indicating potential early-stage infection or command-and-control activity. The SOC team should proactively hunt for these indicators in Azure Sentinel because the high severity and specific tagging suggest a rapidly evolving threat landscape that requires immediate investigation before broader network propagation occurs.
Threat: sh Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://72.56.52.158/a | online | malware_download | 2026-06-28 |
hxxp://162.248.100.101/n2/lterouter | online | malware_download | 2026-06-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: sh
let malicious_domains = dynamic(["162.248.100.101", "72.56.52.158"]);
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(["162.248.100.101", "72.56.52.158"]);
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: sh Malicious URLs detection rule in an enterprise environment, including suggested filters and exclusions:
Software Update Mechanisms via Shell Scripts
sh) to execute the curl or wget command, it may hit URLs hosted on domains that URLhaus has flagged due to recent reputation changes or shared hosting environments (e.g., GitHub Actions artifacts or Docker Hub layers)..github.com, docker.io, or specific internal artifact repositories, provided the user agent string contains “Ansible” or “Puppet”.Scheduled Log Aggregation and Reporting Jobs
sh due to high-volume scanning noise or recent certificate rotations, even though the content is benign.cron, systemd-timer, or specific service accounts like svc-log-collector.Third-Party Integration Webhooks and API Polling