From owner-svn-ports-head@freebsd.org Thu Oct 24 10:38:57 2019 Return-Path: Delivered-To: svn-ports-head@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 95B7C16807B; Thu, 24 Oct 2019 10:38:57 +0000 (UTC) (envelope-from rodrigo@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 46zNyT3SHKz4prb; Thu, 24 Oct 2019 10:38:57 +0000 (UTC) (envelope-from rodrigo@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 5583ACD5D; Thu, 24 Oct 2019 10:38:57 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9OAcvoR072802; Thu, 24 Oct 2019 10:38:57 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9OAcvja072800; Thu, 24 Oct 2019 10:38:57 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201910241038.x9OAcvja072800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 24 Oct 2019 10:38:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515330 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 515330 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Oct 2019 10:38:57 -0000 Author: rodrigo Date: Thu Oct 24 10:38:56 2019 New Revision: 515330 URL: https://svnweb.freebsd.org/changeset/ports/515330 Log: Document potential bypass of Runas user restrictions in sudo PR: 241244 Submitted by: Yasuhiro KIMURA Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Oct 24 10:28:03 2019 (r515329) +++ head/security/vuxml/vuln.xml Thu Oct 24 10:38:56 2019 (r515330) @@ -58,6 +58,42 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + sudo -- Potential bypass of Runas user restrictions + + + sudo + 1.8.28 + + + + +

Todd C. Miller reports:

+
+

When sudo is configured to allow a user to run commands as an + arbitrary user via the ALL keyword in a Runas specification, it + is possible to run commands as root by specifying the user ID -1 + or 4294967295.

+

This can be used by a user with sufficient sudo privileges to + run commands as root even if the Runas specification explicitly + disallows root access as long as the ALL keyword is listed first + in the Runas specification.

+

Log entries for commands run this way will list the target user + as 4294967295 instead of root. In addition, PAM session modules + will not be run for the command.

+
+ +
+ + https://www.sudo.ws/alerts/minus_1_uid.html + CVE-2019-14287 + + + 2019-10-15 + 2019-10-24 + +
+ Loofah -- XSS vulnerability