Skip to content

Instantly share code, notes, and snippets.

@mirchr
Forked from offlinemark/opcodes.sh
Created July 23, 2017 02:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mirchr/5ef7dd2618bca9c34d4914a981a391a8 to your computer and use it in GitHub Desktop.
Save mirchr/5ef7dd2618bca9c34d4914a981a391a8 to your computer and use it in GitHub Desktop.
bash one-liner for converting binary object file to shellcode ( i didn't write this)
for i in $(objdump -d shell.o -M intel |grep "^ " |cut -f2); do echo -n '\x'$i; done;echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment