CVE-2024-37152: Unauthenticated Access to sensitive settings in Argo CD
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.95336%
CWE
Published
6/6/2024
Updated
6/17/2024
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/argoproj/argo-cd/v2/server | go | >= 2.9.3, < 2.9.17 | 2.9.17 |
github.com/argoproj/argo-cd/v2/server | go | >= 2.10.0, < 2.10.12 | 2.10.12 |
github.com/argoproj/argo-cd/v2/server | go | >= 2.11.0, < 2.11.3 | 2.11.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The commit diff shows the PasswordPattern field was removed from the default response and gated behind a sessionmgr.LoggedIn(ctx)
check. This indicates the Get()
function in settings.go
was previously returning this sensitive field without authentication. The vulnerability documentation explicitly calls out this endpoint as being accessible without authentication, and the patch specifically modifies this function to add authentication checks for the PasswordPattern field. The function's role in handling the /api/v1/settings
endpoint and the direct correlation between the patch changes and vulnerability description provide high confidence in this assessment.