user663896
user663896

Reputation:

What is your favorite disassembler tool in Mac OS X?

I am using the otool, nm and Fraise text editor to disassemble the Mach-o binaries. My workflow at this point is pretty straightforward:

    1. List the existed symbols.
nm -g
    2. Get the disasm code.
otool -vt
    3. Copy and paste this output to a text file.
    4. Read and comment the code in the text editor :)

I am looking for the tools that simplify the working with disasm code on Mac OS X.

Upvotes: 60

Views: 59499

Answers (2)

Peter Murphy
Peter Murphy

Reputation: 351

You might want to try

Upvotes: 35

n80fr1n60
n80fr1n60

Reputation: 701

I als know of http://www.hopperapp.com/, but never used it. (cannot be compared to Ida(Pro))

Upvotes: 16

Related Questions