Skip to content

Commit 40b805a

Browse files
committed
2021-02-23, Version 14.16.0 'Fermium' (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: nodejs-private/node-private#254
1 parent 6f9b622 commit 40b805a

3 files changed

Lines changed: 35 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ release.
4848
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.0">15.0.0</a><br/>
4949
</td>
5050
<td valign="top">
51-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.15.5">14.15.5</a></b><br/>
51+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.16.0">14.16.0</a></b><br/>
52+
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.5">14.15.5</a><br/>
5253
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.4">14.15.4</a><br/>
5354
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.3">14.15.3</a><br/>
5455
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.2">14.15.2</a><br/>

doc/api/http2.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,9 @@ Throws `ERR_INVALID_ARG_TYPE` for invalid `settings` argument.
21222122
<!-- YAML
21232123
added: v8.4.0
21242124
changes:
2125-
- version: v15.10.0
2125+
- version:
2126+
- v15.10.0
2127+
- v14.16.0
21262128
pr-url: https://github.com/nodejs-private/node-private/pull/246
21272129
description: Added `unknownProtocolTimeout` option with a default of 10000.
21282130
- version:
@@ -2271,7 +2273,9 @@ server.listen(80);
22712273
<!-- YAML
22722274
added: v8.4.0
22732275
changes:
2274-
- version: v15.10.0
2276+
- version:
2277+
- v15.10.0
2278+
- v14.16.0
22752279
pr-url: https://github.com/nodejs-private/node-private/pull/246
22762280
description: Added `unknownProtocolTimeout` option with a default of 10000.
22772281
- version:
@@ -2407,7 +2411,9 @@ server.listen(80);
24072411
<!-- YAML
24082412
added: v8.4.0
24092413
changes:
2410-
- version: v15.10.0
2414+
- version:
2415+
- v15.10.0
2416+
- v14.16.0
24112417
pr-url: https://github.com/nodejs-private/node-private/pull/246
24122418
description: Added `unknownProtocolTimeout` option with a default of 10000.
24132419
- version:

doc/changelogs/CHANGELOG_V14.md

Lines changed: 24 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="#14.16.0">14.16.0</a><br/>
1415
<a href="#14.15.5">14.15.5</a><br/>
1516
<a href="#14.15.4">14.15.4</a><br/>
1617
<a href="#14.15.3">14.15.3</a><br/>
@@ -57,6 +58,29 @@
5758
* [io.js](CHANGELOG_IOJS.md)
5859
* [Archive](CHANGELOG_ARCHIVE.md)
5960

61+
<a id="14.16.0"></a>
62+
## 2021-02-23, Version 14.16.0 'Fermium' (LTS), @BethGriggs
63+
64+
This is a security release.
65+
66+
### Notable changes
67+
68+
Vulnerabilities fixed:
69+
70+
* **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion
71+
* 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.
72+
* **CVE-2021-22884**: DNS rebinding in --inspect
73+
* 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.
74+
* **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate
75+
* 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
76+
77+
### Commits
78+
79+
* [[`313d26800c`](https://github.com/nodejs/node/commit/313d26800c)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#37412](https://github.com/nodejs/node/pull/37412)
80+
* [[`6098012b48`](https://github.com/nodejs/node/commit/6098012b48)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#37412](https://github.com/nodejs/node/pull/37412)
81+
* [[`afea10b097`](https://github.com/nodejs/node/commit/afea10b097)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#246](https://github.com/nodejs-private/node-private/pull/246)
82+
* [[`1ca3f5abcb`](https://github.com/nodejs/node/commit/1ca3f5abcb)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#244](https://github.com/nodejs-private/node-private/pull/244)
83+
6084
<a id="14.15.5"></a>
6185
## 2021-02-09, Version 14.15.5 'Fermium' (LTS), @BethGriggs
6286

0 commit comments

Comments
 (0)