You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
590 B
30 lines
590 B
#source ~/config/gdb/peda/peda.py |
|
#source ~/config/gdb/gdb-dashboard/.gdbinit |
|
#source ~/config/gdb/gdb_gef/gef.py |
|
|
|
source ~/config/gdb/commands.py |
|
source ~/config/gdb/commands2.py |
|
source ~/config/gdb/gdb-dashboard/.gdbinit |
|
|
|
#source ~/config/gdb/gdbinit/gdbinit |
|
|
|
define exit |
|
kill |
|
quit |
|
end |
|
|
|
define xxd |
|
dump binary memory /tmp/dump.bin $arg0 ((char *)$arg0)+$arg1 |
|
shell xxd /tmp/dump.bin |
|
end |
|
document xxd |
|
Runs xxd on a memory ADDR and LENGTH |
|
|
|
xxd ADDR LENTH |
|
end |
|
|
|
macro define offsetof(t, f) &((t *) 0)->f |
|
|
|
set history save on |
|
set history size 10000 |
|
set history filename ~/.gdb_history
|
|
|