CVE-2020-2206:
Reflected XSS vulnerability in Jenkins VncRecorder Plugin
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.52482%
CWE
Published
5/24/2022
Updated
10/26/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.jenkins-ci.plugins:vncrecorder | maven | <= 1.25 | 1.35 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability explicitly references the 'checkVncServ' form validation endpoint as the source of unescaped output. In Jenkins plugin development, form validation methods typically follow the 'doCheck[ParameterName]' naming convention (e.g., doCheckVncServ). The lack of output encoding in this method would directly enable the reflected XSS by returning user-supplied input without proper sanitization. The high confidence comes from the direct correlation between the documented vulnerability pattern and standard Jenkins plugin development practices.