4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / vulnerable_unzip.py PY
from libarchive.zip import ZipFile


zip_name = "exploit.zip"

# Does not matter
extract_path = "./"


with ZipFile(zip_name,  mode="r") as archive:
    archive.extractall(path=extract_path)