1

I have a very heavy file and with binwalk I have to extract only one file type (png) and obviously given the size of the file I can not extract all.
I tried to do binwalk -D 'png image:png' [filename] but continue to extract all files. How can I make binwalk extract only the files I want?

0

You just have to use --rm :

binwalk --dd='png image:png:' [filename] --rm

Empty files will still be created but you can just ignore / delete them.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

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