-
Notifications
You must be signed in to change notification settings - Fork 87
/
v2ary-nginx-tls-b.sh
299 lines (299 loc) · 10.6 KB
/
v2ary-nginx-tls-b.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
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#!/bin/bash
RED="\033[0;31m"
NO_COLOR="\033[0m"
GREEN="\033[32m\033[01m"
BLUE="\033[0;36m"
green(){
echo -e "\033[32m\033[01m$1\033[0m"
}
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
sleep 2
echo "export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:$PATH" >> ~/.bashrc
source ~/.bashrc
echo "等3秒……"
sleep 3
isRoot(){
if [[ "$EUID" -ne 0 ]]; then
echo "false"
else
echo "true"
fi
}
init_release(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
if [[ $release = "ubuntu" || $release = "debian" ]]; then
PM='apt'
elif [[ $release = "centos" ]]; then
PM='yum'
else
exit 1
fi
# PM='apt'
}
tools_install(){
init_release
if [ $PM = 'apt' ]; then
apt-get update
apt-get install -y dnsutils wget unzip zip curl tar git nginx qrencode
apt-get install -y certbot
apt-get install -y cron
elif [ $PM = 'yum' ]; then
yum update -y
yum -y install bind-utils wget unzip zip curl tar git nginx crontabs libpng libpng-devel qrencode python36
yum install -y epel-release
yum install -y certbot
ln -s python3.6 python3
fi
}
web_get(){
mkdir /var/www
echo -e "下面提供了15个不同的伪装网站模板,按对应的数字进行安装,安装之前可以查看网站demo:
${GREEN}1. https://templated.co/intensify
${GREEN}2. https://templated.co/binary
${GREEN}3. https://templated.co/retrospect
${GREEN}4. https://templated.co/spatial
${GREEN}5. https://templated.co/monochromed
${GREEN}6. https://templated.co/transit
${GREEN}7. https://templated.co/interphase
${GREEN}8. https://templated.co/ion
${GREEN}9. https://templated.co/solarize
${GREEN}10. https://templated.co/phaseshift
${GREEN}11. https://templated.co/horizons
${GREEN}12. https://templated.co/grassygrass
${GREEN}13. https://templated.co/breadth
${GREEN}14. https://templated.co/undeviating
${GREEN}15. https://templated.co/lorikeet${NO_COLOR}
"
read -p "您输入你要安装的网站的数字:" aNum
case $aNum in
1)wget -O web.zip --no-check-certificate https://templated.co/intensify/download
;;
2)wget -O web.zip --no-check-certificate https://templated.co/binary/download
;;
3)wget -O web.zip --no-check-certificate https://templated.co/retrospect/download
;;
4)wget -O web.zip --no-check-certificate https://templated.co/spatial/download
;;
5)wget -O web.zip --no-check-certificate https://templated.co/monochromed/download
;;
6)wget -O web.zip --no-check-certificate https://templated.co/transit/download
;;
7)wget -O web.zip --no-check-certificate https://templated.co/interphase/download
;;
8)wget -O web.zip --no-check-certificate https://templated.co/ion/download
;;
9)wget -O web.zip --no-check-certificate https://templated.co/solarize/download
;;
10)wget -O web.zip --no-check-certificate https://templated.co/phaseshift/download
;;
11)wget -O web.zip --no-check-certificate https://templated.co/horizons/download
;;
12)wget -O web.zip --no-check-certificate https://templated.co/grassygrass/download
;;
13)wget -O web.zip --no-check-certificate https://templated.co/breadth/download
;;
14)wget -O web.zip --no-check-certificate https://templated.co/undeviating/download
;;
15)wget -O web.zip --no-check-certificate https://templated.co/lorikeet/download
;;
*)wget -O web.zip --no-check-certificate https://templated.co/intensify/download
;;
esac
unzip -o -d /var/www web.zip
}
left_second(){
seconds_left=10
while [ $seconds_left -gt 0 ];do
echo -n $seconds_left
sleep 1
seconds_left=$(($seconds_left - 1))
echo -ne "\r \r"
done
}
v2ray_install(){
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
bash <(curl -L -s https://install.direct/go.sh)
}
nginx_conf(){
green "=========================================="
green " 开始申请证书"
green "=========================================="
read -p "请输入您的域名(注意:如果你的域名是使用 Cloudflare 解析的,请在Status 那里点一下那图标,让它变灰):" domainname
real_addr=`ping ${domainname} -c 1 | sed '1{s/[^(]*(//;s/).*//;q}'`
local_addr=`curl -4 ip.sb`
while [ "$real_addr" != "$local_addr" ]; do
read -p "本机ip和绑定域名的IP不一致,请检查域名是否解析成功,并重新输入域名:" domainname
real_addr=`ping ${domainname} -c 1 | sed '1{s/[^(]*(//;s/).*//;q}'`
local_addr=`curl -4 ip.sb`
if [ "$real_addr" != "$local_addr" ]; then
local_addr=`curl ipv4.icanhazip.com`
fi
if [ "$real_addr" != "$local_addr" ]; then
local_addr=`curl -4 ifconfig.me`
fi
done
echo "$domainname" 2>&1 | tee /etc/domainname
read -p "请输入您的邮箱:" emailname
read -p "您输入的邮箱正确吗? [y/n]?" answer
while [ "$answer" != "y" ]; do
read -p "请重新输入您的邮箱:" emailname
read -p "您输入的邮箱正确吗? [y/n]?" answer
done
certbot certonly --standalone -n --agree-tos --email $emailname -d $domainname
cd /etc/letsencrypt/live/$domainname
\cp fullchain.pem /etc/v2ray 2>&1 | tee /etc/v2ray/log
\cp privkey.pem /etc/v2ray 2>&1 | tee /etc/v2ray/log
curl -s -o /etc/nginx/conf.d/default.conf https://raw.githubusercontent.com/JeannieStudio/jeannie/master/v2ray_default.conf
sed -i "s/mydomain.me/$domainname/g" /etc/nginx/conf.d/default.conf
sleep 1
sed -i "s/# server_names_hash_bucket_size 64;/server_names_hash_bucket_size 64;/g" /etc/nginx/nginx.conf
sleep 1
}
genId(){
id1=$(cat /proc/sys/kernel/random/uuid | md5sum |cut -c 1-8)
id2=$(cat /proc/sys/kernel/random/uuid | md5sum |cut -c 1-4)
id3=$(cat /proc/sys/kernel/random/uuid | md5sum |cut -c 1-4)
id4=$(cat /proc/sys/kernel/random/uuid | md5sum |cut -c 1-4)
id5=$(cat /proc/sys/kernel/random/uuid | md5sum |cut -c 1-12)
id=$id1'-'$id2'-'$id3'-'$id4'-'$id5
echo "$id"
}
v2ray_conf(){
genId
read -p "已帮您随机产生一个uuid:
$id,
满意吗?(输入y表示不满意再生成一个,按其他键表示接受)" answer
while [[ "$answer" = "y" ]]; do
genId
read -p "uuid:$id,满意吗?(不满意输入y,按其他键表示接受)" answer
done
rm -f config.json
curl -O https://raw.githubusercontent.com/JeannieStudio/jeannie/master/config.json
sed -i "s/"b831381d-6324-4d53-ad4f-8cda48b30811"/$id/g" config.json
\cp -rf config.json /etc/v2ray/config.json
}
CA_exist(){
grep "cp: cannot stat" /etc/v2ray/log >/dev/null
if [ $? -eq 0 ]; then
FLAG="YES"
else
FLAG="NO"
fi
}
check_CA(){
CA_exist
if [ $FLAG = "NO" ]; then
end_time=$(echo | openssl s_client -servername $domainname -connect $domainname:443 2>/dev/null | openssl x509 -noout -dates |grep 'After'| awk -F '=' '{print $2}'| awk -F ' +' '{print $1,$2,$4 }' )
#while [ "${end_time}" = "" ]; do
# end_time=$(echo | openssl s_client -servername $domainname -connect $domainname:443 2>/dev/null | openssl x509 -noout -dates |grep 'After'| awk -F '=' '{print $2}'| awk -F ' +' '{print $1,$2,$4 }' )
#done
end_times=$(date +%s -d "$end_time")
now_time=$(date +%s -d "$(date | awk -F ' +' '{print $2,$3,$6}')")
RST=$(($((end_times-now_time))/(60*60*24)))
fi
}
add_CA(){
init_release
CA_exist
if [ $FLAG = "NO" ]; then
rm -f /etc/RST.sh
curl -s -o /etc/RST.sh https://raw.githubusercontent.com/JeannieStudio/all_install/master/RST.sh
chmod +x /etc/RST.sh
if [ $PM = 'apt' ] ; then
cron_job="30 4 * * * /etc/RST.sh"
( crontab -l | grep -v "$cron_job"; echo "$cron_job" ) | crontab -
service cron restart
elif [ $PM = 'yum' ]; then
echo "SHELL=/bin/bash
30 4 * * * /etc/RST.sh" > /var/spool/cron/root
service crond reload
service crond restart
fi
fi
}
mgr(){
if [ -f "/etc/mgr.sh" ]; then
rm -f /etc/mgr.sh
fi
while [ ! -f "/etc/mgr.sh" ]; do
curl -s -o /etc/mgr.sh https://raw.githubusercontent.com/JeannieStudio/all_install/master/mgr.sh
done
chmod +x /etc/mgr.sh
}
info(){
rm -f /etc/v2ray/v2ray_info
cp /etc/v2ray/config.json code_config.json
sed -i '/"network": "ws",/i "security": "tls",' code_config.json
wget --no-check-certificate -O json2vmess.py https://raw.githubusercontent.com/JeannieStudio/all_install/master/json2vmess.py
chmod +x json2vmess.py
code=$(./json2vmess.py --addr ${domainname} --filter ws --amend port:443 code_config.json)
qrencode -o /var/www/$id.png -s 8 "${code}"
vps=v2ray
echo "${id}" >> /etc/v2ray/v2ray_info
echo "${domainname}" >> /etc/v2ray/v2ray_info
echo "${vps}" >> /etc/v2ray/v2ray_info
wget --no-check-certificate -O /var/www/v2ray_tmpl.html https://raw.githubusercontent.com/JeannieStudio/all_install/master/v2ray_tmpl.html
chmod +x /var/www/v2ray_tmpl.html
eval "cat <<EOF
$(< /var/www/v2ray_tmpl.html)
EOF
" > /var/www/${id}.html
}
main(){
isRoot=$( isRoot )
if [[ "${isRoot}" != "true" ]]; then
echo -e "${RED_COLOR}error:${NO_COLOR}Please run this script as as root"
exit 1
else
tools_install
web_get
v2ray_install
nginx -s stop
nginx_conf
echo "睡一会儿……"
left_second
nginx
systemctl enable nginx.service
v2ray_conf
echo "睡一会儿……"
sleep 6
service v2ray start
CA_exist
check_CA
add_CA
info
if [ $FLAG = "YES" ]; then
echo -e "
$RED=======================================================
$RED 很遗憾,v2ray配置失败
$RED ======================================================
${RED}由于证书申请失败,无法科学上网,请重装或更换一个域名重新安装, 详情:https://letsencrypt.org/docs/rate-limits/
进一步验证证书申请情况,参考:https://www.ssllabs.com/ssltest/ $NO_COLOR" 2>&1 | tee info
elif [ $FLAG = "NO" ]; then
echo -e "
${GREEN} ==================================================
${GREEN} 恭喜你,v2ray安装和配置成功
${GREEN} ===================================================
详情:https://${domainname}/${id}.html
${NO_COLOR}" 2>&1 | tee info
fi
touch /etc/motd
cat info > /etc/motd
fi
}
main