Skip to content

Instantly share code, notes, and snippets.

@circleous
Last active May 30, 2020 08:45
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
pwndbg config
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