b *0x12345678 # Breakpoint
b strcpy # Breakpoint
r # Run program
r < <(echo lol) # Run with pipe
r arg1 arg2 # Run with arg
c # Continue
n # Next operation
set $eax=0x00 # Set variable
info register # Show Register
gitclonehttps://github.com/longld/peda.git~/.pedaecho"source ~/.peda/peda.py">>~/.gdbinitecho"DONE! debug your program with gdb and enjoy"
Binary ninja
Scrap code from html
let result ='';[...document.querySelectorAll('.LinearDisassemblyLine')].forEach(parent_elmt => { [...parent_elmt.children].forEach(children_elmt => { result +=children_elmt.textContent }); result +='\n'});console.log(result);