This hunt targets adversaries leveraging known malicious infrastructure at IP 165.232.55.140 to deliver payloads via compromised URLs, as identified by URLhaus threat intelligence. Proactively hunting for this behavior in Azure Sentinel is critical to validate the scope of potential infections and ensure that existing network policies effectively block traffic from this high-severity source before it impacts broader organizational assets.
Threat: 165-232-55-140 Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://165.232.55.140/pty3 | online | malware_download | 2026-07-21 |
hxxp://165.232.55.140/pty4 | online | malware_download | 2026-07-21 |
hxxp://165.232.55.140/pty10 | online | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 165-232-55-140
let malicious_domains = dynamic(["165.232.55.140"]);
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(["165.232.55.140"]);
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: 165-232-55-140 Malicious URLs detection rule in an enterprise environment, along with recommended filters and exclusions.
Automated Patch Management Scans by WSUS/SCCM
165-232-55-140 to download metadata, patch manifests, or verify repository integrity. This traffic often originates from the central management server rather than end-user workstations and is a routine administrative task.Source IP belongs to the internal “Patch Management” subnet (e.g., 10.20.50.0/24) AND the Destination URL contains keywords like /update, /manifest, or /repository. Alternatively, whitelist the specific source server’s hostname in the SIEM correlation rule.Third-Party Cloud Backup Agent Heartbeats
165-232-55-140. This IP may host a cloud storage gateway or an API endpoint used for off-site verification. The traffic is generated by the vbrsvc (Veeam) or commserver service during nightly backup windows, not user browsing activity.Process Name matches known backup services (e.g., vbrservice.exe, cvsserver.exe) AND the Event Time falls within the defined maintenance window (e