forked from secgroundzero/warberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
95 lines (71 loc) · 2.14 KB
/
bootstrap.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
if [ "$(id -u)" != "0" ]; then
echo "ERROR: Sorry, you are not root. Run this script as root or with sudo."
exit 1
fi
echo """
Creating necessary directories...
"""
cd ..
mkdir WarBerry
mv warberry/ WarBerry/
cd WarBerry/
mkdir Results
mkdir Tools
echo """
Updating Distro...
"""
apt-get update -y
echo """
Installing necessary tools...
"""
apt-get install nbtscan -y
apt-get install python-scapy -y
apt-get install tcpdump -y
apt-get install nmap -y
apt-get install python-nmap -y
apt-get install python-bluez -y
apt-get install smbclient -y
apt-get install samba -y
apt-get install samba_common_bin -y
apt-get install unzip -y
sudo apt-get install python-dev
sudo apt-get install python3-dev
pip install optparse-pretty
pip install netaddr
pip install ipaddress
pip install subprocess32
pip install pypcap
apt-get install ppp -y
apt-get install xprobe2 -y
apt-get install sg3-utils -y
apt-get install netdiscover -y
apt-get install macchanger -y
wget http://seclists.org/nmap-dev/2016/q2/att-201/clamav-exec.nse -O /usr/share/nmap/scripts/clamav-exec.nse
wget https://labs.portcullis.co.uk/download/enum4linux-0.8.9.tar.gz -O /home/pi/WarBerry/Tools/
tar -zxvf enum4linux-0.8.9.tar.gz
mv enum4linux-0.8.9 enum4linux
cd /home/pi/WarBerry/Tools
echo """
Cloning some awesome repos...
"""
git clone https://github.com/DanMcInerney/net-creds.git
apt-get install onesixtyone -y
apt-get install nikto -y
apt-get install hydra -y
apt-get install john -y
apt-get install bridge-utils -y
apt-get install w3af-console -y
apt-get install ettercap-text-only -y
apt-get install cryptcat -y
apt-get install ike-scan -y
git clone https://github.com/sqlmapproject/sqlmap.git
git clone https://github.com/CoreSecurity/impacket.git
git clone https://github.com/samratashok/nishang.git
git clone https://github.com/SpiderLabs/Responder.git
git clone https://github.com/PowerShellMafia/PowerSploit.git
git clone https://github.com/offensive-security/exploit-database.git
wget https://download.sysinternals.com/files/SysinternalsSuite.zip
unzip SysinternalsSuite.zip -d sysinternals/
echo """
All done ready to rock...
"""