More than 5 years have passed since last update.
生バイナリデータを逆アセンブル(IA-32,x64)
8
Last updated at Posted at 2016-01-29
ヘッダ等がついていない生のバイナリデータを逆アセンブルする。
Intelスタイル
$ objdump -D -Mintel,i386 -b binary -m i386 input32.bin
$ objdump -D -Mintel,x86-64 -b binary -m i386 input64.bin
AT&Tスタイル:
$ objdump -D -Matt,i386 -b binary -m i386 input32.bin
$ objdump -D -Matt,x86-64 -b binary -m i386 input64.bin
Macの場合はgobjdump(binutilsパッケージ)を利用。
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme
