CVE-2018-1325: Cross-site Scripting in wicket-jquery-ui
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.5516%
CWE
Published
5/14/2022
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.googlecode.wicket-jquery-ui:wicket-jquery-ui-parent | maven | < 6.29.1 | 6.29.1 |
com.googlecode.wicket-jquery-ui:wicket-jquery-ui-parent | maven | >= 7.0.0, < 7.10.2 | 7.10.2 |
com.googlecode.wicket-jquery-ui:wicket-jquery-ui-parent | maven | >= 8.0.0-M1, < 8.0.0-M9.2 | 8.0.0-M9.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The XSS vulnerability occurs when WYSIWYG content containing JS is rendered without proper escaping. In Wicket architecture:
- onRender() is the primary method where components write to response
- WYSIWYG editor components would need to handle HTML content
- The vulnerability pattern matches unescaped output in rendering methods
- Companion getter methods providing raw content would enable the chain While exact patch details are unavailable, the described vulnerability pattern and Wicket's component lifecycle strongly suggest these methods would be involved in processing and outputting unescaped user content.