What is your favorite disassembler tool in Mac OS X? [closed]

牧云@^-^@ 提交于 2019-12-04 07:23:26

问题


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.


回答1:


You might want to try

  • Hopper Disassembler,
  • osxdbg,
  • Machoview,
  • otx (otool GUI)
  • and Affinic Debugger GUI.



回答2:


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



来源:https://stackoverflow.com/questions/9494495/what-is-your-favorite-disassembler-tool-in-mac-os-x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!