-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiris-install_script.sh
212 lines (151 loc) · 9.97 KB
/
iris-install_script.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#!/bin/bash
#Author: Emanuel "quietwalker" Di Vita
#Year: 2016
#This Script Unjail your Gnu/Linux OS, installing only free softwares
#######################
## ##
DEVICE=0 #it should be = 0
## ##
#######################
#Colori della shell
rosso="\033[1;31m"
giallo="\033[1;33m"
azzurro="\033[1;34m"
verde="\033[1;32m"
default="\e[0m"
############# Controlla se l'utente è amministratore ###################
if [ $(id -u) -ne '0' ];
then echo -e $rosso "Are you drunk? Run me as root!!!" $default
exit
fi
##imposta il dispositivo di output tra monitor e /dev/null
if [ $DEVICE = 1 ]; then
#mostra tutto l'output nel monitor
export output_device=/dev/stdout
else
## manda tutto in dev null
export output_device=/dev/null
fi
echo ""
sleep 0.1 && echo -e $azzurro " _____ _______ _____ ______ "
sleep 0.1 && echo -e " |_ _||_ __ \ |_ _|.' ____ \ "
sleep 0.1 && echo -e " | | | |__) | | | | (___ \_| "
sleep 0.1 && echo -e " | | | __ / | | _.____ . "
sleep 0.1 && echo -e " _| |_ _| | \ \_ _| |_ | \____) | "
sleep 0.1 && echo -e " |_____||____| |___||_____| \______.' Project!"
sleep 0.1 && echo -e ""
sleep 1
echo -e $azzurro " This Script will install a lot of tools "
echo -e $azzurro" Coded by quietwalker "
echo -e $azzurro " For www.irisproject.org "$default && echo ""
echo -e $giallo " email: [email protected]"$default
sleep 2
##pulisce lo schermo
clear
echo -e $default 'Are You Running this script from an Iris Distro? (1=yes, 2=no)'
read scelta
##modifica la lista dei repository nel caso in cui la distro in uso non sia Iris
if [ "$scelta" = "2" ]; then
echo 'Adding Iris Repo to source list'
sudo echo 'deb http://http://archive.irisproject.org/iris/ stable main' > /etc/apt/sources.list
fi
echo -e $rosso '[*] Updating Iris Repository'
echo -e $default
sudo apt-get update
echo -e $giallo '[*] Installing GPG Graphical Assistant' $default
apt-get install gpa -y -y > $output_device
echo -e $giallo "[*] Installing Audio Video Softwares..." $default
apt-get install gimp audacity cheese vlc kodi libavcodec-extra -y > $output_device
echo -e $giallo "[*] Installing Internet Softwares..." $default
apt-get install driftnet etherape ettercap icedove kismet remmina hexchat mutt wireshark ssvnc thc xhydra -y > $output_device
echo -e $giallo "[*] Installing Office Softwares..." $default
apt-get install libreoffice -y > $output_device
echo -e $giallo "[*] Installing Programming tools and IDEs" $default
apt-get install gcc gpp python python3 geany codeblocks ferret ipython qtcreator -y > $output_device
echo -e $giallo "[*] Installing System tools..." $default
apt-get install openjdk-8-jre openjdk-8-jre-headless openjdk-8-doc gparted arduino qemu bleachbit gsmartcontrol htop gdebi lynis macchanger mysql-server mysql-client apache2 -y > $output_device
#Installazione dei tool per l'hacking
clear
sleep 0.1 && echo -e $verde " _ _ _ _ _____ _ "
sleep 0.1 && echo -e " | | | | __ _ ___| | _(_)_ __ __ _ |_ _|__ ___ | |___ "
sleep 0.1 && echo -e " | |_| |/ _ |/ __| |/ / | '_ \ / _ | | |/ _ \ / _ \| / __|"
sleep 0.1 && echo -e " | _ | (_| | (__| <| | | | | (_| | | | (_) | (_) | \__ _"
sleep 0.1 && echo -e " ParrotOS |_| |_|\__,_|\___|_|\_\_|_| |_|\__, | |_|\___/ \___/|_|___/ " && echo ""
sleep 0.1 && echo -e " INSTALLING..." $default
echo -e $giallo '[*] Installing Most Used Tools' $default
apt-get install ipscan dff ophcrack owasp-zap spiderfoot w3af wireshark webscarab -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> DNS' $default
apt-get install dnsenum dnsmap dnsrecon dnswalk dnschef dns2tcp dnsmasq fierce -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> OSINT' $default
apt-get install theharvester metagoofil twofi -y
echo -e $giallo '[*] Installing Information Gathering Tools ---> Route' $default
apt-get install intrace netdiscover 0trace netmask traceroute traceroute6 -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> SMB' $default
apt-get install enum4linux nbtscan smbmap -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> SMTP' $default
apt-get install smtp-user-enum swaks -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> SNMP' $default
apt-get install braa onesixtyone snmpcheck -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> SSL' $default
apt-get install sslcaudit ssldump sslh sslscan sslstrip sslyze tlssled -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> Active Host Identification' $default
apt-get install ipscan arping cdpsnarf miranda fping hping3 unicornscan wol-e xprobe2 ncat thc-ipv6 -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> IDS/IPS Identification' $default
apt-get install fragroute fragrouter ftest lbd -y > $output_device
echo -e $giallo '[*] Installing Information Gathering Tools ---> Top softwares' $default
apt-get install dmitry ike-scan netdiscover p0f -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> OpenVAS' $default
apt-get install openvas -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> Stress Test' $default
apt-get install dhcping iaxflood inviteflood macof siege slowloris t50 thc-ssl-dos -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> Cisco Tools' $default
apt-get install cisco-auditing-tool cisco-global-exploiter cisco-ocs cisco-torch yersinia copy-router-config -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> Fuzzing Tools' $default
apt-get install sipmyarmyknife bed powerfuzzer sfuzz -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> VOIP Tools' $default
apt-get install voiphopper sipvicious enumiax protos-sip rtpbreak sctpscan sipp sipsak -y > $output_device
echo -e $giallo '[*] Installing Vulnerability Assessment Tools ---> Other Tools' $default
apt-get install golismero inurlbr tdsog -y > $output_device
echo -e $giallo '[*] Installing Web Application Tools ---> Web Crawler' $default
apt-get install wfuzz dirb dirbuster uniscan-gui cutycapt -y > $output_device
echo -e $giallo '[*] Installing Web Application Tools ---> CMS Identification' $default
apt-get install clusterd plecost joomscan wpscan blindelephant ua-tester jboss-linux jboss-win -y > $output_device
echo -e $giallo '[*] Installing Web Application Tools ---> Web Application Proxy' $default
apt-get install paros proxystrike -y > $output_device
echo -e $giallo '[*] Installing Web Application Tools ---> Web Application Vulnerability Scanner' $default
apt-get install cadaver davtest deblaze fimap jsql skipfish wapiti webshag websploit xsser whatweb -y > $output_device
echo -e $giallo '[*] Installing Web Application Tools ---> Others' $default
apt-get install httrack -y > $output_device
echo -e $giallo '[*] Installing Database Analysis Tools' $default
apt-get install sqlmap hexorbase mdbtools oscanner sqlninja sqlsus -y > $output_device
echo -e $giallo '[*] Exploiting Tools' $default
echo -e $rosso "!!! It's temporarily impossible to install exploitation tools due to license issues...we are working hard. Stay tuned" $default && echo ""
echo -e $giallo '[*] Installing Mantaining Access Tools ---> SO Backdoor' $default
apt-get install dbd maligno u3-pwn -y > $output_device
echo -e $giallo '[*] Installing Mantaining Access Tools ---> Web Backdoor' $default
apt-get install webacoo -y > $output_device
echo -e $giallo '[*] Installing Mantaining Access Tools ---> Tunnelling Tools' $default
apt-get install dns2tcp iodine proxychains proxytunnel udptunnel -y > $output_device
echo -e $giallo '[*] Installing Password Attacks Tools ---> Dictionary Attacks' $default
apt-get install cewl crunch john -y > $output_device
echo -e $giallo '[*] Installing Password Attacks Tools ---> Online Attacks' $default
apt-get install cisco-auditing-tool hydra -y > $output_device
echo -e $giallo '[*] Installing Password Attacks Tools ---> Offline Attacks' $default
apt-get install findmyhash cmospwd fcrackzip hashid hash-identifier rainbowcrack medusa pyrit -y > $output_device
echo -e $giallo '[*] Installing Wireless Testing Tools ---> Wireless Tools' $default
apt-get install ubertooth-util hackrf airmode bully cowpatty eapmd5pass fern-wifi-cracker wifi-honey wifiarp wifite reaver pixiewps -y > $output_device
echo -e $giallo '[*] Installing Wireless Testing Tools ---> Software Defined Radio' $default
apt-get install rfcat gnuradio -y > $output_device
echo -e $giallo '[*] Installing Wireless Testing Tools ---> Bluetooth Tools' $default
apt-get install btscanner bluelog bluemaho blueranger bluesnarfer btscanner spooftooph -y > $output_device
echo -e $giallo '[*] Installing Wireless Testing Tools ---> Other Wireless Tools' $default
apt-get install mdk3 wifitap -y > $output_device
echo -e $giallo '[*] Installing Sniffing and Spoofing Tools ---> Sniffing' $default
apt-get install darkstat dnschef hexinject tcpflow sslsniff -y > $output_device
echo -e $giallo '[*] Installing Sniffing and Spoofing Tools ---> Spoofing' $default
apt-get install sslstrip -y > $output_device
echo -e $giallo '[*] Installing Forensic Tools ---> Spoofing' $default
apt-get install bulk-extractor chkrootkit rkhunter volafox scalpel photorec dc3dd ddrescue -y > $output_device
echo -e $verde 'System upgrade...'
sudo apt-get upgrade
echo -e $rosso 'You should reboot your computer now!\nAfter reboot you can use Iris as Hacking System\n Enjoy!'