From patchwork Thu Dec 19 20:49:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Marko, Peter" X-Patchwork-Id: 54404 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4DCF3E77184 for ; Thu, 19 Dec 2024 20:50:46 +0000 (UTC) Received: from mta-65-226.siemens.flowmailer.net (mta-65-226.siemens.flowmailer.net [185.136.65.226]) by mx.groups.io with SMTP id smtpd.web10.138557.1734641434959316738 for ; Thu, 19 Dec 2024 12:50:37 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=peter.marko@siemens.com header.s=fm1 header.b=Lxul8eup; spf=pass (domain: rts-flowmailer.siemens.com, ip: 185.136.65.226, mailfrom: fm-256628-20241219205036815911113a5effffd0-6h4eya@rts-flowmailer.siemens.com) Received: by mta-65-226.siemens.flowmailer.net with ESMTPSA id 20241219205036815911113a5effffd0 for ; Thu, 19 Dec 2024 21:50:36 +0100 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; s=fm1; d=siemens.com; i=peter.marko@siemens.com; h=Date:From:Subject:To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc:References:In-Reply-To; bh=+CqQucpsP7m2LFK/bL1AYFG69D94dVZCTjbxt4kkx7w=; b=Lxul8eupPhA2C7PYMVUL5Javxrh1MBqhXVPtRi3pArid8IuU7XAHjhUtch5umx898CJixN T336eTDm8AVWDs7bDX45B2O/JJRh7cP14UZJR4oM4h9zlZhe11n/l1A9pg3SmtjneSqhHst9 4OG3cSQJI77wQf6bI51PIccMSIZaviI6g/MpFxCwAkw4eNraVYOmSXKydQTliR1dNChqvpcb EJDacLuE/DkYNTme95emzhM5Twp53CsXqfhyhmnBARQYLwR1rw5hRlP3+O1XIX0dlIrshjK4 vOY1DsJwW5j51tflshhgLqDWx81Ix6l02Uutv/aOIVPiryHo35hFaBfA==; From: Peter Marko To: openembedded-devel@lists.openembedded.org Cc: Peter Marko Subject: [meta-oe][PATCH v2 11/12] memcached: ignore disputed CVE-2022-26635 Date: Thu, 19 Dec 2024 21:49:00 +0100 Message-Id: <20241219204901.347009-12-peter.marko@siemens.com> In-Reply-To: <20241219204901.347009-1-peter.marko@siemens.com> References: <20241219204901.347009-1-peter.marko@siemens.com> MIME-Version: 1.0 X-Flowmailer-Platform: Siemens Feedback-ID: 519:519-256628:519-21489:flowmailer List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 19 Dec 2024 20:50:46 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/114427 From: Peter Marko Per [1] this is a problem of applications using memcached inproperly. This should not be a CVE against php-memcached, but for whatever software the issue was actually found in. php-memcached and libmemcached provide a VERIFY_KEY flag if they're too lazy to filter untrusted user input. [1] https://github.com/php-memcached-dev/php-memcached/issues/519 Signed-off-by: Peter Marko --- meta-networking/recipes-support/memcached/memcached_1.6.17.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-networking/recipes-support/memcached/memcached_1.6.17.bb b/meta-networking/recipes-support/memcached/memcached_1.6.17.bb index 270ad5486d..7234f02a13 100644 --- a/meta-networking/recipes-support/memcached/memcached_1.6.17.bb +++ b/meta-networking/recipes-support/memcached/memcached_1.6.17.bb @@ -25,6 +25,8 @@ SRC_URI = "http://www.memcached.org/files/${BP}.tar.gz \ " SRC_URI[sha256sum] = "2055e373613d8fc21529aff9f0adce3e23b9ce01ba0478d30e7941d9f2bd1224" +CVE_STATUS[CVE-2022-26635] = "disputed: this is a problem of applications using php-memcached inproperly" + # set the same COMPATIBLE_HOST as libhugetlbfs COMPATIBLE_HOST = "(i.86|x86_64|powerpc|powerpc64|aarch64|arm).*-linux*"