MASTG-TOOL-0029 objection for Android
Android で objection を使用する
# Connecting to a patched APK
objection -f explore
# Using Frida-server
# Find the correct name using frida-ps
$ frida-ps -Ua | grep -i telegram
30268 Telegram org.telegram.messenger
# Connecting to the Telegram app through Frida-server
$ objection -n "Telegram" start
# Alternatively use the process ID (PID)
$ objection -n 30268 start
# Objection can also spawn the app through Frida-server using the application identifier / package name
$ objection -s -n "org.telegram.messenger"
... [usb] resume
# Alternatively with "no pause"
$ objection -s -p -n "org.telegram.messenger"Last updated