Howto unpack a .bin file

I get the following:
Code:
# file vmware-view
vmware-view: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, stripped
 
Use binwalk from ports, as well as hexedit.

Binwalk will let you find the offsets of included files.
It walks through the file looking for headers of known file types.

Hexedit may help you deduce where there may be checksums or other information as well.

If the file is encrypted, or uses a custom checksum algorithm, you may be out of luck.
 
Back
Top