CVE-2022-27218: Personal tokens stored in plain text by Jenkins incapptic connect uploader Plugin
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.63238%
CWE
Published
3/16/2022
Updated
7/19/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.incapptic.plugins:incapptic-connect-uploader | maven | <= 1.15 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability explicitly involves unencrypted storage of tokens in job config.xml
files. Jenkins plugins typically serialize job configuration data (like tokens) using XStream or similar frameworks. The functions
responsible for defining/storing the token field (e.g., a setter or builder class) and the serialization/deserialization logic (configure
method) are the most likely candidates. While no direct code was provided, the pattern matches Jenkins plugin vulnerability paradigms (CWE-256/CWE-522
), and the plugin's lack of encryption in config.xml
implies insecure handling in these core configuration functions
.