Offzip - http://aluigi.org/mytoolz.htm#offzip
Abstract:
dump zlib/deflate compressed data, help in reversing file formats, why scanning compressions isn't possible with any algorithm
Imagine a situation in which you have a file and you have no idea of its content or you don't know its format to create a parser.
The first thing to try is usually checking if there is compressed data in it and extracting it on the fly or you can use some information about the compressed and uncompressed size to write a file format parser.
The most used compression algorithm in the world is deflate, also known as zlib.
Deflate and zlib are basically the same algorithm but with a small important difference:
- deflate [url=http://www.ietf.org/rfc/rfc1951.txt]RFC1951[/url] is the pure compressed stream: no headers, just data
- zlib [url=http://www.ietf.org/rfc/rfc1950.txt]RFC1950[/url] is a deflate stream with a small header at the beginning and a CRC at the end
You can recognize it due to the presence of the 0x78 byte at the beginning of the compressed data
The problem of compression algorithms is that without a CRC it's impossible to know if the decompressed data is valid or just a sort of "false positive".
In this case zlib gives excellent results and we can really scan a whole file extracting all the compressed streams almost without false positives.
Instead with deflate we will get many false positives and so it's up to us to understand if it's used for real or not.
There is a command-line tool of mine which is very helpful to scan the zlib and deflate streams, it's called offzip.
Like all the tools of mine there is a runtime help that is displayed when you launch the tool without arguments, so refer to it for any additional option.
The quick command-line example is the following:
Code: Select all
offzip -S file.dat 0 0
It will scan the file "file.dat" searching for zlib compressed streams and will return the offset, the compressed and decompressed size and the total number of data found.
It's also possible to dump the results directly in a folder:
Code: Select all
offzip -a file.dat output_folder 0
If you want to scan the file for raw deflate compressed data use the following:
Code: Select all
offzip -z -15 -S file.dat 0 0
The "-z" option specifies the windowBits value used by the [url=http://zlib.net]zlib[/lib] library where a positive number is used for zlib and a negative one for deflate.
The following is an example of successful zlib scan:
Code: Select all
Offset file unzipper 0.3.5
by Luigi Auriemma
e-mail: aluigi@autistici.org
web: aluigi.org
- open input file: steamservice.idb
- zip data to check: 32 bytes
- zip windowBits: 15
- seek offset: 0x00000000 (0)
+------------+-------------+-------------------------+
| hex_offset | blocks_dots | zip_size --> unzip_size |
+------------+-------------+-------------------------+
0x00000105 ...................... 4342469 --> 18112512
0x004243d3 ...................... 1687404 --> 11886592
0x005c0348 ........ 14626 --> 49152
0x005c3c73 . 601 --> 1380
- 4 valid zip blocks found
And how you know if there are false positives?
Simple, you will see lot of dots without the compressed/uncompressed sizes on the right and many error messages.
With deflate (-z -15) don't trust the results, often they are false positives except if you see many subsequent sequences.
Personally I find offzip very useful when I work on not-so-simple archives and I want a quick way to retrieve the compressed and uncompressed size values that I can search in the file with a hex editor to locate the header.
In this case I use the -x option that dumps the size values in hexadecimal format.
I take one of the two value, search it in 32bit little endian with the hex editor and then I check if there is also the other value close to it.
After you locate the header containing information about the archived files, it's more easy to have an idea of the structure used for each entry.
Just to recap, if you want to:
- know if there are zlib compressed streams: offzip -S file.dat 0 0
- know if there are deflate compressed streams (false positives!): offzip -S -z -15 -q file.dat 0 0
- dump the zlib results: offzip -a file.dat c:\output_folder 0
- dump the results in one unique file, useful when there are chunked files: offzip -a -1 file.dat c:\output_folder 0
- analyze an archive to retrieve the index table containing offset/zsize/size: offzip -S -x file.dat 0 0
- dump the results in a file (maybe to use later with packzip [work-in-progress!]): offzip -a -L c:\output_folder\dump.txt file.dat c:\output_folder 0