This hunt targets adversary command and control (C2) activities where compromised hosts communicate with known malicious infrastructure identified by URLhaus’s automated monitoring. Proactively hunting these specific C2 indicators in Azure Sentinel is critical to rapidly detect early-stage lateral movement or data exfiltration before they escalate into full-scale incidents.
Threat: c2-monitor-auto Total URLs: 7 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_150a4c9b22b37ebe.ps1 | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_6d9d8fc309228ece.exe | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_a3af4669c51aa82d.exe | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_3e7393fd5c99d55c.exe | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_447e39c0c96b3cb5.exe | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_1054d1bff4b2c953.exe | offline | malware_download | 2026-07-08 |
hxxp://91.92.242.236/files-129312398/files/file_93d3d417921c3a69.exe | offline | malware_download | 2026-07-08 |
// 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 four specific false positive scenarios for the URLhaus: c2-monitor-auto Malicious URLs rule in an enterprise environment, along with targeted mitigation strategies:
Automated Software Update Checks by Patch Management Tools
update.microsoft.com, download.ivanti.com) that may have been recently flagged by URLhaus due to shared IP ranges with active C2 campaigns, even though the specific endpoints accessed are benign.svc_sccm_agent, Ivanti_Service) accessing URLs containing keywords like /update, /catalog, or /manifest within the first 15 minutes of a scheduled maintenance window.Scheduled Cloud Backup and Synchronization Jobs
s3.amazonaws.com, blob.core.windows.net) which URLhaus may tag as suspicious due to the high volume of traffic and shared infrastructure with known C2 actors, despite the traffic being legitimate data transfer.vbr_backup_svc, aws-data-sync-agent) where the destination URL path contains standard API endpoints like /api/v1/sync, /bucket/upload, or specific S3 bucket prefixes defined in the organization’s asset inventory.Compliance and Security Scanner Heartbeats