This detection identifies adversary activity involving specific malicious URLs tagged as 9d2ca3 from URLhaus, which often indicate active phishing campaigns or command-and-control communications. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints and prevent lateral movement before the threat escalates into a broader incident.
Threat: 9d2ca3 Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_aa7f06411e2b4e88.exe | offline | malware_download | 2026-07-30 |
hxxp://91.92.242.236/files-129312398/files/file_851477f5539ff9f4.exe | online | malware_download | 2026-07-30 |
// 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 and corresponding exclusion strategies for the URLhaus: 9d2ca3 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Scanner Crawls
Source Hostname or User-Agent string matching the scanner’s signature (e.g., exclude traffic where user_agent contains “Tenable” or “Qualys”). Alternatively, whitelist the IP ranges of the internal scanning appliances.Scenario: Scheduled Cloud Backup and Sync Jobs
svc-backup-agent) or filter based on the destination domain if it matches known backup provider domains (e.g., *.veeam.com, *.onedrive.live).Scenario: Patch Management and Software Update Agents