fix_1097_0.27

This commit is contained in:
clanmills
2020-03-27 15:08:22 +00:00
committed by Luis Díaz Más
parent c606de4a83
commit 698b418f73
3 changed files with 40 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path, check_no_ASAN_UBSAN_errors
class InfiniteRecursionInCiffDirectoryReadDirectory(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/issues/1097
A malicious file can cause an infinite recursion.
"""
url = "https://github.com/Exiv2/exiv2/issues/1097"
filename = path("$data_path/issue_1097_poc.crw")
commands = ["$exiv2 $filename"]
stdout = [""]
stderr = [
"""$exiv2_exception_message $filename:
$kerOffsetOutOfRange
"""]
retval = [1]