How can I protect myself from a zip bomb?

2020-01-30 03:56发布

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?

7条回答
等我变得足够好
2楼-- · 2020-01-30 04:04

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.

查看更多
我想做一个坏孩纸
3楼-- · 2020-01-30 04:09

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.

查看更多
干净又极端
4楼-- · 2020-01-30 04:12

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.

查看更多
\"骚年 ilove
5楼-- · 2020-01-30 04:16

Check a zip header first :)

查看更多
该账号已被封号
6楼-- · 2020-01-30 04:18

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()
查看更多
Evening l夕情丶
7楼-- · 2020-01-30 04:20

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

查看更多
登录 后发表回答