From patchwork Mon Jul 20 19:27:28 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Marko X-Patchwork-Id: 92952 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 789A9C44529 for ; Mon, 20 Jul 2026 19:27:52 +0000 (UTC) Received: from mta-65-227.siemens.flowmailer.net (mta-65-227.siemens.flowmailer.net [185.136.65.227]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.5612.1784575665260567305 for ; Mon, 20 Jul 2026 12:27:46 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=peter.marko@siemens.com header.s=fm1 header.b=Gd5Pgh2E; spf=pass (domain: rts-flowmailer.siemens.com, ip: 185.136.65.227, mailfrom: fm-256628-2026072019274367bc510910000207f6-_aes0a@rts-flowmailer.siemens.com) Received: by mta-65-227.siemens.flowmailer.net with ESMTPSA id 2026072019274367bc510910000207f6 for ; Mon, 20 Jul 2026 21:27:43 +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:References:In-Reply-To; bh=C8eK4sGDc34wtfAGWvU6nYg/noPKCrMq0Hojv1+5cic=; b=Gd5Pgh2EEwA4FK/VaQdu4ZTGyLy9oilASZVwdl5J3QxEUCaG6kIM0Tw/h4VgOHMkjhR8lw bUPFCrsizbDNd2lAc1KQ/uQg7woDPF6I+h57QoO33lHCm7Wj8fgzL1IvRYT4JFb9DKckBGaZ Xd40wfjqQ+FSNNBJGkg4qpvKMFtVJtgOMOYszE3++oFDZi9Km5aND4d3Z1waiWWDgT5d/d4N YxBjLjAAxfnwXhd7QFkUvenky1YrO4RZAcZxNi8uSmhaSiudrGqB+u3ejwDAyXcGQ54W7b2d uvRm+z1lOP4TndLfVHsUW3UutPUAmq4fDdOEG4B/R4HR3kzJ2pa5RSZw==; From: Peter Marko To: openembedded-devel@lists.openembedded.org Cc: Peter Marko Subject: [meta-python][PATCH 2/6] python3-grpcio: set status for CVE-2023-33953 and CVE-2024-37168 Date: Mon, 20 Jul 2026 21:27:28 +0200 Message-ID: <20260720192732.28245-2-peter.marko@siemens.com> In-Reply-To: <20260720192732.28245-1-peter.marko@siemens.com> References: <20260720192732.28245-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 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 20 Jul 2026 19:27:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/128289 From: Peter Marko CVE-2023-33953 is fixed since 1.56.2 per [1]. FKIE sets "defaultStatus": "unknown" so it needs to be set explicitly. CVE-2024-37168 description in [2] says grpc-js. Even if (like FKIE added) grpc core would be affected, it would be in old versions (also listed in [2]). [1] https://nvd.nist.gov/vuln/detail/CVE-2023-33953 [2] https://nvd.nist.gov/vuln/detail/CVE-2024-37168 Signed-off-by: Peter Marko --- meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb index d9ec337427..867c55096f 100644 --- a/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb +++ b/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb @@ -51,3 +51,5 @@ CCACHE_DISABLE = "1" CVE_PRODUCT += "grpc:grpc" CVE_STATUS[CVE-2026-33186] = "cpe-incorrect: the vulnerabilty affects only the go implementation" +CVE_STATUS[CVE-2023-33953] = "fixed-version: Fixed since 1.56.2" +CVE_STATUS[CVE-2024-37168] = "cpe-incorrect: This CVE is for grps-js"