apkinjector
Utilities to help injecting libraries and frida in apks.
File Explorer
- doc.yaml
- publish.yaml
- pull_request_template.md
- __init__.py
- __main__.py
- adb.py
- apktool.py
- arch.py
- bundle.py
- dependencies.py
- download.py
- frida.py
- gadget.py
- injector.py
- java.py
- logger.py
- manifest.py
- plugins.py
- uber_apk_signer.py
- utils.py
- adb.rst
- apkinjector.rst
- apktool.rst
- bundle.rst
- dependencies.rst
- download.rst
- frida.rst
- gadget.rst
- java.rst
- logger.rst
- manifest.rst
- plugins.rst
- uber_apk_signer.rst
- as_module.rst
- as_plugin.rst
- features.rst
- installation.rst
- usage.rst
- api.rst
- conf.py
- index.rst
- requirements.txt
- usage.rst
- plugin_example.py
- plugins.json
- .gitignore
- LICENSE
- Makefile
- README.md
- requirements.txt
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
frida
View Details ▼
frida
A dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers.
frida {{process_name}}
Start the interactive shell (REPL) attached to a running process:
frida {{[-U|--usb]}} {{process_name}}
Start the interactive shell attached to a process over USB:
frida {{[-p|--attach-pid]}} {{pid}}
Attach to a running process by its PID:
pip3
View Details ▼
pip3
This command is an alias of `pip`.
tldr pip
View documentation for the original command:
apk
View Details ▼
apk
Alpine Linux package management tool.
apk upgrade {{[-U|--update-cache]}}
Update repository indexes and upgrade all packages:
apk update
Only update repository indexes:
apk add {{package}}
Install a new package:
