CVE-2024-47529:
OpenC3 stores passwords in clear text (`GHSL-2024-129`)
5.9
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.10461%
CWE
Published
10/2/2024
Updated
11/13/2024
KEV Status
No
Technology
Ruby
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
openc3 | rubygems | < 5.19.0 | 5.19.0 |
@openc3/tool-common | npm | < 5.19.0 | 5.19.0 |
openc3 | pip | >= 0, < 5.19.0 | 5.19.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The primary vulnerability stems from the Login.vue component's login function storing raw passwords in localStorage. The pre-patch code showed direct assignment of 'this.password' to localStorage.openc3Token. The AuthModel.verify function's handling of service password comparison in cleartext and lack of proper password hashing (SHA2 without salt) created secondary exposure risks. The commit diff shows these were replaced with session token handling and proper credential management.