This hunt targets adversary behavior where compromised hosts establish command and control (C2) communications via known malicious URLs identified by URLhaus’s automated monitoring. Proactively hunting for these specific indicators in Azure Sentinel is critical to rapidly detect early-stage infections and isolate affected assets before lateral movement or data exfiltration 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_41020e659f8c1c0c.exe | offline | malware_download | 2026-06-30 |
hxxp://91.92.242.236/files-129312398/files/file_78bc6ad609e5b3ec.exe | offline | malware_download | 2026-06-30 |
// 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 or exclusions:
Endpoint Protection Self-Update and Telemetry
*.crowdstrike.com, *.microsoft.com) as “c2-monitor-auto” if they exhibit behavior patterns similar to command-and-control traffic due to their persistent polling mechanisms.update.*.com, telemetry.*.net) within the detection logic, or whitelist these domains in the SIEM correlation engine if they are confirmed as trusted internal infrastructure.Scheduled Software Patching via WSUS/SCCM
NT AUTHORITY\SYSTEM or `SCCM