This rule identifies the presence of known malicious URLs from the URLhaus database that are obfuscated or encrypted, indicating an adversary is likely using web-based payloads to establish initial access or exfiltrate data. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect stealthy web traffic patterns that may bypass standard signature-based detections, enabling early intervention against targeted phishing or drive-by download campaigns.
Threat: encrypted Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://drive.google.com/uc?export=download&id=1vGK7VwXP5gMMSm47LY8cn6Jw4bf8tFOp | online | malware_download | 2026-09-09 |
hxxps://drive.google.com/uc?export=download&id=1KH3sfRGqojZzIETO2SQVXeZfnrv9gPoi | online | malware_download | 2026-09-09 |
hxxps://drive.google.com/uc?export=download&id=18Sk2_goSIJdTQeofy4br2IZZSSWUj6q2 | online | malware_download | 2026-09-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: encrypted
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 |
Scenario: A DevOps engineer uses curl or wget via a CI/CD pipeline (e.g., GitHub Actions, Jenkins) to fetch a configuration file or build artifact from a staging environment that is temporarily hosted on a URL flagged by URLhaus due to a recent, low-fidelity report or a shared infrastructure IP.
agent.exe, jenkins-slave.jar, docker-cli) or where the command line contains specific flags like -o (output) or -L (follow redirects) combined with internal domain suffixes (e.g., .internal, .corp) or known staging subdomains.Scenario: A security team or blue team member performs a controlled test by visiting a known malicious URL from URLhaus in a sandboxed browser or using a tool like nmap or masscan to verify network egress rules, triggering the detection on the endpoint or proxy logs.
SEC-BlueTeam, SOC-Testers) or where the process is a known network scanning tool (e.g., nmap.exe, masscan.exe, zmap.exe).Scenario: An automated backup or sync job (e.g., Veeam, Commvault, or a custom PowerShell script) retrieves metadata or a manifest file from a cloud storage endpoint that has been recently added to URLhaus due to a false positive or a compromised shared bucket, causing the URL to match the threat feed.
VeeamBackup.exe, commvaultclient.exe) or scheduled tasks with names containing keywords like Backup, `