Asymmetric denial of service - ReDoS In node-cookiejar
Description
cookiejar Regular Expression Denial of Service via Cookie.parse function
Versions of the package cookiejar before 2.1.4 are vulnerable to Regular Expression Denial of Service (ReDoS) via the Cookie.parse function and other aspects of the API, which use an insecure regular expression for parsing cookie values. Applications could be stalled for extended periods of time if untrusted input is passed to cookie values or attempted to parse from request headers.
Proof of concept:
ts\nconst { CookieJar } = require("cookiejar"); const jar = new CookieJar(); const start = performance.now(); const attack = "a" + "t".repeat(50_000); jar.setCookie(attack);...
CookieJar.setCookie(): 2963.214399999939ms
Mitigation
Update Impact
Minimal update. May introduce new vulnerabilities or breaking changes.
Ecosystem | Package | Affected version | Patched versions |
|---|---|---|---|
debian 14 | 2.1.4+~2.1.2-1 | ||
debian 12 | 2.1.4+~2.1.2-1 | ||
debian 13 | 2.1.4+~2.1.2-1 | ||
npm | 2.1.4 | ||
maven | 2.1.4 | ||
debian 11 | 2.1.2-1+deb11u1 |
Aliases
1. 2. 3. 4. 5. 6. 7.
References
1. 2. 3. 4.