CVE-2026-4867
Last modified
CVE-2026-4867 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. 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. EPSS estimates a 0.50% chance of exploitation in the next 30 days.
Description
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 path-to-regexp@0.1.12 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 path-to-regexp@0.1.13 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.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Pillarjs | Path-To-Regexp | < 0.1.13 |
References
- https://blakeembrey.com/posts/2024-09-web-redosTechnical Description
- https://cna.openjsf.org/security-advisories.htmlThird Party Advisory
- https://github.com/advisories/GHSA-9wv6-86v2-598jNot Applicable
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-4867?
How severe is CVE-2026-4867?
How do I fix CVE-2026-4867?
Are you affected by CVE-2026-4867?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
