This detection identifies adversary command and control (C2) activity by flagging network traffic to known malicious URLs curated by URLhaus, which are frequently utilized by threat actors for automated monitoring and data exfiltration. Proactively hunting for these indicators in Azure Sentinel is critical because early identification of C2 communication allows the SOC team to isolate compromised endpoints before lateral movement or persistent access is established within the environment.
Threat: c2-monitor-auto Total URLs: 4 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_43d8213197042487.exe | offline | malware_download | 2026-07-29 |
hxxp://91.92.242.236/files-129312398/files/file_372e453e8176fe84.exe | offline | malware_download | 2026-07-29 |
hxxp://91.92.242.236/files-129312398/files/file_56a54f3ee74d7c37.exe | offline | malware_download | 2026-07-29 |
hxxp://91.92.242.236/files-129312398/files/file_9da84e402c095df5.exe | offline | malware_download | 2026-07-29 |
// 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 suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Tool Health Checks
*.falcon.crowdstrike.com, *.mdm.microsoftonline.com) or exclude traffic originating from the EDR service accounts on the host level.Scenario: Scheduled Patch Management and Software Updates
*.update.microsoft.com, *.chocolatey.org) or filter out traffic during specific maintenance windows (e.g., 02:00–04:00 local time) where these scheduled jobs run.Scenario: Cloud Backup and Data Synchronization