|
|
f8e6ca |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
f8e6ca |
From: "Miss Islington (bot)"
|
|
|
f8e6ca |
<31488909+miss-islington@users.noreply.github.com>
|
|
|
f8e6ca |
Date: Wed, 15 Jul 2020 05:36:36 -0700
|
|
|
f8e6ca |
Subject: [PATCH] 00351: Avoid infinite loop in the tarfile module
|
|
|
f8e6ca |
|
|
|
f8e6ca |
Avoid infinite loop when reading specially crafted TAR files using the tarfile module
|
|
|
f8e6ca |
(CVE-2019-20907).
|
|
|
f8e6ca |
Fixed upstream: https://bugs.python.org/issue39017
|
|
|
f8e6ca |
---
|
|
|
f8e6ca |
Lib/tarfile.py | 2 ++
|
|
|
f8e6ca |
Lib/test/recursion.tar | Bin 0 -> 516 bytes
|
|
|
f8e6ca |
Lib/test/test_tarfile.py | 7 +++++++
|
|
|
f8e6ca |
.../2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst | 1 +
|
|
|
f8e6ca |
4 files changed, 10 insertions(+)
|
|
|
f8e6ca |
create mode 100644 Lib/test/recursion.tar
|
|
|
f8e6ca |
create mode 100644 Misc/NEWS.d/next/Library/2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst
|
|
|
f8e6ca |
|
|
|
f8e6ca |
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
|
|
|
f8e6ca |
index 62d22150f5..2ea47978ff 100755
|
|
|
f8e6ca |
--- a/Lib/tarfile.py
|
|
|
f8e6ca |
+++ b/Lib/tarfile.py
|
|
|
f8e6ca |
@@ -1231,6 +1231,8 @@ class TarInfo(object):
|
|
|
f8e6ca |
|
|
|
f8e6ca |
length, keyword = match.groups()
|
|
|
f8e6ca |
length = int(length)
|
|
|
f8e6ca |
+ if length == 0:
|
|
|
f8e6ca |
+ raise InvalidHeaderError("invalid header")
|
|
|
f8e6ca |
value = buf[match.end(2) + 1:match.start(1) + length - 1]
|
|
|
f8e6ca |
|
|
|
f8e6ca |
# Normally, we could just use "utf-8" as the encoding and "strict"
|
|
|
f8e6ca |
diff --git a/Lib/test/recursion.tar b/Lib/test/recursion.tar
|
|
|
f8e6ca |
new file mode 100644
|
|
|
f8e6ca |
index 0000000000000000000000000000000000000000..b8237251964983f54ed1966297e887636cd0c5f4
|
|
|
f8e6ca |
GIT binary patch
|
|
|
f8e6ca |
literal 516
|
|
|
f8e6ca |
zcmYdFPRz+kEn=W0Fn}74P8%Xw3X=l~85kIuo0>8xq$A1Gm}!7)KUsFc41m#O8A5+e
|
|
|
f8e6ca |
I1_}|j06>QaCIA2c
|
|
|
f8e6ca |
|
|
|
f8e6ca |
literal 0
|
|
|
f8e6ca |
HcmV?d00001
|
|
|
f8e6ca |
|
|
|
f8e6ca |
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
|
|
|
f8e6ca |
index 4cd7d5370f..573be812ea 100644
|
|
|
f8e6ca |
--- a/Lib/test/test_tarfile.py
|
|
|
f8e6ca |
+++ b/Lib/test/test_tarfile.py
|
|
|
f8e6ca |
@@ -395,6 +395,13 @@ class CommonReadTest(ReadTest):
|
|
|
f8e6ca |
with self.assertRaisesRegex(tarfile.ReadError, "unexpected end of data"):
|
|
|
f8e6ca |
tar.extractfile(t).read()
|
|
|
f8e6ca |
|
|
|
f8e6ca |
+ def test_length_zero_header(self):
|
|
|
f8e6ca |
+ # bpo-39017 (CVE-2019-20907): reading a zero-length header should fail
|
|
|
f8e6ca |
+ # with an exception
|
|
|
f8e6ca |
+ with self.assertRaisesRegex(tarfile.ReadError, "file could not be opened successfully"):
|
|
|
f8e6ca |
+ with tarfile.open(support.findfile('recursion.tar')) as tar:
|
|
|
f8e6ca |
+ pass
|
|
|
f8e6ca |
+
|
|
|
f8e6ca |
class MiscReadTestBase(CommonReadTest):
|
|
|
f8e6ca |
def requires_name_attribute(self):
|
|
|
f8e6ca |
pass
|
|
|
f8e6ca |
diff --git a/Misc/NEWS.d/next/Library/2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst b/Misc/NEWS.d/next/Library/2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst
|
|
|
f8e6ca |
new file mode 100644
|
|
|
f8e6ca |
index 0000000000..ad26676f8b
|
|
|
f8e6ca |
--- /dev/null
|
|
|
f8e6ca |
+++ b/Misc/NEWS.d/next/Library/2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst
|
|
|
f8e6ca |
@@ -0,0 +1 @@
|
|
|
f8e6ca |
+Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).
|