Skip to content

Commit 1efdc58

Browse files
committed
2018-08-15, Version 8.11.4 'Carbon' (LTS)
This is a security release. All Node.js users should consult the security release summary at: https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/ for details on patched vulnerabilities. Fixes for the following CVEs are included in this release: * CVE-2018-0732 (OpenSSL) * CVE-2018-12115 (Node.js) Notable changes: * buffer: Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115) * deps: Upgrade to OpenSSL 1.0.2p, fixing: * Client DoS due to large DH parameter (CVE-2018-0732) * ECDSA key extraction via local side-channel (CVE not assigned)
1 parent 82ab9b3 commit 1efdc58

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ release.
4444
<a href="doc/changelogs/CHANGELOG_V10.md#10.0.0">10.0.0</a><br/>
4545
</td>
4646
<td valign="top">
47-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.3">8.11.3</a></b><br/>
47+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.4">8.11.4</a></b><br/>
48+
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.3">8.11.3</a><br/>
4849
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.2">8.11.2</a><br/>
4950
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a><br/>
5051
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.0">8.11.0</a><br/>

doc/changelogs/CHANGELOG_V8.md

Lines changed: 35 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="#8.11.4">8.11.4</a><br/>
1415
<a href="#8.11.3">8.11.3</a><br/>
1516
<a href="#8.11.2">8.11.2</a><br/>
1617
<a href="#8.11.1">8.11.1</a><br/>
@@ -58,6 +59,40 @@
5859
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
5960
will be supported actively until April 2019 and maintained until December 2019.
6061

62+
<a id="8.11.4"></a>
63+
## 2018-08-15, Version 8.11.4 'Carbon' (LTS), @rvagg
64+
65+
This is a security release. All Node.js users should consult the security release summary at:
66+
67+
https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
68+
69+
for details on patched vulnerabilities.
70+
71+
Fixes for the following CVEs are included in this release:
72+
73+
* CVE-2018-0732 (OpenSSL)
74+
* CVE-2018-12115 (Node.js)
75+
76+
### Notable Changes
77+
78+
* **buffer**: Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115)
79+
* **deps**: Upgrade to OpenSSL 1.0.2p, fixing:
80+
* Client DoS due to large DH parameter (CVE-2018-0732)
81+
* ECDSA key extraction via local side-channel (CVE not assigned)
82+
83+
### Commits
84+
85+
* [[`fc14d812b7`](https://github.com/nodejs/node/commit/fc14d812b7)] - **buffer**: avoid overrun on UCS-2 string write (Rod Vagg) [nodejs-private/node-private#138](https://github.com/nodejs-private/node-private/pull/138)
86+
* [[`8f59838ae7`](https://github.com/nodejs/node/commit/8f59838ae7)] - **deps**: add -no\_rand\_screen to openssl s\_client (Shigeki Ohtsu) [#1836](https://github.com/nodejs/node/pull/1836)
87+
* [[`97607f8622`](https://github.com/nodejs/node/commit/97607f8622)] - **deps**: fix asm build error of openssl in x86\_win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
88+
* [[`46e4917d98`](https://github.com/nodejs/node/commit/46e4917d98)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [#1389](https://github.com/nodejs/node/pull/1389)
89+
* [[`1b93677a81`](https://github.com/nodejs/node/commit/1b93677a81)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
90+
* [[`ebf399473b`](https://github.com/nodejs/node/commit/ebf399473b)] - **deps**: upgrade openssl sources to 1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
91+
* [[`131c5ed438`](https://github.com/nodejs/node/commit/131c5ed438)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
92+
* [[`3139897ff5`](https://github.com/nodejs/node/commit/3139897ff5)] - **test**: fix error messages for OpenSSL-1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
93+
* [[`0c047c4d9a`](https://github.com/nodejs/node/commit/0c047c4d9a)] - **test**: update certificates and private keys (Fedor Indutny) [#22184](https://github.com/nodejs/node/pull/22184)
94+
* [[`7c6d0f604b`](https://github.com/nodejs/node/commit/7c6d0f604b)] - **test**: update keys/Makefile to clean and build all (Daniel Bevenius) [#19975](https://github.com/nodejs/node/pull/19975)
95+
6196
<a id="8.11.3"></a>
6297
## 2018-06-12, Version 8.11.3 'Carbon' (LTS), @evanlucas
6398

0 commit comments

Comments
 (0)