CVE-2026-19130: Provider-credential-controller: provider-credential-controller: cross-namespace credential propagation via attacker-controlled copiedfrom labels bypasses authorization
A flaw was found in the provider-credential-controller component of multicluster-engine (MCE). An attacker with specific permissions on the hub cluster, and knowledge of a prior credential value, could exploit an authorization bypass vulnerability. By manipulating copiedFrom labels, the attacker could intercept newly rotated provider credentials, leading to unauthorized information disclosure. This allows access to sensitive credentials that should otherwise be protected.
Other sources
A flaw was found in the provider-credential-controller component of multicluster-engine (MCE). The controller propagates rotated provider credentials to child Secrets across namespaces based on copiedFrom labels. The only authorization check is a SHA-256 hash comparison between the child Secret's data and the source Secret's prior (pre-rotation) data. An attacker with secrets:create permission in any namespace on the hub cluster can create a child Secret with matching copiedFrom labels pointing at a victim's source Secret. If the attacker knows the byte-exact prior credential value, the controller will overwrite their child Secret with the newly rotated credential on the next rotation cycle. This allows the attacker to intercept rotated provider credentials they should not have access to.
The vulnerability exists in controllers/providercredential/provider-credential-controller.go in the reconcileProviderCredentials function (lines 118-179). The controller performs a cluster-wide List of all Secrets matching copiedFrom labels (line 119-122) and uses only the hash gate (line 161) to authorize the credential push -- no namespace allowlist, ownerReference, or SubjectAccessReview is performed.
CWE-639: Authorization Bypass Through User-Controlled Key (the copiedFrom labels are the user-controlled authorization key). Also CWE-284: Improper Access Control.
Preconditions: (1) Attacker has secrets:create in any namespace on the hub. (2) Attacker possesses the byte-exact prior plaintext of the source provider Secret. (3) Hub admin performs a credential rotation on the source Secret.
Discovered via Red Hat ProdSec AI-assisted security assessment (Project Glasswing).
— Red Hat
Affected Software
Event History
Frequently Asked Questions
What is CVE-2026-19130?
CVE-2026-19130 is a vulnerability in the provider-credential-controller component of multicluster-engine that allows attackers to bypass authorization through manipulated copiedFrom labels.
What is the severity of CVE-2026-19130?
The severity of CVE-2026-19130 is classified as medium with a base score of 5.8.
How can I fix CVE-2026-19130?
To mitigate CVE-2026-19130, ensure that appropriate permissions and access controls are implemented on the hub cluster and avoid using manipulated copiedFrom labels.
Who is affected by CVE-2026-19130?
Users of the multicluster-engine (MCE) who have implemented the provider-credential-controller component are at risk from CVE-2026-19130.
What is the potential impact of CVE-2026-19130?
If exploited, CVE-2026-19130 allows attackers with specific permissions to propagate credentials across namespaces without proper authorization.