This hunt targets adversary command and control (C2) activity by identifying traffic to specific malicious URLs flagged by URLhaus as automated C2 monitoring endpoints. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of such C2 channels can reveal active lateral movement or data exfiltration before the malware establishes a persistent foothold within the network.
Threat: c2-monitor-auto Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_84ca8e9dc36d005a.exe | offline | malware_download | 2026-07-13 |
hxxp://91.92.242.236/files-129312398/files/file_77b5757ae75eb20b.exe | online | malware_download | 2026-07-13 |
// 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 detection rule in an enterprise environment, along with suggested filters and exclusions:
Automated Patch Management Scans
Microsoft.Update.Service.exe, JamfAgent.exe) and whitelist the known vendor update domains (e.g., *.microsoft.com, updates.ivanti.com).IT Admin Manual Troubleshooting via Browser
c2-monitor-auto due to its high-volume, automated traffic patterns, the rule will flag these legitimate administrative browsing sessions.*.statuspage.io, /health-check endpoints).Scheduled Log Aggregation and Backup Jobs