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

https://github.com/AbhiTheModder/frida-python

https://github.com/frida/frida-python with devkit
https://github.com/AbhiTheModder/frida-python

frida frida-python

Last synced: 9 months ago
JSON representation

https://github.com/frida/frida-python with devkit

Awesome Lists containing this project

README

          

# frida-python

Python [bindings](https://github.com/frida/frida-python) for [Frida](https://frida.re) but with devkit.

# Some tips during development

To build and test your own wheel, do something along the following lines:

```shell
FRIDA_VERSION= FRIDA_CORE_DEVKIT= pip wheel .
pip install --force-reinstall frida--cp37-abi3-linux_aarch64.whl
```

> [!NOTE]
> Note that you use devkit of same version which you're installing for.

## Example:

### Automatic (Termux):
```shell
wget https://maglit.me/frida-python -O frida-python.sh && bash frida-python.sh
```

### Manually
If you're installing frida `16.4.10` and you've downloaded devkit `frida-core-devkit-16.4.10-android-arm64.tar.xz` and extracted into your termux path `$HOME/devkit`:

```shell
git clone https://github.com/AbhiTheModder/frida-python
cd frida-python
FRIDA_VERSION=16.4.10 FRIDA_CORE_DEVKIT=../devkit pip install .
```
then install `frida-tools`:
```shell
pip install --upgrade frida-tools
```