how to convert from hex to disasm

迈不过友情╰ 2021-12-17 07:07 351阅读 0赞
  1. cat ascii.hex | ascii2binary -b h -t us > ascii.bin

  

  1. x86dis -e 0 -s att -f ascii.bin

  

  1. echo "d8 01 77 c4 90 90 90 90" | ascii2binary -b h -t uc | x86dis -e 0 -s intel

  

  1. echo "d801 77c4" | ascii2binary -b h -t us | x86dis -e 0 -s intel

  

转载于:https://www.cnblogs.com/long123king/p/3818213.html

发表评论

表情:
评论列表 (有 0 条评论,351人围观)

还没有评论,来说两句吧...

相关阅读