mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-08 10:38:47 +00:00
13 lines
210 B
Text
13 lines
210 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
mkdir bin
|
||
|
wget -O dirb.tar.gz https://sourceforge.net/projects/dirb/files/latest/download
|
||
|
tar -xf dirb.tar.gz
|
||
|
|
||
|
chmod -R a+X dirb222/
|
||
|
cd dirb*
|
||
|
chmod a+x configure
|
||
|
./configure
|
||
|
make
|
||
|
cp dirb ../bin
|