From owner-svn-ports-all@freebsd.org Sun Dec 20 23:45:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A7F2A4ED72; Sun, 20 Dec 2015 23:45:00 +0000 (UTC) (envelope-from novel@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 mx1.freebsd.org (Postfix) with ESMTPS id 4CA8E103C; Sun, 20 Dec 2015 23:45:00 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBKNixZi020065; Sun, 20 Dec 2015 23:44:59 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBKNixWb020063; Sun, 20 Dec 2015 23:44:59 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201512202344.tBKNixWb020063@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 20 Dec 2015 23:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404076 - head/security/vuxml X-SVN-Group: ports-head 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.20 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: Sun, 20 Dec 2015 23:45:00 -0000 Author: novel Date: Sun Dec 20 23:44:59 2015 New Revision: 404076 URL: https://svnweb.freebsd.org/changeset/ports/404076 Log: Document libvirt vulnerability Security: CVE-2015-5313 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Dec 20 23:37:30 2015 (r404075) +++ head/security/vuxml/vuln.xml Sun Dec 20 23:44:59 2015 (r404076) @@ -58,6 +58,54 @@ Notes: --> + + libvirt -- ACL bypass using ../ to access beyond storage pool + + + libvirt + 1.1.01.2.19_2 + 1.2.201.3.0 + + + + +

Libvit development team reports:

+
+

Various virStorageVol* API operate on user-supplied volume names by + concatenating the volume name to the pool location. Note that the + virStoragePoolListVolumes API, when used on a storage pool backed by + a directory in a file system, will only list volumes immediately in + that directory (there is no traversal into subdirectories). However, + other APIs such as virStorageVolCreateXML were not checking if a + potential volume name represented one of the volumes that could be + returned by virStoragePoolListVolumes; because they were not rejecting + the use of '/' in a volume name.

+

Because no checking was done on volume names, a user could supply + a potential volume name of something like '../../../etc/passwd' to + attempt to access a file not belonging to the storage pool. When + fine-grained Access Control Lists (ACL) are in effect, a user with + storage_vol:create ACL permission but lacking domain:write permssion + could thus abuse virStorageVolCreateXML and similar APIs to gain + access to files not normally permitted to that user. Fortunately, it + appears that the only APIs that could leak information or corrupt + files require read-write connection to libvirtd; and when ACLs are not + in use (the default without any further configuration), a user with + read-write access can already be considered to have full access to the + machine, and without an escalation of privilege there is no security + problem.

+
+ +
+ + CVE-2015-5313 + http://security.libvirt.org/2015/0004.html + + + 2015-10-30 + 2015-12-20 + +
+ samba -- multiple vulnerabilities