-
Notifications
You must be signed in to change notification settings - Fork 4
/
Deb7_AutoScript_VPS
280 lines (247 loc) · 11.9 KB
/
Deb7_AutoScript_VPS
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#!/bin/bash
#
# Original script by fornesia, rzengineer and fawzya
# Mod by Bustami Arifin
# Translation by shigeno
# ==================================================
# Initializing Var
export DEBIAN_FRONTEND=noninteractive
OS=`uname -m`;
MYIP=$(wget -qO- ipv4.icanhazip.com);
MYIP2="s/xxxxxxxxx/$MYIP/g";
# Details of shigeno
country=PH
state=Manila
locality=Manila
organization=CoffeeWorks
organizationalunit=CoffeeWorks
commonname=CoffeeWorks
# go to root
cd
# disable ipv6
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
sed -i '$ i\echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6' /etc/rc.local
# install wget and curl
apt-get update;apt-get -y install wget curl;
# set time GMT +7
ln -fs /usr/share/zoneinfo/Asia/Manila /etc/localtime
# set locale
sed -i 's/AcceptEnv/#AcceptEnv/g' /etc/ssh/sshd_config
service ssh restart
# set repo
wget -O /etc/apt/sources.list "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/sources.list.debian7"
wget "http://www.dotdeb.org/dotdeb.gpg"
cat dotdeb.gpg | apt-key add -;rm dotdeb.gpg
sh -c 'echo "deb http://download.webmin.com/download/repository sarge contrib" > /etc/apt/sources.list.d/webmin.list'
wget -qO - http://www.webmin.com/jcameron-key.asc | apt-key add -
# update
apt-get update
# install webserver
apt-get -y install nginx
# install essential package
apt-get -y install nano iptables dnsutils openvpn screen whois ngrep unzip unrar
echo "clear" >> .bashrc
echo 'echo -e "\e[94m ::::::::: :::::::::: ::::::::: ::::::::::: "' >> .bashrc
echo 'echo -e "\e[94m :+: :+: :+: :+: :+: :+: :+: "' >> .bashrc
echo 'echo -e "\e[94m +:+ +:+ +:+ +:+ +:+ +:+ "' >> .bashrc
echo 'echo -e "\e[94m +#+ +:+ +#++:++# +#++:++#+ +#+ "' >> .bashrc
echo 'echo -e "\e[94m +#+ +#+ +#+ +#+ +#+ +#+ "' >> .bashrc
echo 'echo -e "\e[94m #+# #+# #+# #+# #+# #+# "' >> .bashrc
echo 'echo -e "\e[94m ######### ########## ######### ### "' >> .bashrc
echo 'echo -e "\e[94m Deb7AutoScriptVPS by shigeno "' >> .bashrc
echo 'echo -e "\e[0m"' >> .bashrc
echo 'echo -e "\e[94m##################################################"' >> .bashrc
echo 'echo -e "\e[94m# Commands Description #"' >> .bashrc
echo 'echo -e "\e[94m# #"' >> .bashrc
echo 'echo -e "\e[94m# menu ---- Show Commands #"' >> .bashrc
echo 'echo -e "\e[94m# add ---- Create User Account #"' >> .bashrc
echo 'echo -e "\e[94m# trial ---- Create Trial Account #"' >> .bashrc
echo 'echo -e "\e[94m# remove ---- Remove Account #"' >> .bashrc
echo 'echo -e "\e[94m# check ---- Check Account Login #"' >> .bashrc
echo 'echo -e "\e[94m# member ---- Check Users #"' >> .bashrc
echo 'echo -e "\e[94m# banner ---- Configure Server Message #"' >> .bashrc
echo 'echo -e "\e[94m# restart ---- Restart Services #"' >> .bashrc
echo 'echo -e "\e[94m# reboot ---- Reboot VPS #"' >> .bashrc
echo 'echo -e "\e[94m# speedtest ---- Speedtest VPS #"' >> .bashrc
echo 'echo -e "\e[94m# info ---- System Information #"' >> .bashrc
echo 'echo -e "\e[94m# about ---- Deb7AutoScriptVPS Info #"' >> .bashrc
echo 'echo -e "\e[94m# exit ---- Close Putty / JuiceSSH #"' >> .bashrc
echo 'echo -e "\e[94m# #"' >> .bashrc
echo 'echo -e "\e[94m##################################################"' >> .bashrc
echo 'echo -e "\e[0m "' >> .bashrc
# install webserver
cd
rm /etc/nginx/sites-enabled/default
rm /etc/nginx/sites-available/default
wget -O /etc/nginx/nginx.conf "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/nginx.conf"
mkdir -p /home/vps/public_html
echo "<pre>Setup by Shigeno</pre>" > /home/vps/public_html/index.html
wget -O /etc/nginx/conf.d/vps.conf "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/vps.conf"
service nginx restart
# install openvpn
wget -O /etc/openvpn/openvpn.tar "https://github.com/shigeno143/Deb7AutoScriptVPS/raw/master/openvpn-debian.tar"
cd /etc/openvpn/
tar xf openvpn.tar
wget -O /etc/openvpn/1194.conf "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/1194.conf"
service openvpn restart
sysctl -w net.ipv4.ip_forward=1
sed -i 's/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/g' /etc/sysctl.conf
iptables -t nat -I POSTROUTING -s 192.168.100.0/24 -o eth0 -j MASQUERADE
iptables-save > /etc/iptables_yg_baru_dibikin.conf
wget -O /etc/network/if-up.d/iptables "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/iptables"
chmod +x /etc/network/if-up.d/iptables
service openvpn restart
# openvpn configuration
cd /etc/openvpn/
wget -O /etc/openvpn/client.ovpn "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/client-1194.conf"
sed -i $MYIP2 /etc/openvpn/client.ovpn;
cp client.ovpn /home/vps/public_html/
# install badvpn
cd
wget -O /usr/bin/badvpn-udpgw "https://github.com/shigeno143/Deb7AutoScriptVPS/raw/master/badvpn-udpgw"
if [ "$OS" == "x86_64" ]; then
wget -O /usr/bin/badvpn-udpgw "https://github.com/shigeno143/Deb7AutoScriptVPS/raw/master/badvpn-udpgw64"
fi
sed -i '$ i\screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300' /etc/rc.local
chmod +x /usr/bin/badvpn-udpgw
screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300
# setting port ssh
cd
sed -i 's/Port 22/Port 22/g' /etc/ssh/sshd_config
sed -i '/Port 22/a Port 143' /etc/ssh/sshd_config
service ssh restart
# install dropbear
apt-get -y install dropbear
sed -i 's/NO_START=1/NO_START=0/g' /etc/default/dropbear
sed -i 's/DROPBEAR_PORT=22/DROPBEAR_PORT=443/g' /etc/default/dropbear
sed -i 's/DROPBEAR_EXTRA_ARGS=/DROPBEAR_EXTRA_ARGS="-p 80"/g' /etc/default/dropbear
echo "/bin/false" >> /etc/shells
echo "/usr/sbin/nologin" >> /etc/shells
service ssh restart
service dropbear restart
# install squid3
cd
apt-get -y install squid3
wget -O /etc/squid3/squid.conf "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/squid3.conf"
sed -i $MYIP2 /etc/squid3/squid.conf;
service squid3 restart
# install webmin
cd
apt-get -y install webmin
sed -i 's/ssl=1/ssl=0/g' /etc/webmin/miniserv.conf
service webmin restart
# install stunnel
apt-get -y install stunnel4
wget -O /etc/stunnel/stunnel.pem "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/stunnel.pem"
wget -O /etc/stunnel/stunnel.conf "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/stunnel.conf"
sed -i $MYIP2 /etc/stunnel/stunnel.conf
sed -i 's/ENABLED=0/ENABLED=1/g' /etc/default/stunnel4
service stunnel4 restart
# install fail2ban
apt-get -y install fail2ban;
service fail2ban restart
# install ddos deflate
cd
apt-get -y install dnsutils dsniff
wget https://github.com/shigeno143/Deb7AutoScriptVPS/raw/master/ddos-deflate-master.zip
unzip ddos-deflate-master.zip
cd ddos-deflate-master
./install.sh
rm -rf /root/ddos-deflate-master.zip
# banner
rm /etc/issue.net
wget -O /etc/issue.net "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/issue.net"
sed -i 's@#Banner@Banner@g' /etc/ssh/sshd_config
sed -i 's@DROPBEAR_BANNER=""@DROPBEAR_BANNER="/etc/issue.net"@g' /etc/default/dropbear
service ssh restart
service dropbear restart
#xml parser
cd
apt-get -y --force-yes -f install libxml-parser-perl
#block torrent
iptables -A OUTPUT -p tcp --dport 6881:6889 -j DROP
iptables -A OUTPUT -p udp --dport 1024:65534 -j DROP
iptables -A FORWARD -m string --string "get_peers" --algo bm -j DROP
iptables -A FORWARD -m string --string "announce_peer" --algo bm -j DROP
iptables -A FORWARD -m string --string "find_node" --algo bm -j DROP
iptables -A FORWARD -m string --algo bm --string "BitTorrent" -j DROP
iptables -A FORWARD -m string --algo bm --string "BitTorrent protocol" -j DROP
iptables -A FORWARD -m string --algo bm --string "peer_id=" -j DROP
iptables -A FORWARD -m string --algo bm --string ".torrent" -j DROP
iptables -A FORWARD -m string --algo bm --string "announce.php?passkey=" -j DROP
iptables -A FORWARD -m string --algo bm --string "torrent" -j DROP
iptables -A FORWARD -m string --algo bm --string "announce" -j DROP
iptables -A FORWARD -m string --algo bm --string "info_hash" -j DROP
# download script
cd /usr/bin
wget -O menu "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/menu.sh"
wget -O add "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/usernew.sh"
wget -O trial "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/trial.sh"
wget -O remove "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/hapus.sh"
wget -O check "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/user-login.sh"
wget -O member "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/user-list.sh"
wget -O banner "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/servermessage.sh"
wget -O restart "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/resvis.sh"
wget -O speedtest "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/speedtest_cli.py"
wget -O info "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/info.sh"
wget -O about "https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/about.sh"
echo "0 0 * * * root /sbin/reboot" > /etc/cron.d/reboot
chmod +x menu
chmod +x add
chmod +x trial
chmod +x remove
chmod +x check
chmod +x member
chmod +x banner
chmod +x restart
chmod +x speedtest
chmod +x info
chmod +x about
# finishing
cd
chown -R www-data:www-data /home/vps/public_html
service nginx start
service openvpn restart
service cron restart
service ssh restart
service dropbear restart
service squid3 restart
service webmin restart
rm -rf ~/.bash_history && history -c
echo "unset HISTFILE" >> /etc/profile
# install Screenfetch
apt-get -y install lsb-release scrot
wget -O screenfetch 'https://raw.githubusercontent.com/shigeno143/Deb7AutoScriptVPS/master/screenfetch'
chmod +x screenfetch
# info
clear
echo -e ""
echo -e "\e[94m##################################################"
echo -e "\e[94m Deb7AutoScriptVPS by Shigeno "
echo -e "\e[94m "
echo -e "\e[94m Services "
echo -e "\e[94m "
echo -e "\e[94m OpenSSH : 22, 143 "
echo -e "\e[94m Dropbear : 80, 443 "
echo -e "\e[94m SSL : 442 "
echo -e "\e[94m Squid3 : 3128, 8000, 8080 "
echo -e "\e[94m OpenVPN : TCP 1194 "
echo -e "\e[94m BadVPN : UDPGW 7300 "
echo -e "\e[94m Nginx : 80 "
echo -e "\e[94m "
echo -e "\e[94m Other Features Included "
echo -e "\e[94m "
echo -e "\e[94m Timezone : Asia/Manila (GMT +7) "
echo -e "\e[94m Webmin : http://$MYIP:10000/ "
echo -e "\e[94m IPV6 : [OFF] "
echo -e "\e[94m Cron Scheduler : [ON] "
echo -e "\e[94m Fail2Ban : [ON] "
echo -e "\e[94m DDOS Deflate : [ON] "
echo -e "\e[94m LibXML Parser : {ON] "
echo -e "\e[94m##################################################"
echo -e "\e[0m "
read -n1 -r -p " Press Any Key To Show Commands "
menu
cd
rm -f /root/Deb7_AutoScript_VPS.sh