This rule detects adversaries leveraging automated feeds from URLhaus to identify and block command-and-control (C2) traffic associated with known malicious URLs. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints before they establish persistent communication with external threat actors, thereby reducing the window for lateral movement and data exfiltration.
Threat: c2-monitor-auto Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_666aae9f729836c3.exe | offline | malware_download | 2026-08-01 |
hxxp://91.92.242.236/files-129312398/files/file_5abf1a9afc412207.exe | offline | malware_download | 2026-08-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: c2-monitor-auto
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: c2-monitor-auto Malicious URLs rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Security Tool Telemetry & Updates
process_name matches *FalconSensor.exe, *MsMpEng.exe, or *cbcmd.exe. Alternatively, whitelist specific URLhaus API endpoints (e.g., api.urlhaus.info) in the detection logic.Scenario: Scheduled Software Deployment & Patching Jobs
02:00 - 06:00 UTC). Additionally, add an exclusion filter for traffic originating from specific Service Accounts (e.g., DOMAIN\SCCM-Deploy-SVC) or destination domains belonging to major software vendors (e.g., *.microsoft.com, *.jamfsoftware.com).Scenario: Cloud Backup and Synchronization Services