CVE-2022-23524: Helm vulnerable to denial of service through string value parsing
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.06447%
CWE
Published
12/14/2022
Updated
2/21/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| helm.sh/helm/v3 | go | <= 3.10.2 | 3.10.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from uncontrolled recursion in string parsing functions. The commit adds MaxNestedNameLevel checks to the key() and listItem() functions, which were previously missing. The entry points (Parse, ParseInto, etc.) trigger these recursive functions. The Go vulnerability report explicitly lists 8 strvals functions as affected, and the patch modifies the call chain starting from these entry points through key()/listItem() recursion paths.