From owner-svn-ports-head@freebsd.org Sun Dec 17 18:50:02 2017 Return-Path: Delivered-To: svn-ports-head@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 10848E91EC3; Sun, 17 Dec 2017 18:50:02 +0000 (UTC) (envelope-from zeising@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 DC29879E41; Sun, 17 Dec 2017 18:50:01 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBHIo0C4039346; Sun, 17 Dec 2017 18:50:00 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBHIo09A039344; Sun, 17 Dec 2017 18:50:00 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201712171850.vBHIo09A039344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 17 Dec 2017 18:50:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456560 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 456560 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.25 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: Sun, 17 Dec 2017 18:50:02 -0000 Author: zeising Date: Sun Dec 17 18:50:00 2017 New Revision: 456560 URL: https://svnweb.freebsd.org/changeset/ports/456560 Log: Document multiple vulnerabilities in libXfont and libXfont2. The first two vulnerabilities are memory leaks when reading past valid memory. The last vulnerability is the possibility for an unprivileged X client to read privileged files through symlinks CVE-2017-13720 CVE-2017-13722 CVE-2017-16611 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Dec 17 16:46:05 2017 (r456559) +++ head/security/vuxml/vuln.xml Sun Dec 17 18:50:00 2017 (r456560) @@ -58,6 +58,79 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + libXfont -- permission bypass when opening files through symlinks + + + libXfont + 1.5.4 + + + libXfont2 + 2.0.3 + + + + +

the freedesktop.org project reports:

+
+

A non-privileged X client can instruct X server running under root + to open any file by creating own directory with "fonts.dir", + "fonts.alias" or any font file being a symbolic link to any other + file in the system. X server will then open it. This can be issue + with special files such as /dev/watchdog.

+
+ +
+ + https://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=7b377456f95d2ec3ead40f4fb74ea620191f88c8 + CVE-2017-16611 + + + 2017-11-25 + 2017-12-17 + +
+ + + libXfont -- multiple memory leaks + + + libXfont + 1.5.3 + + + libXfont2 + 2.0.2 + + + + +

The freedesktop.org project reports:

+
+

If a pattern contains '?' character, any character in the string + is skipped, even if it is '\0'. The rest of the matching then reads + invalid memory.

+
+
+

Without the checks a malformed PCF file can cause the library to + make atom from random heap memory that was behind the `strings` + buffer. This may crash the process or leak information.

+
+ +
+ + https://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=d1e670a4a8704b8708e493ab6155589bcd570608 + https://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=672bb944311392e2415b39c0d63b1e1902905bcd + CVE-2017-13720 + CVE-2017-13722 + + + 2017-10-04 + 2017-12-17 + +
+ libXcursor -- integer overflow that can lead to heap buffer overflow