How do you read the binary with gdb when characters are not available?

How do you read binary files that have been split into strip?

This means disas mainit won’t even work.

How can one read such binary files?

I have seen this requirement in the job description before.

+3
source share
1 answer
  • In GDB, use addresses (disas * 0x80001000) or use case values ​​(disas $ pc $ pc + 10).
  • Use objdump -d. He does not care about symbols.
  • Use IDA Pro :)
+1
source

All Articles