Next
Stepping until an event occurs
parser = argparse.ArgumentParser(description='Breaks on the next matching instruction.')
module-attribute
¶
nextcall(symbol_regex=None)
¶
Breaks at the next call instruction
nextjmp()
¶
Breaks at the next jump instruction
nextproginstr()
¶
nextret()
¶
Breaks at next return-like instruction
nextsyscall()
¶
Breaks at the next syscall not taking branches.
stepover(addr=None)
¶
Sets a breakpoint on the instruction after this one
stepret()
¶
Breaks at next return-like instruction by 'stepping' to it
stepsyscall()
¶
Breaks at the next syscall by taking branches.