CVE-2020-2236
Description
Jenkins Yet Another Build Visualizer Plugin up to 1.11 fails to escape tooltip content, leading to stored XSS exploitable by users with Run/Update permission.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Jenkins Yet Another Build Visualizer Plugin up to 1.11 fails to escape tooltip content, leading to stored XSS exploitable by users with Run/Update permission.
Jenkins Yet Another Build Visualizer Plugin versions 1.11 and earlier do not properly escape tooltip content displayed in the build visualization interface [1]. This failure to sanitize user-controllable input results in a stored cross-site scripting (XSS) vulnerability [2]. The root cause is the lack of output encoding before tooltip values are rendered in the browser, allowing injected scripts to persist and execute in the context of other users' sessions.
To exploit this vulnerability, an attacker must have Run/Update (i.e., Job/Configure) permission on a Jenkins job [1]. The attacker can inject malicious JavaScript into a tooltip value—for example, by setting the display name or other job metadata that gets used as tooltip content [2]. When other users (including administrators) view the build flow graph, the crafted tooltip triggers the script in their browsers. No additional user interaction beyond viewing the affected page is required.
Successful exploitation leads to stored XSS, enabling the attacker to execute arbitrary JavaScript in the Jenkins UI on behalf of victims [2]. This can be leveraged to steal session cookies, manipulate Jenkins configuration, or perform actions as the victim user, depending on their permissions. The vulnerability has been assigned a CVSS v3.1 base score of 8.0 (High) by the Jenkins security team [2].
The issue is resolved in Yet Another Build Visualizer Plugin version 1.12 [2][3]. Users are advised to upgrade to this version immediately. For Jenkins core installations, the advisory also notes that similar tooltip escaping issues were fixed in Jenkins 2.252 and LTS 2.235.4 [2]. No workaround is available beyond upgrading, as the plugin's core functionality relies on rendering tooltip content without proper sanitization in earlier releases.
AI Insight generated on May 21, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
com.axis.system.jenkins.plugins.downstream:yet-another-build-visualizerMaven | < 1.12 | 1.12 |
Affected products
2- ghsa-coordsRange: < 1.12
- Range: unspecified
Patches
10e6db61ef66fFix for SECURITY-1940
1 file changed · +2 −1
src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/buildFlow.groovy+2 −1 modified@@ -4,6 +4,7 @@ import com.axis.system.jenkins.plugins.downstream.cache.BuildCache import com.axis.system.jenkins.plugins.downstream.tree.Matrix import com.axis.system.jenkins.plugins.downstream.yabv.BuildFlowOptions import com.axis.system.jenkins.plugins.downstream.yabv.NameNormalizer +import hudson.Util import hudson.model.Item import hudson.model.Job import hudson.model.Queue @@ -81,7 +82,7 @@ private void drawBuildInfo(CssGridCoordinates gridCoords, Run build, NameNormali a(href: "${rootURL}/${currentBuild.url}") { def currentColor = currentBuild.iconColor div(class: "build-flow-build-history-dot build-info ${currentColor.name().replace('_', ' ')}", - tooltip: currentBuild.displayName) + tooltip: Util.xmlEscape(currentBuild.displayName)) } currentBuild = currentBuild.previousBuild }
Vulnerability mechanics
Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
5- github.com/advisories/GHSA-3mwj-7vmq-w43pghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2020-2236ghsaADVISORY
- www.openwall.com/lists/oss-security/2020/08/12/4ghsamailing-listx_refsource_MLISTWEB
- github.com/jenkinsci/yet-another-build-visualizer-plugin/commit/0e6db61ef66f4ed4f2e580240e364f195b00ee6eghsaWEB
- jenkins.io/security/advisory/2020-08-12/ghsax_refsource_CONFIRMWEB
News mentions
1- Jenkins Security Advisory 2020-08-12Jenkins Security Advisories · Aug 12, 2020