summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2022-01-10 12:19:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-25 12:07:01 +0000
commit3314a8f59ec5ae4d4637eefc96bedc7b57a55eb7 (patch)
treedb594d9167c71625a1ebc2df519e3376ae425245 /meta
parentd4928afea65c3e171821e002e9b4ca96114965d2 (diff)
downloadpoky-3314a8f59ec5ae4d4637eefc96bedc7b57a55eb7.tar.gz
xserver-xorg: whitelist two CVEs
CVE-2011-4613 is specific to Debian/Ubuntu. CVE-2020-25697 is a non-trivial attack that may not actually be feasible considering the default behaviour for clients is to exit if the connection is lost. (From OE-Core rev: f82c65b3c69738401ecdac354ed65308929cc20f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit afa2e6c31a79f75ff4113d53f618bbb349cd6c17) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xorg.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
index 497515a04a..d83cb94317 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
@@ -18,6 +18,14 @@ XORG_PN = "xorg-server"
18SRC_URI = "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${PV}.tar.bz2" 18SRC_URI = "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${PV}.tar.bz2"
19 19
20CVE_PRODUCT = "xorg-server x_server" 20CVE_PRODUCT = "xorg-server x_server"
21# This is specific to Debian's xserver-wrapper.c
22CVE_CHECK_WHITELIST += "CVE-2011-4613"
23# As per upstream, exploiting this flaw is non-trivial and it requires exact
24# timing on the behalf of the attacker. Many graphical applications exit if their
25# connection to the X server is lost, so a typical desktop session is either
26# impossible or difficult to exploit. There is currently no upstream patch
27# available for this flaw.
28CVE_CHECK_WHITELIST += "CVE-2020-25697"
21 29
22S = "${WORKDIR}/${XORG_PN}-${PV}" 30S = "${WORKDIR}/${XORG_PN}-${PV}"
23 31