From owner-svn-ports-all@freebsd.org Fri Jun 12 04:47:07 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4949832E30D; Fri, 12 Jun 2020 04:47:07 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49jp9R1GYcz3f7X; Fri, 12 Jun 2020 04:47:07 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2666F24076; Fri, 12 Jun 2020 04:47:07 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05C4l7Y5051631; Fri, 12 Jun 2020 04:47:07 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05C4l6io051630; Fri, 12 Jun 2020 04:47:06 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <202006120447.05C4l6io051630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 12 Jun 2020 04:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538562 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 538562 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2020 04:47:07 -0000 Author: bhughes Date: Fri Jun 12 04:47:06 2020 New Revision: 538562 URL: https://svnweb.freebsd.org/changeset/ports/538562 Log: security/vuxml: document Node.js June 2020 Security Releases https://nodejs.org/en/blog/vulnerability/june-2020-security-releases/ Sponsored by: Miles AS Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Jun 12 04:17:12 2020 (r538561) +++ head/security/vuxml/vuln.xml Fri Jun 12 04:47:06 2020 (r538562) @@ -58,6 +58,72 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Node.js -- June 2020 Security Releases + + + node + 14.4.0 + + + node12 + 12.18.0 + + + node10 + 10.21.0 + + + + +

Node.js reports:

+
+

Updates are now available for all supported Node.js release lines for the following issues.

+

TLS session reuse can lead to host certificate verification bypass (High) (CVE-2020-8172)

+

The 'session' event could be emitted before the 'secureConnect' event. It should not be, because the + connection may fail to be authorized. If it was saved an authorized connection could be established + later with the session ticket. Note that the https agent caches sessions, so is vulnerable to this.

+

The 'session' event will now only be emitted after the 'secureConnect' event, and only for authorized + connections.

+

HTTP/2 Large Settings Frame DoS (Low) (CVE-2020-11080)

+

Receiving unreasonably large HTTP/2 SETTINGS frames can consume 100% CPU to process all the settings, + blocking all other activities until complete.

+

The HTTP/2 session frame is limited to 32 settings by default. This can be configured if necessary + using the maxSettings option.

+

napi_get_value_string_*() allows various kinds of memory corruption (High) (CVE-2020-8174)

+

Calling napi_get_value_string_latin1(), napi_get_value_string_utf8(), or napi_get_value_string_utf16() + with a non-NULL buf, and a bufsize of 0 will cause the entire string value to be written to buf, + probably overrunning the length of the buffer.

+

A exploit has not been reported and it may be difficult but the following is suggested:

+
    +
  • All users of LTS Node.js versions should update to the versions announced in this security post. + This will address the issue for any non pre-built add-on.
  • +
  • Maintainers who support EOL Node.js versions and/or build against a version of Node.js that did not + support N-API internally should update to use the new versions of node-addon-api 1.x and 2.x that + will be released soon after this announcement.
  • +
+

ICU-20958 Prevent SEGV_MAPERR in append (High) (CVE-2020-10531)

+

An issue was discovered in International Components for Unicode (ICU) for C/C++ through 66.1. An + integer overflow, leading to a heap-based buffer overflow, exists in the UnicodeString::doAppend() + function in common/unistr.cpp.

+

Fix was applied to 10.x in an abundance of caution, even though there is no known way to trigger the + overflow in 10.x.

+
+ +
+ + https://nodejs.org/en/blog/vulnerability/june-2020-security-releases/ + CVE-2020-8174 + CVE-2020-8172 + CVE-2020-10531 + CVE-2020-11080 + + + 2020-06-02 + 2020-06-12 + +
+ tcpreplay -- Multiple vulnerabilities