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
- Host: GitHub
- URL: https://github.com/abhithemodder/frida-python
- Owner: AbhiTheModder
- License: other
- Created: 2024-08-24T04:46:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-19T05:47:37.000Z (about 1 year ago)
- Last Synced: 2025-03-29T09:11:50.049Z (10 months ago)
- Topics: frida, frida-python
- Language: C
- Homepage:
- Size: 329 KB
- Stars: 14
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
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
```