frida-python icon indicating copy to clipboard operation
frida-python copied to clipboard

frida.spawn: frida.TimedOutError: unexpectedly timed out while waiting for app to launch

Open Miller1990 opened this issue 8 years ago • 1 comments

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

Miller1990 avatar Jan 24 '17 15:01 Miller1990

Still happening for 9.1.12 iOS/32 bits.

TankTheFrank avatar Mar 06 '17 10:03 TankTheFrank