๐Ÿ” CVE Alert

CVE-2026-4867

HIGH 7.5

path-to-regexp vulnerable to Regular Expression Denial of Service via multiple route parameters

CVSS Score
7.5
EPSS Score
0.0%
EPSS Percentile
0th

Impact: A bad regular expression is generated any time you have three or more parameters within a single segment, separated by something that is not a period (.). For example, /:a-:b-:c or /:a-:b-:c-:d. The backtrack protection added in [email protected] only prevents ambiguity for two parameters. With three or more, the generated lookahead does not block single separator characters, so capture groups overlap and cause catastrophic backtracking. Patches: Upgrade to [email protected] Custom regex patterns in route definitions (e.g., /:a-:b([^-/]+)-:c([^-/]+)) are not affected because they override the default capture group. Workarounds: All versions can be patched by providing a custom regular expression for parameters after the first in a single segment. As long as the custom regular expression does not match the text before the parameter, you will be safe. For example, change /:a-:b-:c to /:a-:b([^-/]+)-:c([^-/]+). If paths cannot be rewritten and versions cannot be upgraded, another alternative is to limit the URL length.

CWE CWE-1333
Vendor path-to-regexp
Product path-to-regexp
Published Mar 26, 2026
Last Updated Mar 26, 2026
Stay Ahead of the Next One

Get instant alerts for path-to-regexp path-to-regexp

Be the first to know when new high vulnerabilities affecting path-to-regexp path-to-regexp 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
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality
Integrity
Availability

Affected Versions

path-to-regexp / path-to-regexp
0 < 0.1.13

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/advisories/GHSA-9wv6-86v2-598j blakeembrey.com: https://blakeembrey.com/posts/2024-09-web-redos cna.openjsf.org: https://cna.openjsf.org/security-advisories.html

Credits

๐Ÿ” EthanKim88 blakeembrey UlisesGascon