This detection identifies adversary command and control (C2) activity by flagging network traffic to URLs dynamically classified as malicious by the URLhaus threat intelligence feed. Proactively hunting for these indicators in Azure Sentinel is critical because C2 channels are often used early in an attack lifecycle to establish persistent access, allowing the SOC team to intercept potential data exfiltration or lateral movement before full compromise occurs.
Threat: c2-monitor-auto Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_78de74be0064d015.exe | offline | malware_download | 2026-07-31 |
hxxp://91.92.242.236/files-129312398/files/file_6f3988250b2377ba.exe | offline | malware_download | 2026-07-31 |
// 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 in an enterprise environment, along with suggested filters or exclusions:
Scenario: Automated Threat Intelligence Feed Updates via SIEM Connector
urlhaus-api.checkpoint.com or similar endpoints. These API calls often contain dynamic query parameters that match the “c2-monitor-auto” signature pattern but are purely administrative data ingestion tasks.10.50.10.0/24) AND the Destination URL contains the path segment /api/v1/feed. Alternatively, exclude any HTTP GET requests originating from the specific service account used by the SIEM connector (e.g., svc-siem-updater).Scenario: Endpoint Protection Cloud Communication for Policy Sync
falcon-sensor.exe, SentinelOneAgent.exe, or cbagent.exe connecting to known vendor domains (e.g., `*.crowdstrike.com