MASTG-TOOL-0074 objection for iOS
$ ios hooking list classes
$ ios hooking list class_methods <ClassName>
$ ios bundles list_bundlesiOS で objection を使用する
# Connecting to a patched IPA
$ objection -n Gadget start
# Using Frida-server
# Using frida-ps to get the correct application name
$ frida-ps -Ua | grep -i Telegram
983 Telegram
# Connecting to the Telegram app through Frida-server
$ objection -n "Telegram" start
# Alternatively use the process ID (PID)
$ objection -n 983 start
# Objection can also spawn the app through Frida-server using the application identifier / package name
$ objection --spawn -n "org.telegram.messenger"
... [usb] resume
# Alternatively with "no pause"
$ objection -s -p -n "org.telegram.messengerLast updated