CVE-2019-20525:
Ignite Realtime Openfire allows Cross-site Scripting
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.63687%
CWE
Published
5/24/2022
Updated
2/2/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.igniterealtime.openfire:parent | maven | < 4.4.2 | 4.4.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped rendering of HTTP parameters in setup-datasource-standard.jsp
. The patch adds JSTL escaping (fn:escapeXml
) to all user-controlled input fields. In JSP architecture, the _jspService
method of the compiled servlet handles parameter rendering. The vulnerable version used scriptlets (<%= ... %>
) without escaping, while the patched version uses safe output encoding. This function would appear in runtime traces during parameter processing and response generation.