-
Notifications
You must be signed in to change notification settings - Fork 225
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
Remote device support #22
Comments
Diff below:
|
Does this still work ? I would like to use NOX app player would it work for this ? it uses the Intel HAXM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure if it's by design but House doesn't support remote device (via TCP) yet.
My case was that I had to connect to a phone with Frida server listening on an internal IP address. It may sound weird but the phone was shared for testing and it's not USB connected to my laptop, so I had to modify some codes for a quick workaround:
To register the remote device in device manager:
house_global.device_manager.add_remote_device('[Phone_IP]')
(I just hardcoded the IP). I added this in
houseSock.py
.To get the device: replace
house_global.device = frida.get_usb_device()
withhouse_global.device = house_global.device_manager.enumerate_devices()[-1]
(Yes hardcoding again).There's definitely a better way to implement this. I just wonder if there's any future plan on supporting the remote devices?
The text was updated successfully, but these errors were encountered: