This detection identifies adversaries leveraging known malicious command and control (C2) infrastructure by monitoring traffic against the real-time URLhaus threat intelligence feed to intercept active threats before they compromise endpoints. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected resources and prevent lateral movement, as automated C2 communications often serve as the initial foothold for broader ransomware or data exfiltration campaigns.
Threat: c2-monitor-auto Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_b41995cf38e90365.exe | offline | malware_download | 2026-08-26 |
hxxp://91.92.242.236/files-129312398/files/file_8cbaad0bfeb607d1.exe | offline | malware_download | 2026-08-26 |
// 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 5 specific false positive scenarios for the URLhaus: c2-monitor-auto Malicious URLs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates
svc-av-updater) accessing known vendor domains such as *.crowdstrike.com, *.microsoft.com, and *.eset.com.Scenario: Automated CI/CD Pipeline Artifact Downloads
java.exe running as jenkins-agent, dotnet.exe for Azure Pipelines) connecting to internal artifact registries or specific cloud storage endpoints like s3.amazonaws.com and *.azureedge.net.Scenario: Enterprise Search Engine Indexing Crawls