zipfile cant handle some type of zip data?

前端 未结 3 849
深忆病人
深忆病人 2021-01-02 09:54

I came up over this problem while trying to decompress a zip file.

-- zipfile.is_zipfile(my_file) always returns False, even though the UNIX command unz

相关标签:
3条回答
  • 2021-01-02 10:05
    # Utilize mmap module to avoid a potential DoS exploit (e.g. by reading the
    # whole zip file into memory). A bad zip file example can be found here:
    # https://bugs.python.org/issue24621
    
    import mmap
    from io import UnsupportedOperation
    from zipfile import BadZipfile
    
    # The end of central directory signature
    CENTRAL_DIRECTORY_SIGNATURE = b'\x50\x4b\x05\x06'
    
    
    def repair_central_directory(zipFile):
        if hasattr(zipFile, 'read'):
            # This is a file-like object
            f = zipFile
            try:
                fileno = f.fileno()
            except UnsupportedOperation:
                # This is an io.BytesIO instance which lacks a backing file.
                fileno = None
        else:
            # Otherwise, open the file with binary mode
            f = open(zipFile, 'rb+')
            fileno = f.fileno()
        if fileno is None:
            # Without a fileno, we can only read and search the whole string
            # for the end of central directory signature.
            f.seek(0)
            pos = f.read().find(CENTRAL_DIRECTORY_SIGNATURE)
        else:
            # Instead of reading the entire file into memory, memory-mapped the
            # file, then search it for the end of central directory signature.
            # Reference: https://stackoverflow.com/a/21844624/2293304
            mm = mmap.mmap(fileno, 0)
            pos = mm.find(CENTRAL_DIRECTORY_SIGNATURE)
            mm.close()
        if pos > -1:
            # size of 'ZIP end of central directory record'
            f.truncate(pos + 22)
            f.seek(0)
            return f
        else:
            # Raise an error to make it fail fast
            raise BadZipfile('File is not a zip file')
    
    0 讨论(0)
  • 2021-01-02 10:23

    Run into the same issue on my files and was able to solve it. I'm not sure how they were generated, like in the above example. They all had trailing data in the end ignored by both Windows by 7z and failing python's zipfile.

    This is the code to solve the issue:

    def fixBadZipfile(zipFile):  
         f = open(zipFile, 'r+b')  
         data = f.read()  
         pos = data.find('\x50\x4b\x05\x06') # End of central directory signature  
         if (pos > 0):  
             self._log("Truncating file at location " + str(pos + 22) + ".")  
             f.seek(pos + 22)   # size of 'ZIP end of central directory record' 
             f.truncate()  
             f.close()  
         else:  
             # raise error, file is truncated  
    
    0 讨论(0)
  • 2021-01-02 10:23

    You say using less on the file it shows such and such. Do you mean this?

    less my_file
    

    If so, I would guess these are comments that the zip program put in the file. Looking at a user guide for the iSeries PKZIP I found on the web, this appears to be the default behavior.

    The docs for zipfile say "This module does not currently handle ZIP files which have appended comments." Perhaps this is the problem? (Of course, if less shows them, this would seem to imply that they're prepended, FWIW.)

    It appears you (or whoever created the zipfile on an iSeries machine) can turn this off with ARCHTEXT(*NONE), or use ARCHTEXT(*CLEAR) to remove it from an existing zipfile.

    0 讨论(0)
提交回复
热议问题