You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Frida 14.2.14 against an A13 device running iOS 14.3, which is jailbroken using unc0ver 6.1.1.
I would expect the following code to spawn a new instance of <app>.
importfrida, timedevice=frida.get_usb_device()
device.kill("app") # Make sure no instances of "app" are runningtime.sleep(3) # give the device a moment to collect its thoughtsdevice.spawn("com.app")
Doing this does spawn a new instance of <app> on my device in a resumed state, however the script containing this code hangs, before giving the following error:
frida.TimedOutError: unexpectedly timed out while waiting for app to launch
It appears that the script isn't able to acknowledge that <app> has launched - either Frida server is not sending a notification, or the Device object isn't receiving it.
The text was updated successfully, but these errors were encountered:
Hi there,
I'm using Frida 14.2.14 against an A13 device running iOS 14.3, which is jailbroken using unc0ver 6.1.1.
I would expect the following code to spawn a new instance of <app>.
Doing this does spawn a new instance of <app> on my device in a resumed state, however the script containing this code hangs, before giving the following error:
frida.TimedOutError: unexpectedly timed out while waiting for app to launch
It appears that the script isn't able to acknowledge that <app> has launched - either Frida server is not sending a notification, or the Device object isn't receiving it.
The text was updated successfully, but these errors were encountered: