Skip to content

Commit 82ab9b3

Browse files
committed
2018-08-15, Version 6.14.4 'Boron' (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 19246de commit 82ab9b3

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ release.
7171
<a href="doc/changelogs/CHANGELOG_V8.md#8.0.0">8.0.0</a><br/>
7272
</td>
7373
<td valign="top">
74-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.14.3">6.14.3</a></b><br/>
74+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.14.4">6.14.4</a></b><br/>
75+
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.3">6.14.3</a><br/>
7576
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.2">6.14.2</a><br/>
7677
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.1">6.14.1</a><br/>
7778
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.0">6.14.0</a><br/>

doc/changelogs/CHANGELOG_V6.md

Lines changed: 36 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="#6.14.4">6.14.4</a><br/>
1314
<a href="#6.14.3">6.14.3</a><br/>
1415
<a href="#6.14.2">6.14.2</a><br/>
1516
<a href="#6.14.1">6.14.1</a><br/>
@@ -71,6 +72,41 @@
7172
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
7273
will be supported actively until April 2018 and maintained until April 2019.
7374

75+
<a id="6.14.4"></a>
76+
## 2018-08-15, Version 6.14.4 'Boron' (LTS), @rvagg
77+
78+
This is a security release. All Node.js users should consult the security release summary at:
79+
80+
https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
81+
82+
for details on patched vulnerabilities.
83+
84+
Fixes for the following CVEs are included in this release:
85+
86+
* CVE-2018-0732 (OpenSSL)
87+
* CVE-2018-12115 (Node.js)
88+
89+
### Notable Changes
90+
91+
* **buffer**: Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115)
92+
* **deps**: Upgrade to OpenSSL 1.0.2p, fixing:
93+
* Client DoS due to large DH parameter (CVE-2018-0732)
94+
* ECDSA key extraction via local side-channel (CVE not assigned)
95+
96+
### Commits
97+
98+
* [[`0052926476`](https://github.com/nodejs/node/commit/0052926476)] - **buffer**: avoid overrun on UCS-2 string write (Rod Vagg) [nodejs-private/node-private#138](https://github.com/nodejs-private/node-private/pull/138)
99+
* [[`dbe6551b89`](https://github.com/nodejs/node/commit/dbe6551b89)] - **deps**: add -no\_rand\_screen to openssl s\_client (Shigeki Ohtsu) [#1836](https://github.com/nodejs/node/pull/1836)
100+
* [[`7829bbcacb`](https://github.com/nodejs/node/commit/7829bbcacb)] - **deps**: fix asm build error of openssl in x86\_win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
101+
* [[`cddca629b5`](https://github.com/nodejs/node/commit/cddca629b5)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [#1389](https://github.com/nodejs/node/pull/1389)
102+
* [[`e6014aed52`](https://github.com/nodejs/node/commit/e6014aed52)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
103+
* [[`37ddce514d`](https://github.com/nodejs/node/commit/37ddce514d)] - **deps**: upgrade openssl sources to 1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
104+
* [[`08a150fcca`](https://github.com/nodejs/node/commit/08a150fcca)] - **inspector**: don't bind to 0.0.0.0 by default (Ben Noordhuis) [#21376](https://github.com/nodejs/node/pull/21376)
105+
* [[`19b9d7fd77`](https://github.com/nodejs/node/commit/19b9d7fd77)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
106+
* [[`7ccb0422fc`](https://github.com/nodejs/node/commit/7ccb0422fc)] - **test**: fix error messages for OpenSSL-1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
107+
* [[`58b9497ca8`](https://github.com/nodejs/node/commit/58b9497ca8)] - **test**: update certificates and private keys (Fedor Indutny) [#22184](https://github.com/nodejs/node/pull/22184)
108+
* [[`9863e11ea8`](https://github.com/nodejs/node/commit/9863e11ea8)] - **test**: update keys/Makefile to clean and build all (Daniel Bevenius) [#19975](https://github.com/nodejs/node/pull/19975)
109+
74110
<a id="6.14.3"></a>
75111
## 2018-06-12, Version 6.14.3 'Boron' (LTS), @evanlucas
76112

0 commit comments

Comments
 (0)