Skip to content

AbhiTheModder/frida-python

Repository files navigation

frida-python

Python bindings for Frida but with devkit.

Some tips during development

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

FRIDA_VERSION=<FRIDA_VERSION> FRIDA_CORE_DEVKIT=<DEVKIT_PATH> pip wheel .
pip install --force-reinstall frida-<FRIDA_VERSION>-cp37-abi3-linux_aarch64.whl

Note

Note that you use devkit of same version which you're installing for.

Example:

Automatic (Termux):

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:

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:

pip install --upgrade frida-tools