https://github.com/phyks/frigida
Frida-gadget injection helper.
https://github.com/phyks/frigida
Last synced: 3 months ago
JSON representation
Frida-gadget injection helper.
- Host: GitHub
- URL: https://github.com/phyks/frigida
- Owner: Phyks
- License: mit
- Created: 2022-11-11T15:55:54.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T15:57:25.000Z (over 2 years ago)
- Last Synced: 2025-01-22T12:23:12.338Z (4 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Frigida
=======Inject frida-gadget into an existing APK file.
## Requirements
* Java
* Android SDK tools in `$PATH` (`aapt`, `keytool`, etc.).
* [`apktool`](https://github.com/iBotPeaches/Apktool)
* `openssl` / `xxd` / `tr` commands## Installation
```
python3 -m venv .venv
./.venv/bin/pip install -r requirements.txt
```## Usage
```
./.venv/bin/python -m frigida $PATH_TO_APK_FILE $TARGET_ARCHITECTURE
```Current working directory will be used for extracting APK. At the end of the
process:* `frida-gadget-script.js` in the working directory contains a base Frida Gadget
script to load.
* `$APK_NAME/dist/$APK_NAME-aligned-debugSigned.apk` in the working directory
contains the APK with frida-gadget injected and ready to be installed.## License
Released under an MIT license.