Open
Description
Environment
Ubuntu 22.04
Description
I want to obtain all the instructions. After trying to modify some analysis configuration parameters, I found that it didn’t work—I still got only partial instructions, and the addresses were discontinuous (often related to jmp
). I compared it with objdump
and found that many intermediate instructions were omitted. Is there any command or parameter that can achieve this?
Activity
[-]pdf command will skip intermediate instructions when encountering consecutive jmp instructions[/-][+]pdf command will skip intermediate instructions by default[/+]trufae commentedon Apr 10, 2025
pdf shows only the instructions covered by the analysis in a linear fashion. if you want it recursive use pdr, if you want everything, even whats not part of the function and its in between the basic blocks use
pD $FS
trufae commentedon Apr 11, 2025
can you confirm?