AloneMonkey / frida-ios-dump

pull decrypted ipa from jailbreak device
MIT License
3.39k stars 621 forks source link

Application list is returning null and extraction won't proceed (solution provided) #145

Open kxynos opened 3 years ago

kxynos commented 3 years ago

I was getting this error: Start the target app XXXXX 'unable to launch iOS app: The operation couldn't be completed. Application "" is unknown to FrontBoard.'

I tried the -l and noticed the list was empty (null records returned). Frida (frida-ps -Ua) is showing an empty application list as well.

The solution is to target the process and get the pid that way.

Use frida-ps -U and find the process name, then use device.get_process(target_name) instead.