๐Ÿ” CVE Alert

CVE-2026-14257

HIGH 7.5

brace-expansion DoS via unbounded expansion length causing an out-of-memory process crash

CVSS Score
7.5
EPSS Score
0.0%
EPSS Percentile
0th

brace-expansion through 5.0.7 is vulnerable to denial of service via memory exhaustion. The expand() function limits the number of results with a max option (default 100,000) but does not bound the length of each result string. By chaining multiple brace groups, an attacker keeps the result count under the limit while making each result progressively longer, so total memory scales with both count and string length until the process hits a fatal, uncatchable out-of-memory error. About 7.5 KB of input ('{a,b}'.repeat(1500)) crashes a default Node.js process. Any application that passes attacker-influenced strings to brace-expansion.expand() - directly or transitively via minimatch / glob brace patterns - can be crashed by a small request. Fixed in 5.0.8 by adding a maxLength option (default 4,000,000) that bounds accumulated output and intermediate arrays.

CWE CWE-400 CWE-770
Vendor juliangruber
Product brace-expansion
Published Jul 23, 2026
Stay Ahead of the Next One

Get instant alerts for juliangruber brace-expansion

Be the first to know when new high vulnerabilities affecting juliangruber brace-expansion are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Affected Versions

juliangruber / brace-expansion
0 โ‰ค 5.0.7

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
npmjs.com: https://www.npmjs.com/package/brace-expansion github.com: https://github.com/juliangruber/brace-expansion github.com: https://github.com/juliangruber/brace-expansion/commit/a1bd33999ea75262c4749fff3bbb0d1372bd07b5

Credits

bnbdr