mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
According to [1] which provided the fix link [2], but upstream author reworked it later [3][4][5] Backport and rebase all the patches for tracing [1] https://nvd.nist.gov/vuln/detail/CVE-2024-5569 [2]fd604bd34f[3]3cb5609002[4]f89b93f037[5]cc61e6140f(From OE-Core rev: 13bd99e17f0aca108839e81e9aa0b14351116fdf) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
31 lines
916 B
Diff
31 lines
916 B
Diff
From 8b09dbf95b3ba78a63f220941e31ac92f4ad192c Mon Sep 17 00:00:00 2001
|
|
From: "Jason R. Coombs" <jaraco@jaraco.com>
|
|
Date: Wed, 27 Nov 2024 23:31:57 -0800
|
|
Subject: [PATCH 2/5] Employ SanitizedNames in CompleteDirs. Fixes broken test.
|
|
|
|
Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/58115d2be968644ce71ce6bcc9b79826c82a1806]
|
|
Remove test code
|
|
Rebase to v3.7.0
|
|
CVE: CVE-2024-5569
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
zipp.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/zipp.py b/zipp.py
|
|
index 8f0950f..29d2572 100644
|
|
--- a/zipp.py
|
|
+++ b/zipp.py
|
|
@@ -130,7 +130,7 @@ class SanitizedNames:
|
|
return joined + '/' * name.endswith('/')
|
|
|
|
|
|
-class CompleteDirs(zipfile.ZipFile):
|
|
+class CompleteDirs(SanitizedNames, zipfile.ZipFile):
|
|
"""
|
|
A ZipFile subclass that ensures that implied directories
|
|
are always included in the namelist.
|
|
--
|
|
2.25.1
|
|
|