Binwalk is a simple linux tool for analysing binary files for embeded files and executable code. It is mostly used to extract the content of firmware images.
On kali linux, binwalk is already installed. On ubuntu you can do apt-get install binwalk or you can go to https://github.com/devttys0/binwalk and follow the instructions.
The first thing to do when you interact with a new linux tool is to read it's manual pages, this is done by issuing the command man binwalk. The manual pages offers an overview of the commands supported by binwalk.
binwalk.jpg
Issuing binwalk 'filename.bin'
results in binwalk showing the contents of the binary files, and the offset at which the file begins in hexadecimal and decimal. THe offset is useful if you want to extract the contents of the file with a toll like dd
.
Binwalk can also automatically extract all the files it finds within the firmware image, this is possible with the -e
switch. Binwalk can also search for string in the binary files with the -S
option. The -M matryoshka
option instructs binwalk to recursively scan extracted files, the matroshka is a reference to Russian dolls that have other dolls inside them.
matroshka.jpg
binwalk is a important tool for a forensic analyst. Coupled with other tools it can be a invaluable tool in an investigation.
that's hardly necessary when binwalk is Open Source. I very much expect proprietary firmware tools could be "faster"(I'm not totally sure what needs to be faster here, my point may be totally moot) Maybe you can re-think the question?