summaryrefslogtreecommitdiff
path: root/bz2217902-1-kubevirt-fix-bundled-dateutil-CVE-2007-4559.patch
blob: 97707a57a8341007a4c3ea814fe25d54f6d33889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- a/kubevirt/dateutil/zoneinfo/rebuild.py	2023-01-26 16:29:30.000000000 +0100
+++ b/kubevirt/dateutil/zoneinfo/rebuild.py	2023-07-19 10:12:42.277559948 +0200
@@ -21,7 +21,12 @@
     try:
         with TarFile.open(filename) as tf:
             for name in zonegroups:
-                tf.extract(name, tmpdir)
+                if hasattr(tarfile, 'data_filter'):
+                    # Python with CVE-2007-4559 mitigation (PEP 706)
+                    tf.extract(name, tmpdir, filter='data')
+                else:
+                    # Fallback to a possibly dangerous extraction (before PEP 706)
+                    tf.extract(name, tmpdir)
             filepaths = [os.path.join(tmpdir, n) for n in zonegroups]
 
             _run_zic(zonedir, filepaths)