Hello community, here is the log from the commit of package xorg-x11-libs for openSUSE:11.3 checked in at Mon Sep 5 17:32:48 CEST 2011.
-------- --- old-versions/11.3/all/xorg-x11-libs/xorg-x11-libs.changes 2010-05-06 10:45:23.000000000 +0200 +++ 11.3/xorg-x11-libs/xorg-x11-libs.changes 2011-09-02 16:54:33.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Sep 2 14:44:58 UTC 2011 - [email protected] + +- U_libXfont_LZW-decompress-fix-for-CVE-2011-2895.patch + * LZW decompress: fix for CVE-2011-2895 (bnc #709851) + +------------------------------------------------------------------- Package does not exist at destination yet. Using Fallback old-versions/11.3/all/xorg-x11-libs Destination is old-versions/11.3/UPDATES/all/xorg-x11-libs calling whatdependson for 11.3-i586 New: ---- U_libXfont_LZW-decompress-fix-for-CVE-2011-2895.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xorg-x11-libs.spec ++++++ --- /var/tmp/diff_new_pack.GhFeIs/_old 2011-09-05 17:30:11.000000000 +0200 +++ /var/tmp/diff_new_pack.GhFeIs/_new 2011-09-05 17:30:11.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package xorg-x11-libs (Version 7.5) +# spec file for package xorg-x11-libs # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -34,7 +34,7 @@ # Url: http://xorg.freedesktop.org/ Version: 7.5 -Release: 3 +Release: 4.<RELEASE2> License: GPLv2+ ; MIT License (or similar) BuildRoot: %{_tmppath}/%{name}-%{version}-build Group: System/Libraries @@ -74,6 +74,7 @@ Patch5: libxkbui.diff Patch10: libXxf86misc-xcb.diff Patch21: libXTrap-pcfix.diff +Patch22: U_libXfont_LZW-decompress-fix-for-CVE-2011-2895.patch %description This package contains the remaining X.Org libraries. @@ -230,6 +231,9 @@ pushd libXTrap-* %patch21 -p1 popd +pushd libXfont-* +%patch22 -p1 +popd %build for dir in $(ls); do ++++++ U_libXfont_LZW-decompress-fix-for-CVE-2011-2895.patch ++++++ >From d11ee5886e9d9ec610051a206b135a4cdc1e09a0 Mon Sep 17 00:00:00 2001 From: Thomas Hoger <[email protected]> Date: Mon, 8 Aug 2011 18:03:09 +0200 Subject: [PATCH] LZW decompress: fix for CVE-2011-2895 Specially crafted LZW stream can crash an application using libXfont that is used to open untrusted font files. With X server, this may allow privilege escalation when exploited Reviewed-by: Matthieu Herrb <[email protected]> Signed-off-by: Matthieu Herrb <[email protected]> Signed-off-by: Alan Coopersmith <[email protected]> --- src/fontfile/decompress.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/fontfile/decompress.c b/src/fontfile/decompress.c index b1fc37b..c8171dd 100644 --- a/src/fontfile/decompress.c +++ b/src/fontfile/decompress.c @@ -259,6 +259,8 @@ BufCompressedFill (BufFilePtr f) */ while ( code >= 256 ) { + if (stackp - de_stack >= STACK_SIZE - 1) + return BUFFILEEOF; *stackp++ = file->tab_suffix[code]; code = file->tab_prefix[code]; } -- 1.7.4.1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
