https://github.com/bannsec/frida_build_env
Helper container for building and testing Frida compiles
https://github.com/bannsec/frida_build_env
Last synced: 6 months ago
JSON representation
Helper container for building and testing Frida compiles
- Host: GitHub
- URL: https://github.com/bannsec/frida_build_env
- Owner: bannsec
- Created: 2019-10-15T22:59:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-15T23:00:02.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T09:11:47.719Z (over 1 year ago)
- Language: Dockerfile
- Size: 0 Bytes
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Meant as a helper for building/rebuilding Frida. Here's a couple helpers to put into your `.bashrc` file:
```bash
alias frida_build="sudo docker run -it --rm -v $PWD:/frida bannsec/frida_build"
# This assumes you're inside a python virtualenv
function frida_build_deploy {
sudo docker run -it --rm -v $PWD:/frida bannsec/frida_build $@
cp -rf build/frida-linux-x86_64/lib/python*/site-packages/* $VIRTUAL_ENV/lib/python*/site-packages/.
}
```
For example, to build a custom version of frida and deploy it into your current virtual environment, just do:
```bash
# cd into your working dir
cd frida
frida_build_deploy python-linux-x86_64 PYTHON=/usr/bin/python3
```