CONVERSION

ASSEMBLING ASSEMBLY CODE INTO ITS SHELLCODE REPRESENTATION

root@sre:~$ pwn asm 'push rax'  -c 'amd64'
 0:    50                       push   eax
 
 * -c 'amd64' ensures the tool properly interprets the specified assembly code for x86_64

CONVERTING HEX MACHINE CODE/SHELLCODE TO CORRESPONDING ASSEMBLY REPRESENTATION

root@sre:~$ pwn disasm '50' -c 'amd64'
 0:    50                       push   eax

Last updated