Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't connect to App. Have you connected the device with Frida 16.1.4 #41

Open
vinilnarayan opened this issue Sep 27, 2023 · 5 comments

Comments

@vinilnarayan
Copy link

Hi,

I have installed Frida version 16.1.4 in my mac. The same version has been installed in my iOS device.
When I run fridump script getting the below error.

Can't connect to App. Have you connected the device? DEBUG:unable to communicate with remote frida-server; please ensure that major versions match and that the remote Frida has the feature you are trying to use

Screenshot 2023-09-27 at 12 01 37 PM Screenshot 2023-09-27 at 12 02 39 PM Screenshot 2023-09-27 at 12 03 38 PM
@y0sua
Copy link

y0sua commented Oct 17, 2023

also encounter this issue, need the solution

@hongsolo9
Copy link

@vinilnarayan @y0sua Are you both using palera1n jb?

@huanderer
Copy link

huanderer commented Jan 22, 2024

hi @hongsolo9 am using a windows 10 machine with a pixel 4 and i'm getting the same error message. When running fridump in verbose mode i'm getting this message:

DEBUG:unable to connect to remote frida-server: closed

@harshdhamaniya
Copy link

To resolve the issue use App name instead of package name.
Example

frida-ps -U
-----  -------------------------------------------------------------------------------------------------
19652  Maps
 4449  Messages
20277  Photos
 2864  SIM toolkit
18869  Security
17729  Settings
20788  Themes
14847  YouTube

Then use the following command

python fridump.py -U -s "YouTube"

@sangcx5
Copy link

sangcx5 commented Sep 28, 2024

Open fridump.py then change

session = frida.get_usb_device().attach(APP_NAME)

to

device = frida.get_usb_device()
pid = device.spawn(APP_NAME)
session = device.attach(pid)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants