CVE-2025-3528
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 · uneditedA flaw was found in the Mirror Registry. The quay-app container shipped as part of the Mirror Registry for OpenShift has write access to the `/etc/passwd`. This flaw allows a malicious actor with access to the container to modify the passwd file and elevate their privileges to the root user within that pod.
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 quay-app container in Red Hat's Mirror Registry for OpenShift has unintended write access to the /etc/passwd file. An attacker who gains container access can modify this file to create a new root user or modify existing user mappings, achieving privilege escalation to root within the pod context.
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
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- Required
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H
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 quay-app container from Mirror RegistryRun 'oc get pods -A | grep quay-app' or 'kubectl get pods -A | grep quay-app' to list quay-app pods. Also check 'oc get pods -A -l app=quay' to find all Quay-related pods.Affected if A quay-app pod from Red Hat Mirror Registry for OpenShift is running in the cluster
-
Verify /etc/passwd is writable inside the containerExec into the container with 'oc exec -it <quay-app-pod> -n <namespace> -- /bin/sh' then run 'ls -la /etc/passwd' and test with 'touch /etc/passwd.test' or check mount status with 'mount | grep /etc'Affected if The /etc/passwd file shows write permissions for the container's user (typically root or quay user) or is mounted as writable
-
Check container security context for root filesystemRun 'oc get pod <quay-app-pod> -n <namespace> -o jsonpath={.spec.containers[0].securityContext}' to view the security context. Look for 'readOnlyRootFilesystem: true' setting.Affected if The securityContext does NOT have readOnlyRootFilesystem set to true, or the field is absent entirely
-
Check pod security context and admission controlsRun 'oc get pod <quay-app-pod> -n <namespace> -o jsonpath={.spec.securityContext}' to view pod-level security context. Also check for PodSecurityPolicy or Gatekeeper/OPA constraints with 'oc get psp' or relevant policy resources.Affected if No pod security policy restricts filesystem write access, or the pod runs with privileged or high-privilege security context
-
Verify filesystem mounts are read-onlyFrom inside the container, run 'mount | grep -E "^/dev|/etc"' or check 'oc describe pod <quay-app-pod> -n <namespace> | grep -A5 Volumes' to see if any volume mounts override /etc with writable storage.Affected if The /etc directory or /etc/passwd file is mounted from a ConfigMap, secret, or emptyDir with default (writable) permissions
A user is affected if a quay-app pod from Mirror Registry for OpenShift is running and the container has writable access to /etc/passwd, which is indicated by absent readOnlyRootFilesystem setting and unrestricted filesystem permissions.
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.
From vendor dataApply a read-only root filesystem or restrict container filesystem permissions via security contexts to prevent write access to /etc/passwd; also apply pod security policies to enforce least-privilege container execution.
- Consultation2.0 h
- Implementation3.0 h
- Testing2.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,272.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2025-3528 — 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-2025-3528 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