This detection identifies adversary command and control (C2) activity by monitoring traffic to a curated set of five auto-tagged malicious URLs known for facilitating remote access and data exfiltration. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly identify compromised endpoints engaging with newly observed C2 infrastructure before they can establish persistent footholds or initiate lateral movement within the network.
Threat: c2-monitor-auto Total URLs: 5 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_5b2a99625685db40.exe | offline | malware_download | 2026-07-30 |
hxxp://91.92.242.236/files-129312398/files/file_a9d864181ab71029.exe | offline | malware_download | 2026-07-30 |
hxxp://91.92.242.236/files-129312398/files/file_a8d74bd52287c2ac.exe | offline | malware_download | 2026-07-30 |
hxxp://91.92.242.236/files-129312398/files/file_c166f39d565559f4.exe | offline | malware_download | 2026-07-30 |
hxxp://91.92.242.236/files-129312398/files/file_966dd80e15fd05d1.exe | offline | malware_download | 2026-07-30 |
// 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 |
Scenario 1: Automated Endpoint Security Updates
13.x.x.x for CrowdStrike) or filter by the process name falcon.sys / MsMpEng.exe when the destination URL contains known update domains like *.crowdstrike.com or *.microsoft.com.Scenario 2: Scheduled Backup and Cloud Synchronization Jobs
Veeam.Backup.Service.exe) connecting to known cloud storage endpoints, specifically filtering out URLs containing paths like /api/v1/upload or /blob.Scenario 3: IT Admin Remote Management and Patching