This detection identifies adversary activity involving the consumption of newly identified ASCII-formatted malicious URLs from the URLhaus threat intelligence feed, which often signal early-stage phishing or command-and-control communications. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before these high-severity threats propagate across the organization’s network.
Threat: ascii Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://api.recapcha.space/task/windows?token=912 | offline | malware_download | 2026-07-23 |
hxxp://bore.pub:6668/deploy.zip | offline | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["api.recapcha.space", "bore.pub"]);
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(["api.recapcha.space", "bore.pub"]);
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 and corresponding exclusion strategies for the URLhaus: ascii Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Scanning by Endpoint Protection Agents
https://urlhaus-api.securelist.ru or similar threat intelligence endpoints to fetch ASCII-based URL signatures, which can be flagged as “malicious” due to their high-entropy nature or specific API response patterns.C-Snap.exe (CrowdStrike) or MsMpEng.exe (Microsoft Defender) when accessing known threat intelligence domains.Scenario: Scheduled Backup and Archiving Jobs
Task Scheduler on Windows Server) and may trigger HTTP requests to internal reporting dashboards that contain long, complex URL strings tagged as “ascii” by the detection engine.svc_veeam or svc_commvault) accessing internal reporting subnets during defined maintenance windows (e.g., 02:00 – 04:00 local time).Scenario: CI/CD Pipeline Artifact Retrieval