CVE-2017-3165: Cross-site Scripting In Apache Brooklyn
5.4
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.5022%
CWE
Published
5/17/2022
Updated
1/30/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.brooklyn:brooklyn | maven | < 0.10.0 | 0.10.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped entity names in server-generated content. The primary indicators are:
- The exploit example shows XSS via entity name injection
- The patch added 'correct escaping' per the advisory
- REST API endpoints (EntityResource) and UI rendering components (EntityRenderer) are the most likely locations for unescaped output of user-controlled entity names
- High confidence in EntityResource.get as REST endpoints are explicitly mentioned in the CVE description
- Medium confidence in EntityRenderer due to typical UI rendering patterns, though without patch details