mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-15 01:57:08 +00:00
13 lines
187 B
Bash
Executable file
13 lines
187 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
git clone --depth 1 https://github.com/bwall/HashPump.git
|
|
cd HashPump
|
|
make -j $(nproc)
|
|
cd ..
|
|
|
|
pip install -e HashPump
|
|
|
|
mkdir bin
|
|
cd bin
|
|
ln -s ../HashPump/hashpump .
|
|
cd ..
|