This hunt targets adversary behavior involving the consumption of known malicious web resources identified by URLhaus signature 9d2ca3, which often indicates initial phishing or drive-by download attacks. Proactively hunting for these specific URLs in Azure Sentinel is critical to rapidly identify compromised endpoints and block lateral movement before attackers can establish persistence within the network.
Threat: 9d2ca3 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_2f177fcc719bb6e5.exe | online | malware_download | 2026-07-16 |
hxxp://91.92.242.236/files-129312398/files/file_21835aedbc8ad4e1.exe | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 9d2ca3
let malicious_domains = dynamic(["91.92.242.236"]);
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(["91.92.242.236"]);
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: 9d2ca3 Malicious URLs detection rule in an enterprise environment, including suggested filters and exclusions:
Automated Software Update Scanners
9d2ca3 tag even though the traffic is benign update checks.ccmexec.exe, JamfProAgent.exe) combined with a whitelist of specific Destination Hostnames known to be part of the vendor’s legitimate update infrastructure.Scheduled Cloud Backup and Sync Jobs
9d2ca3 despite the data transfer being secure and authorized.svc-backup-agent) during defined maintenance windows, or filter by User Agent strings unique to these backup applications (e.g., containing “VeeamAgent” or “OneDriveSync”).IT Admin Manual Research and Troubleshooting