This detection rule identifies adversary command-and-control (C2) activity by monitoring network traffic against a curated list of known malicious URLs flagged by URLhaus. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the attacker establishes persistent communication channels.
Threat: c2-monitor-auto Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_9a5c49da1d9d1767.exe | offline | malware_download | 2026-08-21 |
hxxp://91.92.242.236/files-129312398/files/file_1319bd61568f04ed.exe | offline | malware_download | 2026-08-21 |
// 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 and corresponding filters for the URLhaus: c2-monitor-auto Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Scanner Traffic
10.50.20.0/24 for Tenable) and filter out URLs containing specific vendor domains known for high-frequency polling, such as *.tenable.com, *.qualys.com, or *.rapid7.com.Scenario: Scheduled Software Update Agents
01:00–05:00 local time). Additionally, exclude URLs matching known update endpoints like *.update.microsoft.com, *.adobe.com, and *.java.com.Scenario: Cloud Backup and Synchronization Services