mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 14:02:33 +00:00
Add dirb http://dirb.sourceforge.net/
This commit is contained in:
parent
a501a9f11e
commit
587946a252
2 changed files with 15 additions and 0 deletions
12
dirb/install
Executable file
12
dirb/install
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
3
dirb/install-root
Executable file
3
dirb/install-root
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get -y install libcurl4-gnutls-dev
|
Loading…
Reference in a new issue