Here's the bat file:
Code:
echo Extract raw deflate stream from .zip -^> 00000000.raw
rawdet.exe book1.zip nul nul
echo Extract LZ token stream from .raw -^> 00000000.dec
raw2dec.exe 00000000.raw 00000000.dec
echo Unpack the data from .dec -^> 00000000.unp
dec2unp.exe 00000000.dec 00000000.unp > 00000000.txt
md5sum 00000000.unp
tail 00000000.txt
Do you see where to put the .zip now?
Though actually it would extract the deflate streams from any file containing them, including .pdf,.png etc.
But the main point are the utils for deflate parsing - there's source included, so you can tweak them how you need.
For example, I used raw2dec and a similar lzma utility to compare deflate and lzma entropy coding on the same
sequence of matches. threads/1288-LZMA-markup-tool
> I don't see any naming of a target .zip file anywhere.
You can replace book1.zip above with %1, then "test.bat somefile" would process what you specify.
Or you can just do the whole 3 steps manually.
> p.s. Your site is still being blocked by BitDefender and other tools.
Well, AV guys are known for blocking any hacking tools, so it may be "correct" about that.