How to disassemble the main function of a stripped application?

前端 未结 4 1560
小鲜肉
小鲜肉 2021-01-30 01:06

Let\'s say I compiled the application below and stripped it\'s symbols.

#include 

int main()
{
    printf(\"Hello\\n\");
}

Buil

4条回答
  •  一整个雨季
    2021-01-30 01:40

    IIRC, x/i is your friend. Of course you have to figure out which location you want to disassemble yourself.

提交回复
热议问题