-
Notifications
You must be signed in to change notification settings - Fork 1
/
dropbox_tools.sh
67 lines (50 loc) · 1.88 KB
/
dropbox_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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
echo "Set new sudo password for kali user before running this script!"
sleep 1
if [ `id -u` -eq 0 ]
then
echo "Running as sudo user :)"
else
echo "Please run with sudo!"
exit 1
fi
## Brute force login tools
sudo apt install brutespray -y
## AD Testing Tools
sudo apt install ldapscripts bloodhound veil -y
### Install exploit compiling packages
sudo apt install mingw-w64 -y
sudo apt install g++-multilib -y
## Remove dos NSE Scripts
sudo rm /usr/share/nmap/scripts/broadcast-avahi-dos.nse
sudo rm /usr/share/nmap/scripts/smb-vuln-regsvc-dos.nse
## Additional Random Tools
sudo apt install seclists curl enum4linux eyewitness feroxbuster impacket-scripts nbtscan nikto nmap onesixtyone oscanner redis-tools smbclient smbmap snmp sslscan sipvicious tnscmd10g whatweb wkhtmltopdf -y
sudo apt install gedit nfs-common python3-pip libimage-exiftool-perl -y
echo "CLONING TOOLS INTO /opt"
cd /opt
echo "INSTALLING Impacket..."
git clone https://github.com/SecureAuthCorp/impacket.git
echo "INSTALLING Mitm6..."
git clone https://github.com/fox-it/mitm6.git
echo "INSTALLING PowerTools..."
git clone https://github.com/PowerShellMafia/PowerSploit.git
echo "INSTALLING SecLists..."
git clone https://github.com/danielmiessler/SecLists.git
echo "INSTALLING PEASS-ng..."
git clone https://github.com/carlospolop/PEASS-ng.git
echo "INSTALLING Wifi Drivers..."
sudo apt install realtek-rtl88xxau-dkms -y
echo "Cleaning Up..."
sudo apt autoclean
sudo apt autoremove -y
sleep 1
echo "Please manually update Searchsploit DB (searchsploit --update)"
#searchsploit --update
sleep 1
echo "OPENING LINKS FOR OTHER TOOLS!"
sleep 1
echo "https://portswigger.net/burp/documentation/desktop/getting-started"
echo "https://www.tenable.com/downloads/nessus"
echo "https://addons.mozilla.org/en-US/firefox/addon/wappalyzer/"
echo "https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-basic/"