Created
September 12, 2014 09:50
-
-
Save hhc0null/c96fc090659df195713b to your computer and use it in GitHub Desktop.
PEDA使えない環境?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.gdbinit | |
# show the 4 instructions include the next instruction to be executed. | |
display/4i $pc | |
# show the current EFLAGS. | |
display/t $ps | |
display/16wx $ebp - 0x20 | |
display/16wx $esp | |
display/x $edi | |
display/x $esi | |
display/x $ebx | |
display/x $edx | |
display/x $ecx | |
display/x $eax |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment