CVE-2023-28675: Jenkins OctoPerf Load Testing Plugin missing permission check allows for unauthorized server connections
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.32518%
CWE
Published
4/2/2023
Updated
4/10/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkinsci.plugins:octoperf | maven | <= 4.5.2 | 4.5.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from HTTP endpoints handling Octoperf server connections without proper permission checks (CWE-284/CWE-862) and CSRF protections. Jenkins plugins typically implement such endpoints via servlet methods (e.g., doGet/doPost) in descriptor classes. The advisory explicitly states these endpoints allowed GET requests and lacked authorization checks. The functions above are standard candidates for connection testing logic in Jenkins plugins, and the fix in 4.5.3 (adding POST requirements and permissions) would directly target these methods. While the exact code isn't provided, the pattern matches Jenkins plugin architecture and the described vulnerability mechanics.