ctf-tools/hashpump/install

14 lines
208 B
Text
Raw Normal View History

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