mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 06:22:34 +00:00
12 lines
210 B
Bash
Executable file
12 lines
210 B
Bash
Executable file
#!/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
|