This rule detects adversary command and control (C2) activity by identifying traffic to a set of seven auto-tagged malicious URLs known to facilitate remote access and data exfiltration. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints before attackers establish persistent communication channels that could lead to lateral movement or sensitive data theft.
Threat: c2-monitor-auto Total URLs: 7 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_14cf0ee8101600e7.exe | online | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_76fd7c41ddb193a5.exe | online | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_f5ae52914bf7056f.exe | online | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_48852a33f51921f1.exe | offline | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_776621fa56cb2ef8.exe | offline | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_cb2aa48501d6d3b6.exe | offline | malware_download | 2026-08-15 |
hxxp://91.92.242.236/files-129312398/files/file_64858a8342cb3c62.exe | offline | malware_download | 2026-08-15 |
// 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 specific false positive scenarios for the URLhaus: c2-monitor-auto Malicious URLs detection rule, along with suggested filters and exclusions:
Automated Security Scanner Traffic
10.50.20.0/24) or filter out URLs containing vendor-specific domains like *.tenable.com or *.qualys.com.Scheduled Cloud Backup and Sync Jobs
VeeamBackupService, AzureBackupAgent) and exclude traffic occurring during defined maintenance windows (e.g., 02:00–04:00 UTC).Endpoint Management & Patching Orchestration