Skip to content

Commit 360a294

Browse files
committed
2021-10-12, Version 12.22.7 'Erbium' (LTS)
This is a security release. Notable changes: * CVE-2021-22959: HTTP Request Smuggling due to spaced in headers (Medium) * The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details are available at: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22959 * CVE-2021-22960: HTTP Request Smuggling when parsing the body (Medium) * The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details are available at: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22960 PR-URL: nodejs-private/node-private#295
1 parent d5d3a03 commit 360a294

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.6">12.22.6</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.7">12.22.7</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.6">12.22.6</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.5">12.22.5</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.4">12.22.4</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.3">12.22.3</a><br/>

doc/changelogs/CHANGELOG_V12.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#12.22.7">12.22.7</a><br/>
1415
<a href="#12.22.6">12.22.6</a><br/>
1516
<a href="#12.22.5">12.22.5</a><br/>
1617
<a href="#12.22.4">12.22.4</a><br/>
@@ -76,6 +77,24 @@
7677
* [io.js](CHANGELOG_IOJS.md)
7778
* [Archive](CHANGELOG_ARCHIVE.md)
7879

80+
<a id="12.22.7"></a>
81+
## 2021-10-12, Version 12.22.7 'Erbium' (LTS), @danielleadams
82+
83+
This is a security release.
84+
85+
### Notable changes
86+
87+
* **CVE-2021-22959**: HTTP Request Smuggling due to spaced in headers (Medium)
88+
* The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at [CVE-2021-22959](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22959) after publication.
89+
* **CVE-2021-22960**: HTTP Request Smuggling when parsing the body (Medium)
90+
* The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at [CVE-2021-22960](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22960) after publication.
91+
92+
### Commits
93+
94+
* [[`21a2e554e3`](https://github.com/nodejs/node/commit/21a2e554e3)] - **deps**: update llhttp to 2.1.4 (Fedor Indutny) [nodejs-private/node-private#286](https://github.com/nodejs-private/node-private/pull/286)
95+
* [[`d5d3a03246`](https://github.com/nodejs/node/commit/d5d3a03246)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#286](https://github.com/nodejs-private/node-private/pull/286)
96+
* [[`0858587f21`](https://github.com/nodejs/node/commit/0858587f21)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#286](https://github.com/nodejs-private/node-private/pull/286)
97+
7998
<a id="12.22.6"></a>
8099
## 2021-08-31, Version 12.22.6 'Erbium' (LTS), @MylesBorins
81100

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Erbium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)