What is your favorite disassembler tool in Mac OS X?

MacosAssemblyDisassemblyNmOtool

Macos Problem Overview


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 codes in the text editor :)

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

Macos Solutions


Solution 1 - Macos

You might want to try

Solution 2 - Macos

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser663896View Question on Stackoverflow
Solution 1 - MacosPeter MurphyView Answer on Stackoverflow
Solution 2 - Macosn80fr1n60View Answer on Stackoverflow