Recently I needed to use python to extract the contents of a password-protected zip archive and I came across a few issues I thought would be good to document.
Python has a build in zipfile library that is really good at handling zip files, but unfortunately has a few limitations when it comes to encrypted zip files. This is how Python3 can be used to extract a file from an encrypted zip archive:
The first issue that I came across was some unclear documentation for the "open" method of zipfile in Python 3. The open method uses the "pwd" argument to pass the password for the file, but in Python 3 you need to convert this to bytes before calling open. Unfortunately, the library only seems to support CRC-32 based encryption - meaning that the default linux zip encryption will work, but AES will not. I was also unable to get this to work with 7zip and WinZip.
Subscribe to:
Post Comments (Atom)
Why won't my Angular app include cookies in a POST request?
Recently while working on an Angular web app operating with CORS on localhost against a SpringBoot server I had an issue where my GET reque...
-
Scientific computing and HPC developers will probably be familiar with Intel's C/C++ compiler suite , which can be used to compile...
-
Alchemy allows users to donate to their chose charities via text message, which it used to do automatically using Android's SmsManager ...
-
I've recently installed AIPS (version 31DEC16) on Ubuntu 16.04. Here are my notes on the installation experience. Due to recent compiler...
No comments:
Post a Comment
Note: only a member of this blog may post a comment.