Add "k" command

pull/14/head
Zach Riggle 11 years ago
parent 479005837b
commit 2ef7eae42b

@ -258,3 +258,8 @@ def u(where=None, n=5):
where = pwndbg.regs.pc
cmd = 'x/%ii %#x' % (int(n), int(where))
gdb.execute(cmd)
@pwndbg.commands.Command
@pwndbg.commands.OnlyWhenRunning
def k():
gdb.execute('bt')
Loading…
Cancel
Save