You can't see the contents of a pre-compiled binary (bin file) unless you reverse engineer it. If it's a linux application then chances are it will be open source and you can find the source code somewhere, otherwise you're in for a long haul.
It will contain compiled code. And you can look at that but you will need to understand assembly. I'm guessing it contains a firmware image or similar?
You can disassemble the file using something like objdump -M intel -D /path/to/file.bin you might need to add -b binary into the mix to. It will be a lot of code so pipe it out to a file rather than the default output stream.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.