Cheat sheet of command from hacking and securing iOS Applications
Note : hello is binary filename is following example. Replace it with your binary filename. Basic disassembly \[shell\]$otool tV hello p \ main\[/shell\] Listing dynamic depende...
Alok Choudhary
Austin, TX
1 min read
![]()
Note : hello is binary filename is following example. Replace it with your binary filename.
Basic disassembly
[shell]$otool -tV hello -p _main[/shell]
Listing dynamic dependencies
[shell]$otool L hello[/shell]
System table dump
[shell]$nm -arch arm hello[/shell]
String Searches
[shell]$strings hello[/shell]
or
[shell]$strings binary-filename | grep -i http[/shell] (if you are trying to find weblink)