From owner-svn-ports-all@freebsd.org Thu Mar 26 04:40:49 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 2085727313C; Thu, 26 Mar 2020 04:40:49 +0000 (UTC) (envelope-from meta@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) server-signature RSA-PSS (4096 bits) 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 48nsk71Ll6z4D8W; Thu, 26 Mar 2020 04:40:46 +0000 (UTC) (envelope-from meta@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 76C5327B6D; Thu, 26 Mar 2020 04:40:23 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02Q4eNi7045848; Thu, 26 Mar 2020 04:40:23 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02Q4eN1A045844; Thu, 26 Mar 2020 04:40:23 GMT (envelope-from meta@FreeBSD.org) Message-Id: <202003260440.02Q4eN1A045844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Thu, 26 Mar 2020 04:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529161 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 529161 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.29 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: Thu, 26 Mar 2020 04:40:49 -0000 Author: meta Date: Thu Mar 26 04:40:22 2020 New Revision: 529161 URL: https://svnweb.freebsd.org/changeset/ports/529161 Log: security/vuxml: Document CVE-2020-10663 (devel/rubygem-json) PR: 245023 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Mar 26 00:35:12 2020 (r529160) +++ head/security/vuxml/vuln.xml Thu Mar 26 04:40:22 2020 (r529161) @@ -58,6 +58,46 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + rubygem-json -- Unsafe Objection Creation Vulnerability in JSON (Additional fix) + + + rubygem-json + 2.3.0 + + + + +
+

When parsing certain JSON documents, the json gem (including the + one bundled with Ruby) can be coerced into creating arbitrary objects + in the target system.

+

This is the same issue as CVE-2013-0269. The previous fix was incomplete, + which addressed JSON.parse(user_input), but didn’t address some other + styles of JSON parsing including JSON(user_input) and + JSON.parse(user_input, nil).

+

See CVE-2013-0269 in detail. Note that the issue was exploitable to + cause a Denial of Service by creating many garbage-uncollectable + Symbol objects, but this kind of attack is no longer valid because + Symbol objects are now garbage-collectable. However, creating arbitrary + bjects may cause severe security consequences depending upon the + application code.

+

Please update the json gem to version 2.3.0 or later. You can use + gem update json to update it. If you are using bundler, please add + gem "json", ">= 2.3.0" to your Gemfile.

+
+ +
+ + https://www.ruby-lang.org/en/news/2020/03/19/json-dos-cve-2020-10663/ + CVE-2020-10663 + + + 2020-03-19 + 2020-03-26 + +
+ jenkins -- multiple vulnerabilities