This hunt detects adversary command and control (C2) activity by identifying traffic to known malicious URLs flagged by URLhaus as part of an automated monitoring feed. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify compromised hosts communicating with active C2 infrastructure, thereby reducing dwell time before lateral movement or data exfiltration occurs.
Threat: c2-monitor-auto Total URLs: 6 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_a91ac6d4a7389993.exe | online | malware_download | 2026-08-23 |
hxxp://91.92.242.236/files-129312398/files/file_dccbce95dc080534.exe | offline | malware_download | 2026-08-23 |
hxxp://91.92.242.236/files-129312398/files/file_aa509ab4dee7634e.exe | offline | malware_download | 2026-08-23 |
hxxp://91.92.242.236/files-129312398/files/file_273b8dff51cd4015.exe | offline | malware_download | 2026-08-23 |
hxxp://91.92.242.236/files-129312398/files/file_adad2e4ddbc81c70.exe | offline | malware_download | 2026-08-23 |
hxxp://91.92.242.236/files-129312398/files/file_5513ab74e8b43371.exe | offline | malware_download | 2026-08-23 |
// 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 rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Vulnerability Scanning by Security Tools
Source Host (e.g., Tenable-Scanner-01, Qualys-Central) or filter out traffic where the User-Agent string contains specific vendor identifiers (e.g., *Nessus*, *Qualys*).Scenario: Scheduled Backup and Synchronization Jobs
svc-veeam-backup, svc-sharepoint-sync) running on dedicated backup servers. Alternatively, filter based on the Destination Port if these tools use non-standard ports distinct from typical web browsing (e.g., port 8443 or 9001).Scenario: Software Update and Patch Management Cycles