This hypothesis posits that adversaries are actively leveraging known malicious infrastructure at IP 185-69-122-37 to exfiltrate data or deliver payloads via compromised web traffic within the organization’s network. Proactive hunting in Azure Sentinel is critical to identify early-stage lateral movement and validate whether these specific URLs are being accessed by unexpected user accounts or endpoints, thereby preventing potential compromise before automated alerts trigger.
Threat: 185-69-122-37 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://185.69.122.37/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-07-17 |
hxxps://185.69.122.37/bin/support.client.exe | offline | malware_download | 2026-07-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 185-69-122-37
let malicious_domains = dynamic(["185.69.122.37"]);
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(["185.69.122.37"]);
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: 185-69-122-37 Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment.
Scenario: Automated Patch Management Scans
185-69-122-37 that has been flagged by URLhaus due to historical behavior, even though the current content is benign and essential for patching.ccmexec.exe, IvantiAgentService.exe) combined with a specific User Account (e.g., DOMAIN\svc-patch-agent). Additionally, filter by HTTP Method to only exclude GET requests originating from these service accounts during business hours.Scenario: Third-Party Cloud Backup Verification
185-69-122-37 is part of a cloud provider’s edge network used for off-site validation, these routine connectivity pings trigger the rule despite being legitimate administrative traffic.443 (HTTPS) and the Source Hostname matches known backup server naming conventions (e.g., BKP-PROD-*). Implement a time-based filter to suppress alerts for this rule between 01