mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-15 23:42:44 +00:00
11 lines
203 B
Text
11 lines
203 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
PREFIX=$PWD
|
||
|
|
||
|
git clone --depth 1 https://github.com/gat3way/hashkill.git
|
||
|
cd hashkill
|
||
|
sed -i -e "s/1\.13/1\.14/g" configure
|
||
|
./configure --prefix="$PREFIX" --with-json
|
||
|
make -j
|
||
|
make install
|