Skip to content

Commit 23cb8a0

Browse files
evanlucasMylesBorins
authored andcommitted
2017-07-11, Version 7.10.1 (Current)
This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/july-2017-security-releases/ for details on patched vulnerabilities. * **build**: - Disable V8 snapshots - The hashseed embedded in the snapshot is currently the same for all runs of the binary. This opens node up to collision attacks which could result in a Denial of Service. We have temporarily disabled snapshots until a more robust solution is found (Ali Ijaz Sheikh) * **deps**: - CVE-2017-1000381 - The c-ares function ares_parse_naptr_reply(), which is used for parsing NAPTR responses, could be triggered to read memory outside of the given input buffer if the passed in DNS response packet was crafted in a particular way. This patch checks that there is enough data for the required elements of an NAPTR record (2 int16, 3 bytes for string lengths) before processing a record. (David Drysdale) PR-URL: https://github.com/nodejs/node-private/pull/92
1 parent 8a82960 commit 23cb8a0

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.10.0">7.10.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.10.1">7.10.1</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V7.md#7.10.0">7.10.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V7.md#7.9.0">7.9.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V7.md#7.8.0">7.8.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V7.md#7.7.4">7.7.4</a><br/>

doc/changelogs/CHANGELOG_V7.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</tr>
77
<tr>
88
<td>
9+
<a href="#7.10.1">7.10.1</a><br/>
910
<a href="#7.10.0">7.10.0</a><br/>
1011
<a href="#7.9.0">7.9.0</a><br/>
1112
<a href="#7.8.0">7.8.0</a><br/>
@@ -35,6 +36,37 @@
3536
* [io.js](CHANGELOG_IOJS.md)
3637
* [Archive](CHANGELOG_ARCHIVE.md)
3738

39+
<a id="7.10.1"></a>
40+
## 2017-07-11, Version 7.10.1 (Current), @evanlucas
41+
42+
This is a security release. All Node.js users should consult the
43+
security release summary at
44+
https://nodejs.org/en/blog/vulnerability/july-2017-security-releases/
45+
for details on patched vulnerabilities.
46+
47+
### Notable changes
48+
49+
* **build**:
50+
- Disable V8 snapshots - The hashseed embedded in the snapshot is
51+
currently the same for all runs of the binary. This opens node up to
52+
collision attacks which could result in a Denial of Service. We have
53+
temporarily disabled snapshots until a more robust solution is found
54+
(Ali Ijaz Sheikh)
55+
* **deps**:
56+
- CVE-2017-1000381 - The c-ares function ares_parse_naptr_reply(),
57+
which is used for parsing NAPTR responses, could be triggered to
58+
read memory outside of the given input buffer if the passed in DNS
59+
response packet was crafted in a particular way. This patch checks that
60+
there is enough data for the required elements of an NAPTR record (2
61+
int16, 3 bytes for string lengths) before processing a record. (David
62+
Drysdale)
63+
64+
### Commits
65+
66+
* [[`ff587deb54`](https://github.com/nodejs/node/commit/ff587deb54)] - **build**: disable V8 snapshots (Ali Ijaz Sheikh) [nodejs/node-private#84](https://github.com/nodejs/node-private/pull/84)
67+
* [[`8a82960e76`](https://github.com/nodejs/node/commit/8a82960e76)] - **deps**: cherry-pick 9478908a49 from cares upstream (David Drysdale) [nodejs/node-private#88](https://github.com/nodejs/node-private/pull/88)
68+
* [[`b5bf5e8086`](https://github.com/nodejs/node/commit/b5bf5e8086)] - **test**: verify hash seed uniqueness (Ali Ijaz Sheikh) [nodejs/node-private#84](https://github.com/nodejs/node-private/pull/84)
69+
3870
<a id="7.10.0"></a>
3971
## 2017-05-02, Version 7.10.0 (Current), @evanlucas
4072

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define NODE_MINOR_VERSION 10
66
#define NODE_PATCH_VERSION 1
77

8-
#define NODE_VERSION_IS_RELEASE 0
8+
#define NODE_VERSION_IS_RELEASE 1
99

1010
#ifndef NODE_STRINGIFY
1111
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)