diff mbox series

[dunfell] go: ignore CVE-2022-41716

Message ID 20230419215408.8314-1-peter.marko@siemens.com
State Accepted, archived
Commit 4263f3fda59aacb4f159d2dffb52e5f66249b5e4
Headers show
Series [dunfell] go: ignore CVE-2022-41716 | expand

Commit Message

Peter Marko April 19, 2023, 9:54 p.m. UTC
This CVE is specific to Microsoft Windows, ignore it.

Patch fixing it (https://go-review.googlesource.com/c/go/+/446916)
also adds a redundant check to generic os/exec which
could be backported but it should not be necessary as
backport always takes a small risk to break old code.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
---
 meta/recipes-devtools/go/go-1.14.inc | 3 +++
 1 file changed, 3 insertions(+)

Comments

Steve Sakoman April 19, 2023, 10:13 p.m. UTC | #1
On Wed, Apr 19, 2023 at 11:54 AM Peter Marko via
lists.openembedded.org
<peter.marko=siemens.com@lists.openembedded.org> wrote:
>
> This CVE is specific to Microsoft Windows, ignore it.
>
> Patch fixing it (https://go-review.googlesource.com/c/go/+/446916)
> also adds a redundant check to generic os/exec which
> could be backported but it should not be necessary as
> backport always takes a small risk to break old code.
>
> Signed-off-by: Peter Marko <peter.marko@siemens.com>
> ---
>  meta/recipes-devtools/go/go-1.14.inc | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-devtools/go/go-1.14.inc b/meta/recipes-devtools/go/go-1.14.inc
> index f2a5fc3f7c..5ecb10040d 100644
> --- a/meta/recipes-devtools/go/go-1.14.inc
> +++ b/meta/recipes-devtools/go/go-1.14.inc
> @@ -80,3 +80,6 @@ CVE_CHECK_WHITELIST += "CVE-2021-41772"
>
>  # Fixes code that was added in go1.16, does not exist in 1.14
>  CVE_CHECK_WHITELIST += "CVE-2022-30630"
> +
> +# This is specific to Microsoft Windows
> +CVE_CHECK_IGNORE += "CVE-2022-41716"

For dunfell this should be CVE_CHECK_WHITELIST not CVE_CHECK_IGNORE

I've fixed it, so no need for a v2.

Thanks for helping with CVEs!

Steve

> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#180228): https://lists.openembedded.org/g/openembedded-core/message/180228
> Mute This Topic: https://lists.openembedded.org/mt/98377227/3620601
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [steve@sakoman.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

diff --git a/meta/recipes-devtools/go/go-1.14.inc b/meta/recipes-devtools/go/go-1.14.inc
index f2a5fc3f7c..5ecb10040d 100644
--- a/meta/recipes-devtools/go/go-1.14.inc
+++ b/meta/recipes-devtools/go/go-1.14.inc
@@ -80,3 +80,6 @@  CVE_CHECK_WHITELIST += "CVE-2021-41772"
 
 # Fixes code that was added in go1.16, does not exist in 1.14
 CVE_CHECK_WHITELIST += "CVE-2022-30630"
+
+# This is specific to Microsoft Windows
+CVE_CHECK_IGNORE += "CVE-2022-41716"