This detection rule identifies adversary activities involving known malicious ASCII-formatted URLs that may indicate command-and-control communications or phishing attempts targeting user endpoints. Proactively hunting for these specific URL patterns in Azure Sentinel is critical to rapidly isolate compromised assets and prevent lateral movement before attackers can establish a persistent foothold within the network.
Threat: ascii Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://drive.google.com/uc?export=download&id=1hmv4jE4yoqoxD1AY-GLVrKhWLDFYpHsl | online | malware_download | 2026-07-24 |
hxxps://drive.google.com/uc?export=download&id=1Rhcgg7EaQrUIkjLvarbmj1TCBlLac2kS | online | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["drive.google.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(["drive.google.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 4 specific false positive scenarios for the URLhaus: ascii Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Automated Patch Management Scans
System Center Configuration Manager (process: WmiPrvSE.exe) or specific patch management service accounts where the destination URL contains known update repository domains (e.g., *.microsoft.com, *.softwareupdate.apple.com).Scheduled Backup and Archive Jobs
Veeam.Backup.Service.exe or commvault.cmd occurring between 02:00 and 06:00 local time, provided the destination URL belongs to known cloud storage providers (e.g., AWS S3, Azure Blob) rather than external public web domains.Internal Documentation and Knowledge Base Crawling