MASTG-TECH-0055: Launching a Repackaged App in Debug Mode
After the app has been installed on the device, it needs to be launched in debug mode. This is not the case when launching the app via springboard (the application will crash), but it is possible with various tools as explained in Installing Apps. When the application is running in debug mode, Frida can be injected into the process with name Gadget
:
idevicedebug -d run sg.vp.UnCrackable1
# In a new terminal
frida -U -n Gadget
...
[iPhone::Gadget ]->
Starting with iOS 17 and Xcode 15¶
Since Xcode 15 and iOS 17 the tool ios-deploy will not work anymore to start an app in debug mode.
A workaround to start the re-packaged app with the FridaGadget.dylib
in debug mode (without using ios-deploy) can be found here.