Skip to content

Instantly share code, notes, and snippets.

@prachauthit
Created November 16, 2018 14:53
Show Gist options
  • Save prachauthit/110ccef16af5ece47caafa4d6cf67126 to your computer and use it in GitHub Desktop.
Save prachauthit/110ccef16af5ece47caafa4d6cf67126 to your computer and use it in GitHub Desktop.
#https://gist.github.com/AVGP/589604
nasm -f elf32 -o user.o user.nasm
ld -m elf_i386 -o user user.o
objdump -d ./user|grep '[0-9a-f]:'|grep -v 'file'|cut -f2 -d:|cut -f1-6 -d' '|tr -s ' '|tr '\t' ' '|sed 's/ $//g'|sed 's/ /\\x/g'|paste -d '' -s |sed 's/^/"/'|sed 's/$/"/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment