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 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.
The text was updated successfully, but these errors were encountered:
kxynos
changed the title
Application list is retuning null and extraction won't proceed (solution provided)
Application list is returning null and extraction won't proceed (solution provided)
May 27, 2021
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.
The text was updated successfully, but these errors were encountered: