ctf-tools/hashpump/install

14 lines
187 B
Text
Raw Normal View History

2015-05-07 18:40:24 +00:00
#!/bin/bash -e
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 ..
2015-05-08 20:09:39 +00:00
pip install -e HashPump
2015-05-07 11:02:00 +00:00
mkdir bin
cd bin
ln -s ../HashPump/hashpump .
cd ..