Skip to content

Commit 7e530ce

Browse files
committedFeb 28, 2019
2019-02-28, Version 10.15.2 'Dubnium' (LTS)
This is a security release. All Node.js users should consult the security release summary at: https://nodejs.org/en/blog/vulnerability/february-2019-security-releases/ for details on patched vulnerabilities. A fix for the following CVE is included in this release: * Node.js: Slowloris HTTP Denial of Service with keep-alive (CVE-2019-5737) Notable Changes: * http: Further prevention of "Slowloris" attacks on HTTP and HTTPS connections by consistently applying the receive timeout set by `server.headersTimeout` to connections in keep-alive mode. Reported by Marco Pracucci (https://voxnest.com). (CVE-2019-5737 / Matteo Collina) PR-URL: nodejs-private/node-private#164
1 parent 1a7302b commit 7e530ce

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ release.
2626
</tr>
2727
<tr>
2828
<td valign="top">
29-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.15.1">10.15.1</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.15.2">10.15.2</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.1">10.15.1</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.0">10.15.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V10.md#10.14.2">10.14.2</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V10.md#10.14.1">10.14.1</a><br/>

‎doc/changelogs/CHANGELOG_V10.md

+22
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td valign="top">
13+
<a href="#10.15.2">10.15.2</a><br/>
1314
<a href="#10.15.1">10.15.1</a><br/>
1415
<a href="#10.15.0">10.15.0</a><br/>
1516
<a href="#10.14.2">10.14.2</a><br/>
@@ -49,6 +50,27 @@
4950
* [io.js](CHANGELOG_IOJS.md)
5051
* [Archive](CHANGELOG_ARCHIVE.md)
5152

53+
<a id="10.15.2"></a>
54+
## 2019-02-28, Version 10.15.2 'Dubnium' (LTS), @rvagg
55+
56+
This is a security release. All Node.js users should consult the security release summary at:
57+
58+
https://nodejs.org/en/blog/vulnerability/february-2019-security-releases/
59+
60+
for details on patched vulnerabilities.
61+
62+
A fix for the following CVE is included in this release:
63+
64+
* Node.js: Slowloris HTTP Denial of Service with keep-alive (CVE-2019-5737)
65+
66+
### Notable Changes
67+
68+
* **http**: Further prevention of "Slowloris" attacks on HTTP and HTTPS connections by consistently applying the receive timeout set by `server.headersTimeout` to connections in keep-alive mode. Reported by Marco Pracucci ([Voxnest](https://voxnest.com)). (CVE-2019-5737 / Matteo Collina)
69+
70+
### Commits
71+
72+
* [[`1a7302bd48`](https://github.com/nodejs/node/commit/1a7302bd48)] - **http**: prevent slowloris with keepalive connections (Matteo Collina) [nodejs-private/node-private#158](https://github.com/nodejs-private/node-private/pull/158)
73+
5274
<a id="10.15.1"></a>
5375
## 2019-01-29, Version 10.15.1 'Dubnium' (LTS), @codebytere
5476

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
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)
Please sign in to comment.