VYPR
Moderate severityNVD Advisory· Published Mar 13, 2024· Updated Apr 15, 2025

Users with `create` but not `override` privileges can perform local sync in argo-cd

CVE-2023-50726

Description

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. "Local sync" is an Argo CD feature that allows developers to temporarily override an Application's manifests with locally-defined manifests. Use of the feature should generally be limited to highly-trusted users, since it allows the user to bypass any merge protections in git. An improper validation bug allows users who have create privileges but not override privileges to sync local manifests on app creation. All other restrictions, including AppProject restrictions are still enforced. The only restriction which is not enforced is that the manifests come from some approved git/Helm/OCI source. The bug was introduced in 1.2.0-rc1 when the local manifest sync feature was added. The bug has been patched in Argo CD versions 2.10.3, 2.9.8, and 2.8.12. Users are advised to upgrade. Users unable to upgrade may mitigate the risk of branch protection bypass by removing applications, create RBAC access. The only way to eliminate the issue without removing RBAC access is to upgrade to a patched version.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
github.com/argoproj/argo-cdGo
>= 1.2.0-rc1, <= 1.8.7
github.com/argoproj/argo-cd/v2Go
>= 2.9.0, < 2.9.82.9.8
github.com/argoproj/argo-cd/v2Go
>= 2.10.0, < 2.10.32.10.3
github.com/argoproj/argo-cd/v2Go
>= 2.0.0-rc3, < 2.8.122.8.12

Affected products

1

Patches

1
3b8f673f06c2

Merge pull request from GHSA-g623-jcgg-mhmm

https://github.com/argoproj/argo-cdMichael CrenshawMar 13, 2024via ghsa
2 files changed · +30 0
  • server/application/application.go+9 0 modified
    @@ -333,6 +333,15 @@ func (s *Server) Create(ctx context.Context, q *application.ApplicationCreateReq
     		return nil, security.NamespaceNotPermittedError(appNs)
     	}
     
    +	// Don't let the app creator set the operation explicitly. Those requests should always go through the Sync API.
    +	if a.Operation != nil {
    +		log.WithFields(log.Fields{
    +			"application":            a.Name,
    +			argocommon.SecurityField: argocommon.SecurityLow,
    +		}).Warn("User attempted to set operation on application creation. This could have allowed them to bypass branch protection rules by setting manifests directly. Ignoring the set operation.")
    +		a.Operation = nil
    +	}
    +
     	created, err := s.appclientset.ArgoprojV1alpha1().Applications(appNs).Create(ctx, a, metav1.CreateOptions{})
     	if err == nil {
     		s.logAppEvent(created, ctx, argo.EventReasonResourceCreated, "created application")
    
  • server/application/application_test.go+21 0 modified
    @@ -1439,6 +1439,27 @@ func TestCreateAppWithDestName(t *testing.T) {
     	assert.Equal(t, app.Spec.Destination.Server, "https://cluster-api.example.com")
     }
     
    +// TestCreateAppWithOperation tests that an application created with an operation is created with the operation removed.
    +// Avoids regressions of https://github.com/argoproj/argo-cd/security/advisories/GHSA-g623-jcgg-mhmm
    +func TestCreateAppWithOperation(t *testing.T) {
    +	appServer := newTestAppServer(t)
    +	testApp := newTestAppWithDestName()
    +	testApp.Operation = &appsv1.Operation{
    +		Sync: &appsv1.SyncOperation{
    +			Manifests: []string{
    +				"test",
    +			},
    +		},
    +	}
    +	createReq := application.ApplicationCreateRequest{
    +		Application: testApp,
    +	}
    +	app, err := appServer.Create(context.Background(), &createReq)
    +	require.NoError(t, err)
    +	require.NotNil(t, app)
    +	assert.Nil(t, app.Operation)
    +}
    +
     func TestUpdateApp(t *testing.T) {
     	testApp := newTestApp()
     	appServer := newTestAppServer(t, testApp)
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.