CVE-2022-28732: Apache JSPWiki XSS due to crafted request in WeblogPlugin
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.97184%
CWE
Published
8/5/2022
Updated
1/31/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.jspwiki:jspwiki-main | maven | < 2.11.3 | 2.11.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper input sanitization in the WeblogPlugin, as indicated by the CWE-79 classification. XSS vulnerabilities typically occur when untrusted input is reflected in output without proper encoding. Given that the vulnerability is specifically in WeblogPlugin and fixed in 2.11.3
, the most probable location is the plugin's main execution method execute()
where request parameters are processed. This aligns with JSPWiki plugin architecture where plugins implement execute()
to handle functionality, and insufficient output encoding in this method would directly lead to XSS.