ctf-tools/hashpump/install
2016-05-04 20:01:01 +02:00

13 lines
207 B
Bash
Executable file

#!/bin/bash -e
git clone --depth 1 https://github.com/bwall/HashPump.git
cd HashPump
make -j $(nproc)
cd ..
ctf-tools-pip install --upgrade -e HashPump
mkdir bin
cd bin
ln -s ../HashPump/hashpump .
cd ..