Avoid infinite loop when reading specially crafted TAR files using the tarfile module
(CVE-2019-20907).
Change-Id: If7420b14bb50a40afa39b933801a7d1cd2a85afe
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
length, keyword = match.groups()
length = int(length)
+ if length == 0:
+ raise InvalidHeaderError("invalid header")
value = buf[match.end(2) + 1:match.start(1) + length - 1]
# Normally, we could just use "utf-8" as the encoding and "strict"
with self.assertRaisesRegex(tarfile.ReadError, "unexpected end of data"):
tar.extractfile(t).read()
+ def test_length_zero_header(self):
+ # bpo-39017 (CVE-2019-20907): reading a zero-length header should fail
+ # with an exception
+ with self.assertRaisesRegex(tarfile.ReadError, "file could not be opened successfully"):
+ with tarfile.open(support.findfile('recursion.tar')) as tar:
+ pass
+
class MiscReadTestBase(CommonReadTest):
def requires_name_attribute(self):
pass
--- /dev/null
+Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).