diff options
author | Richard Lau <rlau@redhat.com> | 2021-02-22 16:43:13 +0000 |
---|---|---|
committer | Richard Lau <rlau@redhat.com> | 2021-02-22 19:15:14 +0000 |
commit | ce800870b4206bafea2942f0b404a7f8f86a8bea (patch) | |
tree | 9cb5a328a59dd32245cfaa154a65c3563538ebf9 | |
parent | 3f2e9dc40c9964965b075c00719829f9bb17e65f (diff) | |
download | node-new-ce800870b4206bafea2942f0b404a7f8f86a8bea.tar.gz |
2021-02-23, Version 10.24.0 'Dubnium' (LTS)v10.24.0
This is a security release.
Notable changes
Vulnerabilities fixed:
- **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by
resource exhaustion
- **CVE-2021-22884**: DNS rebinding in --inspect
- **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate
PR-URL: https://github.com/nodejs-private/node-private/pull/255
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | doc/api/http2.md | 6 | ||||
-rw-r--r-- | doc/changelogs/CHANGELOG_V10.md | 24 | ||||
-rw-r--r-- | src/node_version.h | 6 |
4 files changed, 32 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a561c8836..3a219c1e5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,8 @@ release. <a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/> </td> <td valign="top"> -<b><a href="doc/changelogs/CHANGELOG_V10.md#10.23.3">10.23.3</a></b><br/> +<b><a href="doc/changelogs/CHANGELOG_V10.md#10.24.0">10.24.0</a></b><br/> +<a href="doc/changelogs/CHANGELOG_V10.md#10.23.3">10.23.3</a><br/> <a href="doc/changelogs/CHANGELOG_V10.md#10.23.2">10.23.2</a><br/> <a href="doc/changelogs/CHANGELOG_V10.md#10.23.1">10.23.1</a><br/> <a href="doc/changelogs/CHANGELOG_V10.md#10.23.0">10.23.0</a><br/> diff --git a/doc/api/http2.md b/doc/api/http2.md index 7a4fbf56e5..6b5f0c7863 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1903,7 +1903,7 @@ error will be thrown. <!-- YAML added: v8.4.0 changes: - - version: REPLACEME + - version: v10.24.0 pr-url: https://github.com/nodejs-private/node-private/pull/248 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: v10.21.0 @@ -2025,7 +2025,7 @@ server.listen(80); <!-- YAML added: v8.4.0 changes: - - version: REPLACEME + - version: v10.24.0 pr-url: https://github.com/nodejs-private/node-private/pull/248 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: v10.21.0 @@ -2139,7 +2139,7 @@ server.listen(80); <!-- YAML added: v8.4.0 changes: - - version: REPLACEME + - version: v10.24.0 pr-url: https://github.com/nodejs-private/node-private/pull/248 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: v10.21.0 diff --git a/doc/changelogs/CHANGELOG_V10.md b/doc/changelogs/CHANGELOG_V10.md index 2d7eb9d2dc..c95b209999 100644 --- a/doc/changelogs/CHANGELOG_V10.md +++ b/doc/changelogs/CHANGELOG_V10.md @@ -10,6 +10,7 @@ </tr> <tr> <td valign="top"> +<a href="#10.24.0">10.24.0</a><br/> <a href="#10.23.3">10.23.3</a><br/> <a href="#10.23.2">10.23.2</a><br/> <a href="#10.23.1">10.23.1</a><br/> @@ -68,6 +69,29 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) +<a id="10.24.0"></a> +## 2021-02-23, Version 10.24.0 'Dubnium' (LTS), @richardlau + +This is a security release. + +### Notable changes + +Vulnerabilities fixed: + +* **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion + * Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory. +* **CVE-2021-22884**: DNS rebinding in --inspect + * Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160. +* **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate + * This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210216.txt + +### Commits + +* [[`0afcb4f6bb`](https://github.com/nodejs/node/commit/0afcb4f6bb)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#37415](https://github.com/nodejs/node/pull/37415) +* [[`447be941cd`](https://github.com/nodejs/node/commit/447be941cd)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#37415](https://github.com/nodejs/node/pull/37415) +* [[`3f2e9dc40c`](https://github.com/nodejs/node/commit/3f2e9dc40c)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#246](https://github.com/nodejs-private/node-private/pull/246) +* [[`d1cf6a9b0f`](https://github.com/nodejs/node/commit/d1cf6a9b0f)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#244](https://github.com/nodejs-private/node-private/pull/244) + <a id="10.23.3"></a> ## 2021-02-09, Version 10.23.3 'Dubnium' (LTS), @richardlau diff --git a/src/node_version.h b/src/node_version.h index 8acd1baf9c..f25dd5641c 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 10 -#define NODE_MINOR_VERSION 23 -#define NODE_PATCH_VERSION 4 +#define NODE_MINOR_VERSION 24 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Dubnium" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |