ctf-tools/barf/install

21 lines
438 B
Text
Raw Normal View History

2015-05-14 05:29:52 +00:00
#!/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 --depth 1 https://github.com/Groundworkstech/pybfd
2015-05-14 05:29:52 +00:00
cd pybfd/
python setup.py install
cd ..
# install barf
git clone --depth 1 https://github.com/programa-stic/barf-project
2015-05-14 05:29:52 +00:00
cd barf-project/
pip install -e pyasmjit/
pip install -e barf/
cd ..
mkdir -p bin
ln -s $(which BARFgadgets) bin/barfgadgets