Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] nodejs: security bump to version 8.14.0
@ 2018-12-09 22:18 Peter Korsgaard
  2018-12-10 10:48 ` Thomas Petazzoni
  2018-12-16 21:10 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-12-09 22:18 UTC (permalink / raw)
  To: buildroot

Fixes the following security vulnerabilities:

- Node.js: Denial of Service with large HTTP headers (CVE-2018-12121)
- Node.js: Slowloris HTTP Denial of Service (CVE-2018-12122 / Node.js)
- Node.js: Hostname spoofing in URL parser for javascript protocol
  (CVE-2018-12123)
- Node.js: HTTP request splitting (CVE-2018-12116)
- OpenSSL: Timing vulnerability in DSA signature generation (CVE-2018-0734)
- OpenSSL: Microarchitecture timing vulnerability in ECC scalar
  multiplication (CVE-2018-5407)

For more details, see the announcement:
https://nodejs.org/en/blog/release/v8.14.0/

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/nodejs/nodejs.hash | 4 ++--
 package/nodejs/nodejs.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/nodejs/nodejs.hash b/package/nodejs/nodejs.hash
index 70d67730b1..13a5c2daa5 100644
--- a/package/nodejs/nodejs.hash
+++ b/package/nodejs/nodejs.hash
@@ -1,5 +1,5 @@
-# From https://nodejs.org/dist/v8.12.0/SHASUMS256.txt
-sha256 5a9dff58016c18fb4bf902d963b124ff058a550ebcd9840c677757387bce419a  node-v8.12.0.tar.xz
+# From https://nodejs.org/dist/v8.14.0/SHASUMS256.txt
+sha256 8ce252913c9f6aaa9871f2d9661b6e54858dae2f0064bd3c624676edb09083c4  node-v8.14.0.tar.xz
 
 # Hash for license file
 sha256 b87be6c1479ed977481115869c2dd8b6d59e5ea55aa09939d6c898242121b2f5  LICENSE
diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
index 429642b795..8c8afbc332 100644
--- a/package/nodejs/nodejs.mk
+++ b/package/nodejs/nodejs.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-NODEJS_VERSION = 8.12.0
+NODEJS_VERSION = 8.14.0
 NODEJS_SOURCE = node-v$(NODEJS_VERSION).tar.xz
 NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
 NODEJS_DEPENDENCIES = host-python host-nodejs c-ares \
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] nodejs: security bump to version 8.14.0
  2018-12-09 22:18 [Buildroot] [PATCH] nodejs: security bump to version 8.14.0 Peter Korsgaard
@ 2018-12-10 10:48 ` Thomas Petazzoni
  2018-12-16 21:10 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-12-10 10:48 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun,  9 Dec 2018 23:18:30 +0100, Peter Korsgaard wrote:
> Fixes the following security vulnerabilities:
> 
> - Node.js: Denial of Service with large HTTP headers (CVE-2018-12121)
> - Node.js: Slowloris HTTP Denial of Service (CVE-2018-12122 / Node.js)
> - Node.js: Hostname spoofing in URL parser for javascript protocol
>   (CVE-2018-12123)
> - Node.js: HTTP request splitting (CVE-2018-12116)
> - OpenSSL: Timing vulnerability in DSA signature generation (CVE-2018-0734)
> - OpenSSL: Microarchitecture timing vulnerability in ECC scalar
>   multiplication (CVE-2018-5407)
> 
> For more details, see the announcement:
> https://nodejs.org/en/blog/release/v8.14.0/
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/nodejs/nodejs.hash | 4 ++--
>  package/nodejs/nodejs.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] nodejs: security bump to version 8.14.0
  2018-12-09 22:18 [Buildroot] [PATCH] nodejs: security bump to version 8.14.0 Peter Korsgaard
  2018-12-10 10:48 ` Thomas Petazzoni
@ 2018-12-16 21:10 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-12-16 21:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes the following security vulnerabilities:
 > - Node.js: Denial of Service with large HTTP headers (CVE-2018-12121)
 > - Node.js: Slowloris HTTP Denial of Service (CVE-2018-12122 / Node.js)
 > - Node.js: Hostname spoofing in URL parser for javascript protocol
 >   (CVE-2018-12123)
 > - Node.js: HTTP request splitting (CVE-2018-12116)
 > - OpenSSL: Timing vulnerability in DSA signature generation (CVE-2018-0734)
 > - OpenSSL: Microarchitecture timing vulnerability in ECC scalar
 >   multiplication (CVE-2018-5407)

 > For more details, see the announcement:
 > https://nodejs.org/en/blog/release/v8.14.0/

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2018.02.x, 2018.08.x and 2018.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-16 21:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-09 22:18 [Buildroot] [PATCH] nodejs: security bump to version 8.14.0 Peter Korsgaard
2018-12-10 10:48 ` Thomas Petazzoni
2018-12-16 21:10 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox