mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-18 23:43:59 +00:00
12 lines
195 B
Text
12 lines
195 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone https://github.com/mheistermann/HashPump-partialhash.git
|
||
|
cd HashPump-partialhash
|
||
|
make -j $(nproc)
|
||
|
cd ..
|
||
|
|
||
|
mkdir bin
|
||
|
cd bin
|
||
|
ln -s ../HashPump-partialhash/hashpump .
|
||
|
cd ..
|