From 199c8bdb0d0efd4186d118c911c98aab431f33ad Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 22 Feb 2021 17:25:07 +0000 Subject: [PATCH] 2021-02-23, Version 12.21.0 'Erbium' (LTS) 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/256 --- CHANGELOG.md | 3 ++- doc/api/http2.md | 3 +++ doc/changelogs/CHANGELOG_V12.md | 24 ++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458ca445b5d48c..16a34d4262b0cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,7 +74,8 @@ release. 14.0.0
-12.20.2
+12.21.0
+12.20.2
12.20.1
12.20.0
12.19.1
diff --git a/doc/api/http2.md b/doc/api/http2.md index bae4619890598b..4b65b710a163bb 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2125,6 +2125,7 @@ changes: - version: - v15.10.0 - v14.16.0 + - v12.21.0 pr-url: https://github.com/nodejs-private/node-private/pull/246 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: @@ -2276,6 +2277,7 @@ changes: - version: - v15.10.0 - v14.16.0 + - v12.21.0 pr-url: https://github.com/nodejs-private/node-private/pull/246 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: @@ -2414,6 +2416,7 @@ changes: - version: - v15.10.0 - v14.16.0 + - v12.21.0 pr-url: https://github.com/nodejs-private/node-private/pull/246 description: Added `unknownProtocolTimeout` option with a default of 10000. - version: diff --git a/doc/changelogs/CHANGELOG_V12.md b/doc/changelogs/CHANGELOG_V12.md index 204fc9b1689acd..dc12d7cd5337b3 100644 --- a/doc/changelogs/CHANGELOG_V12.md +++ b/doc/changelogs/CHANGELOG_V12.md @@ -11,6 +11,7 @@ +12.21.0
12.20.2
12.20.1
12.20.0
@@ -71,6 +72,29 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + +## 2021-02-23, Version 12.21.0 'Erbium' (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 + +* [[`e69177a088`](https://github.com/nodejs/node/commit/e69177a088)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#37413](https://github.com/nodejs/node/pull/37413) +* [[`0633ae77e6`](https://github.com/nodejs/node/commit/0633ae77e6)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#37413](https://github.com/nodejs/node/pull/37413) +* [[`922ada7713`](https://github.com/nodejs/node/commit/922ada7713)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#246](https://github.com/nodejs-private/node-private/pull/246) +* [[`1564752d55`](https://github.com/nodejs/node/commit/1564752d55)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#244](https://github.com/nodejs-private/node-private/pull/244) + ## 2021-02-10, Version 12.20.2 'Erbium' (LTS), @ruyadorno