ctf-tools/barf/install

29 lines
606 B
Text
Raw Normal View History

2015-05-14 05:29:52 +00:00
#!/bin/bash
# it's z3!
ctf-tools-pip install https://github.com/zardus/z3/archive/pypy-and-setup.zip
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
2015-05-14 05:29:52 +00:00
# pybfd can't be installed with pip
git clone --depth 1 https://github.com/Groundworkstech/pybfd
2015-05-14 05:29:52 +00:00
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 ..
2015-05-14 05:29:52 +00:00
# install barf
git clone --depth 1 https://github.com/programa-stic/barf-project
2015-05-14 05:29:52 +00:00
cd barf-project/
python setup.py install
2015-05-14 05:29:52 +00:00
cd ..
mkdir -p bin
ln -s $(which BARFgadgets) bin/barfgadgets