pwndbg config
This file contains 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
source ~/git/pwndbg/gdbinit.py | |
#source ~/git/peda/peda.py | |
set context-code-lines 7 | |
set dereference-limit 3 | |
set context-source-code-lines 5 | |
set context-stack-lines 5 | |
set context-sections regs disasm code stack expressions | |
add-auto-load-safe-path /home/kyra/ctf/ | |
source ~/git/splitmind/gdbinit.py | |
define serious | |
python | |
import splitmind | |
(splitmind.Mind() | |
.right(of="main", display="disasm") | |
.below(display="regs", size="27") | |
.below(display="stack", size="7") | |
#.below(of="main", display="code", size="7") | |
#.below(of="main", cmd="ipython", size="10") | |
.below(of="main", display="expressions", size="1") | |
.show("legend", on="disasm") | |
).build() | |
end | |
end% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment