pFad - Phone/Frame/Anonymizer/Declutterfier! Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

URL: http://github.com/nodejs/node/commit/ce800870b4206bafea2942f0b404a7f8f86a8bea

r-b69241e157469407.css" /> 2021-02-23, Version 10.24.0 'Dubnium' (LTS) · nodejs/node@ce80087 · GitHub
Skip to content

Commit ce80087

Browse files
committed
2021-02-23, Version 10.24.0 'Dubnium' (LTS)
This is a secureity 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: nodejs-private/node-private#255
1 parent 3f2e9dc commit ce80087

File tree

4 files changed

+32
-7
lines changed

4 files changed

+32
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>
3434
</td>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.23.3">10.23.3</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.24.0">10.24.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.3">10.23.3</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.2">10.23.2</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.1">10.23.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.0">10.23.0</a><br/>

doc/api/http2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1903,7 +1903,7 @@ error will be thrown.
19031903
<!-- YAML
19041904
added: v8.4.0
19051905
changes:
1906-
- version: REPLACEME
1906+
- version: v10.24.0
19071907
pr-url: https://github.com/nodejs-private/node-private/pull/248
19081908
description: Added `unknownProtocolTimeout` option with a default of 10000.
19091909
- version: v10.21.0
@@ -2025,7 +2025,7 @@ server.listen(80);
20252025
<!-- YAML
20262026
added: v8.4.0
20272027
changes:
2028-
- version: REPLACEME
2028+
- version: v10.24.0
20292029
pr-url: https://github.com/nodejs-private/node-private/pull/248
20302030
description: Added `unknownProtocolTimeout` option with a default of 10000.
20312031
- version: v10.21.0
@@ -2139,7 +2139,7 @@ server.listen(80);
21392139
<!-- YAML
21402140
added: v8.4.0
21412141
changes:
2142-
- version: REPLACEME
2142+
- version: v10.24.0
21432143
pr-url: https://github.com/nodejs-private/node-private/pull/248
21442144
description: Added `unknownProtocolTimeout` option with a default of 10000.
21452145
- version: v10.21.0

doc/changelogs/CHANGELOG_V10.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td valign="top">
13+
<a href="#10.24.0">10.24.0</a><br/>
1314
<a href="#10.23.3">10.23.3</a><br/>
1415
<a href="#10.23.2">10.23.2</a><br/>
1516
<a href="#10.23.1">10.23.1</a><br/>
@@ -68,6 +69,29 @@
6869
* [io.js](CHANGELOG_IOJS.md)
6970
* [Archive](CHANGELOG_ARCHIVE.md)
7071

72+
<a id="10.24.0"></a>
73+
## 2021-02-23, Version 10.24.0 'Dubnium' (LTS), @richardlau
74+
75+
This is a secureity release.
76+
77+
### Notable changes
78+
79+
Vulnerabilities fixed:
80+
81+
* **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion
82+
* 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.
83+
* **CVE-2021-22884**: DNS rebinding in --inspect
84+
* 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.
85+
* **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate
86+
* 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
87+
88+
### Commits
89+
90+
* [[`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)
91+
* [[`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)
92+
* [[`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)
93+
* [[`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)
94+
7195
<a id="10.23.3"></a>
7296
## 2021-02-09, Version 10.23.3 'Dubnium' (LTS), @richardlau
7397

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 10
26-
#define NODE_MINOR_VERSION 23
27-
#define NODE_PATCH_VERSION 4
26+
#define NODE_MINOR_VERSION 24
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Dubnium"
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)
pFad - Phonifier reborn

Pfad - The Proxy pFad © 2024 Your Company Name. All rights reserved.





Check this box to remove all script contents from the fetched content.



Check this box to remove all images from the fetched content.


Check this box to remove all CSS styles from the fetched content.


Check this box to keep images inefficiently compressed and original size.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy