mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 06:22:34 +00:00
21 lines
418 B
Text
21 lines
418 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# it's z3!
|
||
|
pip install https://github.com/zardus/z3/archive/pypy-and-setup.zip
|
||
|
|
||
|
# pybfd can't be installed with pip
|
||
|
git clone https://github.com/Groundworkstech/pybfd
|
||
|
cd pybfd/
|
||
|
python setup.py install
|
||
|
cd ..
|
||
|
|
||
|
# install barf
|
||
|
git clone https://github.com/programa-stic/barf-project
|
||
|
cd barf-project/
|
||
|
pip install -e pyasmjit/
|
||
|
pip install -e barf/
|
||
|
cd ..
|
||
|
|
||
|
mkdir -p bin
|
||
|
ln -s $(which BARFgadgets) bin/barfgadgets
|