Comment on Biggest image in the smallest spaceparentComments−MatthewWilkes11yA python example: def decompress(data, maxsize=262144): dec = zlib.decompressobj() data = dec.decompress(data, maxsize) if dec.unconsumed_tail: raise ValueError("Possible zip Bomb") del dec return data
Comments
A python example: