FRIDA for iOS app penetration testing
This page is going to document all my FRIDA hooking journey against iOS application
Required Tools
Frida
let you inject snippets of JS
Objection
a runtime mobile exploration toolkit, help you to do the basic security assesment, such as disable cert-pin.
Preparation
Get your pentest machine with frida and objection
pip3 install frida-tools
pip3 install objectionBasic Usage
Check device connectivity
frida-ls-devicesList installed application
frida-ps -Uai #List running applicationsAttach to a process
Inject objection into the process, it gives you a set of toolkits provided by objection
objection -g <com.client.xxx> exploreLast updated
Was this helpful?