-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
34 lines (29 loc) · 781 Bytes
/
Copy pathsetup.sh
File metadata and controls
34 lines (29 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
echo "checking to see if /tools directory exists"
if [ ! -d ~/tools ]
then
mkdir -p ~/tools
else
echo "TOOLS Directory exists in users home directory"
fi
echo "Checking to see if EyeWitness is installed"
if [ ! -d ~/tools/EyeWitness/ ]
then
cd ~/tools
echo "Downloading and Installing EyeWitness"
git clone https://github.com/ChrisTruncer/EyeWitness.git
cd ~/tools/EyeWitness/setup
chmod +x setup.sh
./setup.sh
echo "EyeWitness installed and setup"
else
echo "EyeWitnedd is installed"
fi
echo "Checking to see if SubBrute is installed"
if [ ! -d ~/tools/subbrute/ ]
then
cd ~/tools
echo "Downloading and Installing SubBrute"
git clone https://github.com/TheRook/subbrute.git
else
echo "SubBrute is Already Installed"
fi