CVE-2023-46655:
Jenkins CloudBees CD Plugin vulnerable to arbitrary file read
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.50908%
CWE
Published
10/25/2023
Updated
11/11/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:electricflow | maven | < 1.1.33 | 1.1.33 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper symlink handling during file collection for publishing. The removed getFilesFromDirectory()
lacked symlink checks, while the original getFilesFromDirectoryWildcardDirScanner()
lacked the toRealPath()
containment check added in the patch. Both allowed resolving symlinks outside the temp directory. The ElectricFlowClient.uploadArtifact()
's file processing was modified to use the safer endpoint-specific logic, but the root vulnerability resided in FileHelper
's file collection methods.