VOOZH about

URL: https://qiita.com/yohhoy/items/7d281f22ca439152ce12

⇱ 生バイナリデータを逆アセンブル(IA-32,x64) #Linux - Qiita


👁 Image
8

Go to list of users who liked

7

Share on X(Twitter)

Share on Facebook

Add to Hatena Bookmark

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の場合はgobjdumpbinutilsパッケージ)を利用。

8

Go to list of users who liked

7
0

Go to list of comments

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8

Go to list of users who liked

7