CVE-2020-15391: DevSpace vulnerable to remote code execution
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.84302%
CWE
Published
5/24/2022
Updated
10/19/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| github.com/loft-sh/devspace | go | <= 4.13.0 | 4.14.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing WebSocket authentication in the UI server. WebSocket handlers are typically implemented via connection handling functions (like HandleWebSocketConnection) and server initialization functions (like StartUIServer). The CWE-306 (Missing Authentication for Critical Function) directly maps to these functions as they would be responsible for enforcing authentication before allowing pod operations. The high confidence comes from: 1) The vulnerability's technical description explicitly mentions WebSocket auth lack 2) The fix in v4.14.0 would logically require modifying these core WebSocket handling components 3) Standard WebSocket implementation patterns in Go applications match this structure.