frida-python
frida-python copied to clipboard
frida.spawn: frida.TimedOutError: unexpectedly timed out while waiting for app to launch
Hi, I’m trying to spawn a mobile application using the following python code taken from (https://www.frida.re/news/ ) :
import frida
app = "com.atebits.Tweetie2"
print ("[*] Spawning " + str(app))
pid = frida.get_usb_device().spawn([app])
session = frida.get_usb_device().attach(pid)
frida.get_usb_device().resume(pid)
sys.stdin.read()
Application start, but after few second Python returns me the following error:
Traceback (most recent call last): File "/lib/python3.5/site-packages/frida/core.py", line 85, in spawn return self._impl.spawn(argv) frida.TimedOutError: unexpectedly timed out while waiting for app to launch
the code is working with frida version 8.1.12 but now with frida 9.0.13 doesn’t work .
Am I missing something or is own bug ?
Thanks Marco
Still happening for 9.1.12 iOS/32 bits.