Created
September 15, 2016 13:43
-
-
Save Sinkmanu/d810afd69ac565c36158bea918e80510 to your computer and use it in GitHub Desktop.
Useful commands
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
# Get all opcodes of a binary file | |
for i in `objdump -d program | tr '\t' ' ' | tr ' ' '\n' | egrep '^[0-9a-f]{2}$' ` ; do echo -n "\x$i" ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment