This detection identifies adversary command and control (C2) activities by monitoring for newly identified malicious URLs from the URLhaus threat intelligence feed, which often signal early-stage malware infections or active data exfiltration attempts. Proactive hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints before adversaries can establish persistent access or pivot deeper into the network infrastructure.
Threat: c2-monitor-auto Total URLs: 7 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_38c8a1eeb2a6a97e.exe | online | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_dcd6503e21b6e736.exe | offline | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_e8a7336a520decb5.exe | offline | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_f309f8496f916deb.exe | online | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_c4864984d6828180.exe | offline | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_c9d9a4d389cc4c0e.exe | offline | malware_download | 2026-07-23 |
hxxp://91.92.242.236/files-129312398/files/file_6503c668037248da.exe | offline | malware_download | 2026-07-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 4 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: Automated Security Tool Updates
Security-Infrastructure-Servers) or filter by specific destination URLs containing /api/v1/ in the path, ensuring only internal security appliances trigger this logic.Scenario: Scheduled Cloud Backup and Sync Jobs
*.office365.com, *.veeam.com) and restrict the alert to business hours or specific time windows defined in the scheduled job configuration.Scenario: Developer CI/CD Pipeline Artifacts