ctf-tools/hashpump/install

14 lines
208 B
Text
Raw Normal View History

#!/bin/bash -ex
2015-05-07 11:02:00 +00:00
git clone --depth 1 https://github.com/bwall/HashPump.git
2015-05-07 11:02:00 +00:00
cd HashPump
make -j $(nproc)
cd ..
2016-02-18 15:51:42 +00:00
ctf-tools-pip install --upgrade -e HashPump
2015-05-08 20:09:39 +00:00
2015-05-07 11:02:00 +00:00
mkdir bin
cd bin
ln -s ../HashPump/hashpump .
cd ..