1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path, check_no_ASAN_UBSAN_errors
class Jp2ImagePrintStructureICC(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/security/advisories/GHSA-583f-w9pm-99r2
"""
url = "https://github.com/Exiv2/exiv2/security/advisories/GHSA-583f-w9pm-99r2"
filename = path("$data_path/issue_ghsa_583f_w9pm_99r2_poc.jp2")
commands = ["$exiv2 -p C $filename"]
stdout = [""]
stderr = ["""$exiv2_exception_message """ + filename + """:
$kerCorruptedMetadata
"""]
retval = [1]
|