This hypothesis posits that adversaries are leveraging ASCII-tagged malicious URLs identified by URLhaus to deliver phishing payloads or command-and-control traffic within the organization’s network. Proactively hunting for these specific indicators in Azure Sentinel is critical because their high severity suggests an active threat landscape where early detection of these known malicious endpoints can prevent lateral movement and data exfiltration before automated rules trigger alerts.
Threat: ascii Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://151.241.154.141:8888/1/iemqg674fyehs.nwl | offline | malware_download | 2026-07-07 |
hxxps://dragonsurcing.com/BUYING%20ORDER/stub.ps1 | online | malware_download | 2026-07-07 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["dragonsurcing.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(["dragonsurcing.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: ascii Malicious URLs detection rule in an enterprise environment, along with recommended filters or exclusions:
Automated Software Update Scans by Endpoint Protection Agents
svc-crowdstrike, sentinelone-agent) or processes running as System during scheduled maintenance windows.IT Administration and Patch Management Workflows
10.20.30.0/24) and specific service accounts used by patch management tools (e.g., svc-sccm-admin, ivanti-service).**Third-Party Security Information and Event Management (SIEM) En