Skip to content

Commit df3ed1e

Browse files
committed
2022-09-23, Version 18.9.1 (Current)
This is a security release. Notable changes: * crypto: fix weak randomness in WebCrypto keygen (Ben Noordhuis) nodejs-private/node-private#346 * deps: MacOS - fix location of OpenSSL config file (Michael Dawson) nodejs-private/node-private#345 * http: disable chunked encoding when OBS fold is used (Paolo Insogna) nodejs-private/node-private#341 * src: fix IPv4 non routable validation (RafaelGSS) nodejs-private/node-private#337 PR-URL: nodejs-private/node-private#350
1 parent 01bffcd commit df3ed1e

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/>

doc/changelogs/CHANGELOG_V18.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</tr>
99
<tr>
1010
<td>
11+
<a href="#18.9.1">18.9.1</a><br/>
1112
<a href="#18.9.0">18.9.0</a><br/>
1213
<a href="#18.8.0">18.8.0</a><br/>
1314
<a href="#18.7.0">18.7.0</a><br/>
@@ -42,6 +43,43 @@
4243
* [io.js](CHANGELOG_IOJS.md)
4344
* [Archive](CHANGELOG_ARCHIVE.md)
4445

46+
<a id="18.9.1"></a>
47+
48+
## 2022-09-23, Version 18.9.1 (Current), @RafaelGSS
49+
50+
This is a security release.
51+
52+
### Notable changes
53+
54+
The following CVEs are fixed in this release:
55+
56+
* **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect on macOS (High)
57+
* Insufficient fix for macOS devices on v18.5.0
58+
* **[CVE-2022-32222](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32222)**: Node 18 reads openssl.cnf from /home/iojs/build/ upon startup on MacOS (Medium)
59+
* **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: HTTP Request Smuggling - Flawed Parsing of Transfer-Encoding (Medium)
60+
* Insufficient fix on v18.5.0
61+
* **[CVE-2022-32215](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32215)**: HTTP Request Smuggling - Incorrect Parsing of Multi-line Transfer-Encoding (Medium)
62+
* Insufficient fix on v18.5.0
63+
* **[CVE-2022-35256](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35256)**: HTTP Request Smuggling - Incorrect Parsing of Header Fields (Medium)
64+
* **[CVE-2022-35255](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35255)**: Weak randomness in WebCrypto keygen
65+
66+
More detailed information on each of the vulnerabilities can be found in [September 22nd 2022 Security Releases](https://nodejs.org/en/blog/vulnerability/september-2022-security-releases/) blog post.
67+
68+
#### llhttp updated to 6.0.10
69+
70+
`llhttp` is updated to 6.0.10 which includes fixes for the following vulnerabilities.
71+
72+
* **HTTP Request Smuggling - CVE-2022-32213 bypass via obs-fold mechanic (Medium)([CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213) )**: The `llhttp` parser in the `http` module does not correctly parse and validate Transfer-Encoding headers. This can lead to HTTP Request Smuggling (HRS).
73+
* **HTTP Request Smuggling - Incorrect Parsing of Multi-line Transfer-Encoding (Medium)([CVE-2022-32215](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32215))**: The `llhttp` parser in the `http` module does not correctly handle multi-line Transfer-Encoding headers. This can lead to HTTP Request Smuggling (HRS).
74+
* **HTTP Request Smuggling - Incorrect Parsing of Header Fields (Medium)([CVE-35256](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35256))**: The llhttp parser in the `http` does not correctly handle header fields that are not terminated with CLRF. This can lead to HTTP Request Smuggling (HRS).
75+
76+
### Commits
77+
78+
* \[[`0c2a5723be`](https://github.com/nodejs/node/commit/0c2a5723be)] - **crypto**: fix weak randomness in WebCrypto keygen (Ben Noordhuis) [nodejs-private/node-private#](https://github.com/nodejs-private/node-private/pull/346)
79+
* \[[`ffb6f4d51d`](https://github.com/nodejs/node/commit/ffb6f4d51d)] - **deps**: MacOS - fix location of OpenSSL config file (Michael Dawson) [nodejs-private/node-private#345](https://github.com/nodejs-private/node-private/pull/345)
80+
* \[[`01bffcdd93`](https://github.com/nodejs/node/commit/01bffcdd93)] - **http**: disable chunked encoding when OBS fold is used (Paolo Insogna) [nodejs-private/node-private#341](https://github.com/nodejs-private/node-private/pull/341)
81+
* \[[`2c379d341d`](https://github.com/nodejs/node/commit/2c379d341d)] - **src**: fix IPv4 non routable validation (RafaelGSS) [nodejs-private/node-private#337](https://github.com/nodejs-private/node-private/pull/337)
82+
4583
<a id="18.9.0"></a>
4684

4785
## 2022-09-08, Version 18.9.0 (Current), @RafaelGSS

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 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)