Skip to content

Instantly share code, notes, and snippets.

@circleous
Last active May 30, 2020 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save circleous/2e9ce47c5f9049e46c38d6ce3a426d80 to your computer and use it in GitHub Desktop.
Save circleous/2e9ce47c5f9049e46c38d6ce3a426d80 to your computer and use it in GitHub Desktop.
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