Skip to content

Instantly share code, notes, and snippets.

@offlinemark
Created April 2, 2014 02:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save offlinemark/9927260 to your computer and use it in GitHub Desktop.
Save offlinemark/9927260 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
@offlinemark
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment