This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Amir
Recipients Amir
Date 2020-09-12.06:49:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599893398.35.0.605473173287.issue41772@roundup.psfhosted.org>
In-reply-to
Content
Zipfile.testzip sometimes works perfectly with wrong password. refer to poc.py I've a zip file with password '76453' and when I try a wrong password with extractall:

    myzip.setpassword('10006050')
    myzip.extractall()

it raises a Bad CRC-32 exception. but when I try testzip instead of extractall:

    myzip.setpassword('10006050')
    myzip.testzip()

no exception is raised
History
Date User Action Args
2020-09-12 06:49:58Amirsetrecipients: + Amir
2020-09-12 06:49:58Amirsetmessageid: <1599893398.35.0.605473173287.issue41772@roundup.psfhosted.org>
2020-09-12 06:49:58Amirlinkissue41772 messages
2020-09-12 06:49:58Amircreate