CVE-2020-8828:
Argo CD Insecure default administrative password
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.61694%
CWE
Published
7/26/2021
Updated
8/7/2024
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/argoproj/argo-cd | go | <= 1.8.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability explicitly states the default admin password was set to the argocd-server
pod name. While no exact function name
is provided in the references, the core issue stems from the password initialization logic that retrieves the pod name (via Kubernetes' HOSTNAME
environment variable) and uses it as the default credential. This matches CWE-1188
(insecure default initialization) and aligns with the documented mitigation requiring password changes. The confidence is high because the attack vector directly maps to this design flaw, even without seeing the exact code implementation.