Skip to content

Instantly share code, notes, and snippets.

View mirchr's full-sized avatar

Rich Mirch mirchr

View GitHub Profile
@mirchr
mirchr / opcodes.sh
Created July 23, 2017 02:31 — forked from offlinemark/opcodes.sh
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