CVE-2023-50726: Users with `create` but not `override` privileges can perform local sync
6.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.05041%
CWE
Published
3/15/2024
Updated
3/15/2024
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:L/A:L
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| github.com/argoproj/argo-cd | go | >= 1.2.0-rc1, <= 1.8.7 | |
| github.com/argoproj/argo-cd/v2 | go | >= 2.9.0, < 2.9.8 | 2.9.8 |
| github.com/argoproj/argo-cd/v2 | go | >= 2.10.0, < 2.10.3 | 2.10.3 |
| github.com/argoproj/argo-cd/v2 | go | >= 2.0.0-rc3, < 2.8.12 | 2.8.12 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper validation in the application creation flow. The commit diff shows a security patch adding validation to strip the Operation field during creation, with a warning about bypassing branch protection. The original vulnerable code path allowed users to set manifests via the Operation.Sync.Manifests field during application creation without requiring 'override' privileges. The Server.Create function was the entry point for this insecure operation validation.