CVE-2022-36915: Jenkins Android Signing Plugin allows attackers to check whether attacker-specified file patterns match workspace contents
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.23415%
CWE
Published
7/28/2022
Updated
1/3/2024
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 |
---|---|---|---|
org.jenkins-ci.plugins:android-signing | maven | <= 2.2.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from a missing Item/Workspace permission check in a form validation
handler. The GitHub commit diff shows the fix adds 'project.checkPermission(Item.WORKSPACE)' in doCheckApksToSign
method, confirming this was the vulnerable entrypoint. This matches the CWE-862 (Missing Authorization) pattern and the advisory's description of attackers exploiting form validation
without workspace permissions.