Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulolorenzobasilio/5eb11de088dadef38d952586869f0725 to your computer and use it in GitHub Desktop.
Save paulolorenzobasilio/5eb11de088dadef38d952586869f0725 to your computer and use it in GitHub Desktop.
Script to inject an exit(0) syscall into a running process. NB: only x86_64 for now!
#!/bin/bash
gdb -p "$1" -batch -ex 'set {short}$rip = 0x050f' -ex 'set $rax=231' -ex 'set $rdi=0' -ex 'cont'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment