CVE-2026-54725
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedvault-secrets-webhook is a Kubernetes mutating webhook that makes direct secret injection into Pods possible. Prior to 1.23.1, parseVaultConfig() in pkg/webhook/config.go accepts the vault.security.banzaicloud.io/vault-addr annotation, MutateConfigMap and MutateSecret call newVaultClient in pkg/webhook/webhook.go, and vault.security.banzaicloud.io/vault-serviceaccount can cause a ServiceAccount JWT to be sent to an attacker-controlled Vault address. This issue is fixed in version 1.23.1.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe vault-secrets-webhook accepts the vault.security.banzaicloud.io/vault-addr annotation without validation, allowing an attacker who can create or modify Pods to specify an attacker-controlled Vault address. When the webhook processes such Pods, it sends the ServiceAccount JWT to the malicious Vault endpoint, enabling credential theft and potential privilege escalation within the cluster.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify vault-secrets-webhook installationRun 'kubectl get pods -A | grep vault-secrets-webhook' or 'kubectl get deployments -A | grep vault-secrets-webhook' to find the webhook pod or deployment.Affected if The webhook is not installed in the cluster.
-
Determine vault-secrets-webhook versionCheck the image tag of the vault-secrets-webhook pod or deployment: 'kubectl get deployment -A -o jsonpath="{.items[?(@.metadata.name=='vault-secrets-webhook')].spec.template.spec.containers[0].image}"' or inspect the pod directly.Affected if The installed version is earlier than 1.23.1.
-
Find ConfigMaps with vault-addr annotationRun 'kubectl get configmaps -A -o jsonpath="{.items[?(@.metadata.annotations.vault\.security\.banzaicloud\.io/vault-addr)]}"' to list ConfigMaps containing the annotation.Affected if ConfigMaps exist with the vault.security.banzaicloud.io/vault-addr annotation pointing to an untrusted or external address.
-
Find Secrets with vault-addr annotationRun 'kubectl get secrets -A -o jsonpath="{.items[?(@.metadata.annotations.vault\.security\.banzaicloud\.io/vault-addr)]}"' to list Secrets containing the annotation.Affected if Secrets exist with the vault.security.banzaicloud.io/vault-addr annotation pointing to an untrusted or external address.
-
Review annotation values for suspicious addressesFor each identified ConfigMap or Secret, inspect the annotation value: 'kubectl get configmap <name> -n <namespace> -o jsonpath="{.metadata.annotations.vault\.security\.banzaicloud\.io/vault-addr}"'. Look for addresses that are not the intended Vault server, especially external or attacker-controlled IPs/domains.Affected if The vault-addr annotation points to any address other than the legitimate, cluster-internal Vault server.
You are affected if vault-secrets-webhook version is below 1.23.1 AND any ConfigMap or Secret in the cluster uses the vault.security.banzaicloud.io/vault-addr annotation with an untrusted or external address, as this enables token theft via JWT exfiltration.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade vault-secrets-webhook to version 1.23.1 or later. Additionally, implement network policies to restrict the webhook's outbound network access and validate that vault-addr annotations point only to trusted endpoints.
1.23.1
- Identify the namespace where vault-secrets-webhook is deployed (typically 'vault-secrets-operator' or similar)
- Check the current version of the vault-secrets-webhook deployment: kubectl get deployment -n <namespace> -o jsonpath='{.items[*].spec.template.spec.containers[*].image}'
- Upgrade the vault-secrets-webhook to version 1.23.1 by updating the Deployment: kubectl set image deployment/<deployment-name> vault-secrets-webhook=banzaicloud/vault-secrets-webhook:1.23.1 -n <namespace>
- Verify the upgrade was successful: kubectl rollout status deployment/<deployment-name> -n <namespace>
- Confirm the new version is running: kubectl get deployment -n <namespace> -o jsonpath='{.items[*].spec.template.spec.containers[*].image}'
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing6.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $6,176.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-54725 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-54725 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data