ctf-tools/barf/install
2016-09-23 13:51:50 +00:00

28 lines
606 B
Bash
Executable file

#!/bin/bash
# it's z3!
ctf-tools-pip install https://github.com/zardus/z3/archive/pypy-and-setup.zip
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
# pybfd can't be installed with pip
git clone --depth 1 https://github.com/Groundworkstech/pybfd
cd pybfd/
python setup.py install
cd ..
# install pyasmjit
git clone --depth 1 https://github.com/programa-stic/pyasmjit.git
cd pyasmjit
python setup.py install
cd ..
# install barf
git clone --depth 1 https://github.com/programa-stic/barf-project
cd barf-project/
python setup.py install
cd ..
mkdir -p bin
ln -s $(which BARFgadgets) bin/barfgadgets