开发者

How do you read the binary with gdb when no symbols available?

开发者 https://www.devze.com 2023-03-03 19:20 出处:网络
How do you read binaries that have been stripped by strip? That means,even disas main won\'t work. How can one be able to read such binar开发者_开发知识库ies?

How do you read binaries that have been stripped by strip?

That means,even disas main won't work.

How can one be able to read such binar开发者_开发知识库ies?

I saw this kind of requirement in a job description before.


  1. In GDB, use addresses (disas *0x80001000) or use register values (disas $pc $pc+10).
  2. Use objdump -d. It doesn't care about symbols.
  3. Use IDA Pro :)
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号