-
-
Save aesophor/98444c9ae51487b4851318cb470b1366 to your computer and use it in GitHub Desktop.
bash one-liner for converting binary object file to shellcode ( i didn't write this)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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