I just read about zip bombs, i.e. zip files that contain very large amount of highly compressible data (00000000000000000...).

When opened they fill the server's disk.

How can I detect a zip file is a zip bomb before unzipping it?

UPDATE Can you tell me how is this done in Python or Java?

link|improve this question

1  
The compression ratio can be smth like 1000 to 1 - not only it consumes a lot of disk space but also takes long time to write the output. – sharptooth Sep 22 '09 at 9:40
feedback

8 Answers

up vote 14 down vote accepted

Try this in Python:

import zipfile
z = zipfile.ZipFile('c:/a_zip_file')
print 'total files size=', sum(e.file_size for e in z.infolist())
z.close()
link|improve this answer
3  
At least with gzip I think the uncompressed size might not be in the header (so it might work with zip, but not with .tar.gz) – tonfa Sep 22 '09 at 12:30
@tonfa, thanks for mentioning that zipfile doesn't handle gnu zip format. – Nick Dandoulakis Sep 22 '09 at 13:05
5  
The most famous zip bomb will pass this test because the first level is not very big. You need to check ZIP depth (ZIP inside ZIP) also. – ZZ Coder Sep 22 '09 at 14:59
1  
@ZZ Coder, hmm that's true. Tom Hawtin - tackline's solution is better in case you decompress all levels at once. – Nick Dandoulakis Sep 22 '09 at 15:25
1  
Are headers "tamper-proof"? – Kevin Coulombe Nov 30 '11 at 15:19
show 2 more comments
feedback

Zip is, erm, an "interesting" format. A robust solution is to stream the data out, and stop when you have had enough. In Java, use ZipInputStream rather than ZipFile. The latter also requires you to store the data in a temporary file, which is also not the greatest of ideas.

link|improve this answer
feedback

Check a zip header first :)

link|improve this answer
feedback

Reading over the description on Wikipedia -

Deny any compressed files that contain compressed files.
     Use ZipFile.entries() to retrieve a list of files, then ZipEntry.getName() to find the file extension.
Deny any compressed files that contain files over a set size, or the size can not be determined at startup.
     While iterating over the files use ZipEntry.getSize() to retrieve the file size.

link|improve this answer
feedback

If the ZIP decompressor you use can provide the data on original and compressed size you can use that data. Otherwise start unzipping and monitor the output size - if it grows too much cut it loose.

link|improve this answer
feedback

Don't allow the upload process to write enough data to fill up the disk, ie solve the problem, not just one possible cause of the problem.

link|improve this answer
feedback

Make sure you are not using your system drive for temp storage. I am not sure if a virusscanner will check it if it encounters it.

Also you can look at the information inside the zip file and retrieve a list of the content. How to do this depends on the utility used to extract the file, so you need to provide more information here

link|improve this answer
feedback

Download files only from trusted sources.

link|improve this answer
3  
Might not protect against stupidity as it does against malice. – kaizer.se Sep 22 '09 at 10:23
1  
Never assume malice, when stupidity is a simpler explanation. – voyager Sep 22 '09 at 18:01
By stupidity, do you refer to creating a zip bomb by accident? :) Personally, I mostly download from www.download.com and www.microsoft.com, I'm not so worried about zip bombs unless microsoft decides to play a practical joke on us, not very likely IMHO – Waleed Eissa Sep 23 '09 at 2:57
Microsoft doesn't have to "decide" anything. If one of their servers gets compromised, the attacker can have it start serving up zip bombs (or anything else) in place of its normal "trusted" content. Then you will be in trouble :^) – Jeremy Friesner Sep 27 '09 at 5:53
@Jeremy, are you trying to tell me that you check the headers of every zip file you download? Actually I never heard about zip bombs before I read this question but I'm not so worried about them as long as they don't delete or damage any data on my computer. – Waleed Eissa Sep 28 '09 at 10:22
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.