-
Notifications
You must be signed in to change notification settings - Fork 0
/
kali_default_tools.sh
46 lines (34 loc) · 963 Bytes
/
kali_default_tools.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# Package Installation
echo "Starting default package installation..."
# Installing dnsenum
echo "Installing dnsenum..."
sudo apt-get install -y dnsenum
# Installing masscan
echo "Installing masscan..."
sudo apt-get install -y masscan
# Installing maltego
echo "Installing maltego..."
sudo apt install -y maltego
# Installing sherlock
echo "Installing sherlock..."
sudo apt install -y sherlock
# Installing spiderfoot
echo "Installing spiderfoot..."
sudo apt install -y spiderfoot
# Installing theHarvester
echo "Installing theHarvester..."
sudo apt-get install -y theharvester
# Installing enum4linux
echo "Installing enum4linux..."
sudo apt-get install -y enum4linux
# Installing amass
echo "Installing amass..."
sudo apt-get install -y amass
# Installing recon-ng
echo "Installing recon-ng..."
sudo apt install -y recon-ng
# Installing dmitry
echo "Installing dmitry..."
sudo apt-get install -y dmitry
echo "[*] Installation complete."