Created
January 28, 2018 05:53
-
-
Save itsecurityco/52866d2cbb8b38666e94923b2a171266 to your computer and use it in GitHub Desktop.
x86 instructions to opcode
This file contains hidden or 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
#!/bin/bash | |
# x86 instructions to opcode | |
# Autor: @itseco | |
# Usage: ./shell_nasm "Here the shellcode..." | |
perl -e 'print "'$1'"' > /tmp/shellcode && ndisasm -b 32 /tmp/shellcode && rm -f /tmp/shellcode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment