This hunt targets adversary behavior involving the execution of malicious payloads from known threat intelligence feeds, specifically identifying traffic to the URLhaus source IP 45-88-186-14 which indicates active malware distribution. A proactive search in Azure Sentinel is critical to rapidly isolate compromised endpoints and prevent lateral movement before the associated malware can establish persistence or exfiltrate sensitive data.
Threat: 45-88-186-14 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://45.88.186.14/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-06 |
hxxps://45.88.186.14/bin/support.client.exe | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 45-88-186-14
let malicious_domains = dynamic(["45.88.186.14"]);
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(["45.88.186.14"]);
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 3-5 specific false positive scenarios for the URLhaus: 45-88-186-14 Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scanner Traffic
Source_IP IN (10.20.5.1, 10.20.5.2) AND Host_Name CONTAINS "Tenable-Scanner"Scenario: Scheduled Patch Management & Update Checks
Process_Name IN ("ccmsetup.exe", "IvantiAgent.exe") AND (Time BETWEEN 02:00 AND 04:00)Scenario: Cloud Backup & Synchronization Agents