Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/AndroidTamer/frida-push

Wrapper tool to identify the remote device and push device specific frida-server binary.
https://github.com/AndroidTamer/frida-push

Last synced: 2 months ago
JSON representation

Wrapper tool to identify the remote device and push device specific frida-server binary.

Awesome Lists containing this project

README

        

# frida-push
Wrapper tool to identify the remote device and push device specific frida-server binary.

## Installing

```bash
sudo pip install frida-push
```

## Running

```bash
$ frida-push -h

usage: frida-push [-h] [-d DEVICE_NAME] [--version]

optional arguments:
-h, --help show this help message and exit
-d DEVICE_NAME, --device-name DEVICE_NAME
-f, --force force download
--version show program's version number and exit
```

```bash
$ adb devices -l

List of devices attached
emulator-5554 device product:sdk_google_phone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:5
emulator-5553 device product:sdk_google_phone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:4
emulator-5552 device product:sdk_google_phone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:3

$ frida-push -d emulator-5554

[2018-01-16 13:15:21,230] [frida-push: INFO]: Devices: emulator-5554, 0617627d0069ace6
[2018-01-16 13:15:21,230] [frida-push: INFO]: Current installed Frida version: 10.6.32
[2018-01-16 13:15:21,242] [frida-push: INFO]: Found arch: x86
[2018-01-16 13:15:21,243] [frida-push: WARNING]: Downloading: https://github.com/frida/frida/releases/download/10.6.32/frida-server-10.6.32-android-x86.xz
[2018-01-16 13:15:27,577] [frida-push: INFO]: Writing file as: /home/raul/.frida-push/frida-server-10.6.32-android-x86
[2018-01-16 13:15:27,676] [frida-push: INFO]: File pushed to device successfully.
[2018-01-16 13:15:27,686] [frida-push: INFO]: Killing all frida-server on device.
[2018-01-16 13:15:27,704] [frida-push: INFO]: Executing frida-server on device.

```