How to show all stuff inside an executable using gdb?
- by Mask
gdb a.exe
(gdb) disassemble main
Dump of assembler code for function main:
0x004012d0 <main+0>: push %ebp
0x004012d1 <main+1>: mov %esp,%ebp
...
The above can only be used to show a specific part inside the executable,how to dump all functions?