CVE-2018-1000607: Arbitrary file write vulnerability in Jenkins Fortify CloudScan Plugin
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.18411%
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:L/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:fortify-cloudscan-jenkins-plugin | maven | <= 1.5.1 | 1.5.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure ZIP
entry extraction in ArchiveUtil.java
. The advisory explicitly states the patched version added validation
for relative paths, indicating the extractEntry()
method (or similar) previously wrote files without verifying if normalized paths remained within the target directory. This matches classic 'zip slip' vulnerability patterns where ZipEntry
names are used directly when creating output files.