-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gdbinit
28 lines (26 loc) · 922 Bytes
/
.gdbinit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#set disable-randomization off
#set disassembly-flavor intel
set history save on
source /usr/share/pwndbg/gdbinit.py
set context-clear-screen on
set follow-fork-mode parent
#source /home/proxict/compiled/splitmind/gdbinit.py
#python
#import splitmind
#(splitmind.Mind()
# .tell_splitter(show_titles=True)
# .tell_splitter(set_title="Main")
# .right(display="backtrace", size="25%")
# .above(of="main", display="disasm", size="80%", banner="top")
# .show("code", on="disasm", banner="none")
# .right(cmd='tty; tail -f /dev/null', size="65%", clearing=False)
# .tell_splitter(set_title='Input / Output')
# .above(display="stack", size="75%")
# .above(display="legend", size="25")
# .show("regs", on="legend")
# .below(of="backtrace", cmd="ipython", size="30%")
#).build(nobanner=True)
#end
set context-code-lines 30
set context-source-code-lines 30
set context-sections "regs args code disasm stack backtrace"