This detection identifies adversary behavior involving the execution of ASCII-tagged malicious URLs that often serve as initial infection vectors or command-and-control channels within the network environment. Proactive hunting in Azure Sentinel is critical to rapidly isolate these specific threats and prevent lateral movement before they compromise sensitive data assets.
Threat: ascii Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://drive.google.com/uc?export=download&id=1XDCI_1kQupUqDw_2gS8MLd8gAH3egA-D | online | malware_download | 2026-07-16 |
hxxps://xevzora.cfd/offc/secured_stub.ps1 | online | malware_download | 2026-07-16 |
hxxps://xevzora.cfd/graced/secured_stub.ps1 | online | malware_download | 2026-07-16 |
hxxps://drive.google.com/uc?export=download&id=1Ilj9nZvE-p9PYMCjy-EgwCUWtlyPAdS8 | online | malware_download | 2026-07-16 |
hxxps://xevzora.cfd/blessed/secured_stub.ps1 | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["drive.google.com", "xevzora.cfd"]);
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(["drive.google.com", "xevzora.cfd"]);
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, including suggested filters and exclusions:
Automated Patch Management Scans
svc-sccm-agent) and restrict the rule trigger to exclude URLs containing paths like /api/updates, /catalog/definitions, or specific internal FQDNs used by the patch management infrastructure.Enterprise Single Sign-On (SSO) Token Refresh
Okta-IP-Ranges) and filter out URL paths containing /oauth2, /saml/metadata, or /token to prevent routine SSO maintenance from triggering alerts.Legacy Application Health Checks