Skip to content

Commit 40b8d33

Browse files
1 parent c8990dd commit 40b8d33

1 file changed

Lines changed: 77 additions & 0 deletions

File tree

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-37ch-88jc-xwx2",
4+
"modified": "2026-03-27T20:04:53Z",
5+
"published": "2026-03-27T20:04:53Z",
6+
"aliases": [
7+
"CVE-2026-4867"
8+
],
9+
"summary": "path-to-regexp vulnerable to Regular Expression Denial of Service via multiple route parameters",
10+
"details": "### Impact\n\nA 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.\n\n### Patches\n\nUpgrade to [path-to-regexp@0.1.13](https://github.com/pillarjs/path-to-regexp/releases/tag/v.0.1.13)\n\nCustom regex patterns in route definitions (e.g., `/:a-:b([^-/]+)-:c([^-/]+)`) are not affected because they override the default capture group.\n\n### Workarounds\n\nAll 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([^-/]+)`.\n\nIf paths cannot be rewritten and versions cannot be upgraded, another alternative is to limit the URL length.\n\n### References\n\n- [GHSA-9wv6-86v2-598j](https://github.com/advisories/GHSA-9wv6-86v2-598j)\n- [Detailed blog post: ReDoS the web](https://blakeembrey.com/posts/2024-09-web-redos/)",
11+
"severity": [
12+
{
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "npm",
21+
"name": "path-to-regexp"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "0.1.13"
32+
}
33+
]
34+
}
35+
]
36+
}
37+
],
38+
"references": [
39+
{
40+
"type": "WEB",
41+
"url": "https://github.com/pillarjs/path-to-regexp/security/advisories/GHSA-37ch-88jc-xwx2"
42+
},
43+
{
44+
"type": "ADVISORY",
45+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4867"
46+
},
47+
{
48+
"type": "WEB",
49+
"url": "https://blakeembrey.com/posts/2024-09-web-redos"
50+
},
51+
{
52+
"type": "WEB",
53+
"url": "https://cna.openjsf.org/security-advisories.html"
54+
},
55+
{
56+
"type": "ADVISORY",
57+
"url": "https://github.com/advisories/GHSA-9wv6-86v2-598j"
58+
},
59+
{
60+
"type": "PACKAGE",
61+
"url": "https://github.com/pillarjs/path-to-regexp"
62+
},
63+
{
64+
"type": "WEB",
65+
"url": "https://github.com/pillarjs/path-to-regexp/releases/tag/v.0.1.13"
66+
}
67+
],
68+
"database_specific": {
69+
"cwe_ids": [
70+
"CWE-1333"
71+
],
72+
"severity": "HIGH",
73+
"github_reviewed": true,
74+
"github_reviewed_at": "2026-03-27T20:04:53Z",
75+
"nvd_published_at": "2026-03-26T17:16:42Z"
76+
}
77+
}

0 commit comments

Comments
 (0)