Cyber Resilience

CVE-2026-25121

Path Traversal in Chainguard Apko 0.14.8 – 1.1.1

Published
04 February 2026
Modified
20 February 2026
Patch / advisory
CVSS Score v3.1 7.5
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
EPSS Score 0.0037 30th percentile
Risk Priority 57 floored blend · peak EPSS

Summary

CVE-2026-25121 is a high-severity Relative Path Traversal (CWE-23) vulnerability in Chainguard Apko. Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 30th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to AC-3 (Access Enforcement) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

CVE-2026-25121 is a path traversal vulnerability in apko, a tool for building and publishing OCI container images from apk packages. The issue affects versions from 0.14.8 up to but not including 1.1.1 and resides in the dirFS filesystem abstraction, specifically the MkdirAll, Mkdir, and Symlink methods in pkg/apk/fs/rwosfs.go. These methods use filepath.Join() to construct paths without validating that the resulting path remains within the intended base installation directory, allowing traversal outside the root. The vulnerability is rated 7.5 on the CVSS v3.1 scale (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N) and maps to CWEs-23 (Path Traversal) and CWE-22 (Improper Limitation of a Pathname to a Restricted Directory).

An attacker can exploit this vulnerability by supplying a malicious APK package, such as through a compromised or typosquatted repository. Users of vulnerable apko versions who build container images from such packages enable the attacker to create directories or symlinks outside the intended installation root on the host filesystem. This requires no privileges and can be performed remotely with low complexity, resulting in high integrity impact but no confidentiality or availability disruption.

The vulnerability has been patched in apko version 1.1.1. Security practitioners should upgrade to this version or later. Additional details are available in the Chainguard GitHub security advisory (GHSA-5g94-c2wx-8pxw) and the patching commit (d8b7887a968a527791b3c591ae83928cb49a9f14).

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

apko allows users to build and publish OCI container images built from apk packages. From version 0.14.8 to before 1.1.1, a path traversal vulnerability was discovered in apko's dirFS filesystem abstraction. An attacker who can supply a malicious APK package…

more

(e.g., via a compromised or typosquatted repository) could create directories or symlinks outside the intended installation root. The MkdirAll, Mkdir, and Symlink methods in pkg/apk/fs/rwosfs.go use filepath.Join() without validating that the resulting path stays within the base directory. This issue has been patched in version 1.1.1.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1005 Data from Local System Collection
Adversaries may search local system sources, such as file systems, configuration files, local databases, virtual machine files, or process memory, to find files of interest and sensitive data prior to Exfiltration.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2026-28406Same vendor: Chainguard
CVE-2026-29051Same vendor: Chainguard
CVE-2026-25145Same vendor: Chainguard
CVE-2026-24843Same vendor: Chainguard
CVE-2026-29050Same vendor: Chainguard
CVE-2026-24846Same vendor: Chainguard
CVE-2024-8510Shared CWE-22, CWE-23
CVE-2023-1044Shared CWE-22, CWE-23
CVE-2024-22398Shared CWE-22, CWE-23
CVE-2020-5410Shared CWE-22, CWE-23

Affected Assets

chainguard
apko
0.14.8 — 1.1.1

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V5.3.2

Mitigating Controls (NIST 800-53 r5) AI

Enforces the intended directory access authorizations that path traversal would otherwise bypass.

Explicit validation of path inputs stops .. sequences from ever being interpreted by the file system.

Information-flow rules can be configured to reject traversals that would move data outside an approved directory boundary.

Least privilege reduces the set of reachable files even when a traversal succeeds.

Secure-engineering principles require safe pathname construction and input neutralization before any file operation.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require input validation and path sanitization that prevent relative traversal.

PR.PS-02 partial match
prevents

Patching/maintenance can remediate known path-traversal flaws in deployed software (partial prevention of exploitability) but does nothing to stop the coding defect from being introduced in the first place.

PR.AA-05 none match
prevents

PR.AA-05 defines and reviews access policies but does not address code-level pathname neutralization, so neither direction prevents CWE-22.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

finds

Security testing in development catches path traversal via static/dynamic analysis, but does not itself implement the fix.

prevents

Secure development lifecycle mandates input validation and path-handling controls that directly prevent relative path traversal.

prevents

Application security requirements explicitly call for controls against path traversal and other injection flaws.

prevents

Secure architecture principles include directory isolation and canonicalization, reducing but not eliminating traversal risk.

prevents

Secure coding standards require neutralizing path traversal sequences, directly addressing CWE-23.

mitigates

Information access restriction limits which files can be reached, mitigating impact but not preventing the traversal flaw.

References