From patchwork Sun Jul 23 09:22:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Marko X-Patchwork-Id: 27833 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 C77E0C001DC for ; Sun, 23 Jul 2023 09:23:03 +0000 (UTC) Received: from mta-64-228.siemens.flowmailer.net (mta-64-228.siemens.flowmailer.net [185.136.64.228]) by mx.groups.io with SMTP id smtpd.web10.22439.1690104179290587229 for ; Sun, 23 Jul 2023 02:23:00 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=peter.marko@siemens.com header.s=fm1 header.b=MV6uQkY5; spf=pass (domain: rts-flowmailer.siemens.com, ip: 185.136.64.228, mailfrom: fm-256628-202307230922569ac8e1ca79a99bf644-_z0hnd@rts-flowmailer.siemens.com) Received: by mta-64-228.siemens.flowmailer.net with ESMTPSA id 202307230922569ac8e1ca79a99bf644 for ; Sun, 23 Jul 2023 11:22:57 +0200 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; bh=CeRh44XXt8A9ypJCTCuOvHtI6jb3u/2ZcV5t7RFbats=; b=MV6uQkY5f/YXRwdhBmQQbQht7ICihd68I11zbO5Qx2/uj+VVl897WKK3PxCNGKr0ZKhU72 5Ne+QROMavPvdHvu8zjJQIUVBpQG+sjvmiUK+iXzk1o0forK6SszwOlfsIGZTyxJ6hB6pquG zmGQZpcY8SXQRLIdueEN65NoKsAAU=; From: Peter Marko To: openembedded-core@lists.openembedded.org Cc: Peter Marko , Ross Burton , Alexandre Belloni , Richard Purdie Subject: [OE-core][mickledore][PATCH] python3: ignore CVE-2023-36632 Date: Sun, 23 Jul 2023 11:22:19 +0200 Message-Id: <20230723092219.41008-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 ; Sun, 23 Jul 2023 09:23:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/184744 From: Peter Marko This CVE shouldn't have been filed as the "exploit" is described in the documentation as how the library behaves. Signed-off-by: Ross Burton Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit c652f094d86c4efb7ff99accba63b8169493ab18) Signed-off-by: Peter Marko --- meta/recipes-devtools/python/python3_3.11.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/python/python3_3.11.2.bb b/meta/recipes-devtools/python/python3_3.11.2.bb index 5bd8d32b14..f3be9768bf 100644 --- a/meta/recipes-devtools/python/python3_3.11.2.bb +++ b/meta/recipes-devtools/python/python3_3.11.2.bb @@ -56,6 +56,8 @@ CVE_CHECK_IGNORE += "CVE-2020-15523 CVE-2022-26488" # The mailcap module is insecure by design, so this can't be fixed in a meaningful way. # The module will be removed in the future and flaws documented. CVE_CHECK_IGNORE += "CVE-2015-20107" +# Not an issue, in fact expected behaviour +CVE_CHECK_IGNORE += "CVE-2023-36632" PYTHON_MAJMIN = "3.11"