I've been using a combination of `otool`, `radare2` and `nm` lately for general disassembling tasks, and have recently found that `jtool` gives me much better, and more precise output than the aforementioned tools! Nice job, I really like it!
One thing that is a limitation for me though, is that `jtool` doesn't (yet?) support intel disassembly. When I try to disassemble a method I get the following:
- Code: Select all
jtool -d MyClass:myMethod /path/to/binary
Intel Disassembly not supported yet. Patience, little grasshopper (you can, however, dump __TEXT.__cstring, and CFStrings)
I would like to know if Intel Disassembly is on the roadmap for `jtool`? Or perhaps for `jtool2`?
This tool has proven invaluble for me so far!