CVE-2018-1000108: Reflected cross-site-scripting vulnerability in report URL of Jenkins CppNCSS Plugin
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.20451%
CWE
Published
5/14/2022
Updated
1/30/2024
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 |
---|---|---|---|
org.jenkins-ci.plugins:cppncss | maven | <= 1.1 | 1.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped output of reportName
and graphName
parameters in the Jelly template AbstractProjectAction/index.jelly
. While no code diffs are provided, the advisory explicitly identifies these parameters as improperly escaped. In Jenkins' Jelly templating system, direct ${parameter}
usage without h.escape()
or <j:out>
tags would appear as rendering functions in the template execution context. Runtime detection would observe these template rendering operations handling untrusted input.