-
Notifications
You must be signed in to change notification settings - Fork 17
/
sb-manager.sh
1182 lines (1038 loc) · 48.4 KB
/
sb-manager.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
textcolor='\033[0;36m'
red='\033[1;31m'
clear='\033[0m'
check_root() {
if [[ $EUID -ne 0 ]]
then
echo ""
echo -e "${red}Error: this command should be run as root, use \"sudo -i\" command${clear}"
echo ""
exit 1
fi
}
templates() {
if [ ! -f /etc/haproxy/auth.lua ] && [[ $(jq -r '.inbounds[] | select(.tag=="trojan-in") | .transport.type' /etc/sing-box/config.json) == "ws" ]]
then
wget -q -O /var/www/${subspath}/template.json https://raw.githubusercontent.com/BLUEBL0B/Secret-Sing-Box/master/Config-Templates/Client-Trojan-WS.json
elif [ ! -f /etc/haproxy/auth.lua ] && [[ $(jq -r '.inbounds[] | select(.tag=="trojan-in") | .transport.type' /etc/sing-box/config.json) == "httpupgrade" ]]
then
wget -q -O /var/www/${subspath}/template.json https://raw.githubusercontent.com/BLUEBL0B/Secret-Sing-Box/master/Config-Templates/Client-Trojan-HTTPUpgrade.json
else
wget -q -O /var/www/${subspath}/template.json https://raw.githubusercontent.com/BLUEBL0B/Secret-Sing-Box/master/Config-Templates/Client-Trojan-HAProxy.json
fi
if [ ! -f /var/www/${subspath}/template-loc.json ]
then
cp /var/www/${subspath}/template.json /var/www/${subspath}/template-loc.json
fi
}
get_ip() {
serverip=$(curl -s ipinfo.io/ip)
if [[ ! $serverip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]
then
serverip=$(curl -s 2ip.io)
fi
if [[ ! $serverip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]
then
serverip=$(curl -s ifconfig.me)
fi
}
get_data() {
get_ip
if [ -f /etc/haproxy/auth.lua ]
then
domain=$(grep "/etc/haproxy/certs/" /etc/haproxy/haproxy.cfg | head -n 1)
domain=${domain#*"/etc/haproxy/certs/"}
domain=${domain%".pem"*}
else
domain=$(grep "ssl_certificate" /etc/nginx/nginx.conf | head -n 1)
domain=${domain#*"/live/"}
domain=${domain%"/"*}
trojanpath=$(jq -r '.inbounds[] | select(.tag=="trojan-in") | .transport.path' /etc/sing-box/config.json)
trojanpath=${trojanpath#"/"}
vlesspath=$(jq -r '.inbounds[] | select(.tag=="vless-in") | .transport.path' /etc/sing-box/config.json)
vlesspath=${vlesspath#"/"}
fi
subspath=$(grep "location ~ ^/" /etc/nginx/nginx.conf | head -n 1)
subspath=${subspath#*"location ~ ^/"}
subspath=${subspath%" {"*}
rulesetpath=$(grep "alias /var/www/" /etc/nginx/nginx.conf | head -n 1)
rulesetpath=${rulesetpath#*"alias /var/www/"}
rulesetpath=${rulesetpath%"/;"*}
templates
tempip=$(jq -r '.dns.servers[] | select(has("client_subnet")) | .client_subnet' /var/www/${subspath}/template.json)
tempdomain=$(jq -r '.outbounds[] | select(.tag=="proxy") | .server' /var/www/${subspath}/template.json)
temprulesetpath=$(jq -r ".route.rule_set[-1].url" /var/www/${subspath}/template.json)
temprulesetpath=${temprulesetpath#*"https://${tempdomain}/"}
temprulesetpath=${temprulesetpath%"/"*}
loctempip=$(jq -r '.dns.servers[] | select(has("client_subnet")) | .client_subnet' /var/www/${subspath}/template-loc.json)
loctempdomain=$(jq -r '.outbounds[] | select(.tag=="proxy") | .server' /var/www/${subspath}/template-loc.json)
if [ -z ${loctempip} ]
then
loctempip=$(jq -r '.route.rules[] | select(has("ip_cidr")) | .ip_cidr[0]' /var/www/${subspath}/template-loc.json)
fi
loctemprulesetpath=$(jq -r ".route.rule_set[-1].url" /var/www/${subspath}/template-loc.json)
loctemprulesetpath=${loctemprulesetpath#*"https://${loctempdomain}/"}
loctemprulesetpath=${loctemprulesetpath%"/"*}
echo ""
}
validate_template() {
if [ $(jq -e . < /var/www/${subspath}/template.json &>/dev/null; echo $?) -ne 0 ] || [ ! -s /var/www/${subspath}/template.json ]
then
echo -e "${red}Ошибка: не удалось загрузить данные с Github${clear}"
echo ""
exit 1
fi
}
validate_local_template() {
if [ $(jq -e . < /var/www/${subspath}/template-loc.json &>/dev/null; echo $?) -ne 0 ] || [ ! -s /var/www/${subspath}/template-loc.json ]
then
echo -e "${red}Ошибка: структура template-loc.json нарушена, требуются исправления${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Нажмите ${textcolor}Enter${clear}, чтобы выйти, или введите ${textcolor}reset${clear}, чтобы сбросить шаблон до исходной версии"
read resettemp
if [[ "$resettemp" == "reset" ]]
then
echo ""
validate_template
rm /var/www/${subspath}/template-loc.json
cp /var/www/${subspath}/template.json /var/www/${subspath}/template-loc.json
echo "Шаблон сброшен до исходной версии"
echo ""
fi
main_menu
fi
}
exit_username() {
if [[ $username == "x" ]] || [[ $username == "х" ]]
then
username=""
main_menu
fi
}
check_username_add() {
while [[ -f /var/www/${subspath}/${username}-TRJ-CLIENT.json ]] || [ -z "$username" ]
do
if [[ -f /var/www/${subspath}/${username}-TRJ-CLIENT.json ]]
then
echo -e "${red}Ошибка: пользователь с таким именем уже существует${clear}"
echo ""
elif [ -z "$username" ]
then
:
fi
echo -e "${textcolor}[?]${clear} Введите имя нового пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
[[ ! -z $username ]] && echo ""
done
}
check_trjpass() {
while [[ $(jq "any(.inbounds[].users[]; .password == \"$trjpass\")" /etc/sing-box/config.json) == "true" ]] && [ ! -z "$trjpass" ]
do
echo -e "${red}Ошибка: этот пароль уже закреплён за другим пользователем${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Введите пароль для Trojan или оставьте пустым для генерации случайного пароля:"
read trjpass
[[ ! -z $trjpass ]] && echo ""
done
}
check_uuid() {
while ([[ ! $uuid =~ ^\{?[A-F0-9a-f]{8}-[A-F0-9a-f]{4}-[A-F0-9a-f]{4}-[A-F0-9a-f]{4}-[A-F0-9a-f]{12}\}?$ ]] || [[ $(jq "any(.inbounds[].users[]; .uuid == \"$uuid\")" /etc/sing-box/config.json) == "true" ]]) && [ ! -z "$uuid" ]
do
if [[ ! $uuid =~ ^\{?[A-F0-9a-f]{8}-[A-F0-9a-f]{4}-[A-F0-9a-f]{4}-[A-F0-9a-f]{4}-[A-F0-9a-f]{12}\}?$ ]]
then
echo -e "${red}Ошибка: введённое значение не является UUID${clear}"
elif [[ $(jq "any(.inbounds[].users[]; .uuid == \"$uuid\")" /etc/sing-box/config.json) == "true" ]]
then
echo -e "${red}Ошибка: этот UUID уже закреплён за другим пользователем${clear}"
fi
echo ""
echo -e "${textcolor}[?]${clear} Введите UUID для VLESS или оставьте пустым для генерации случайного UUID:"
read uuid
[[ ! -z $uuid ]] && echo ""
done
}
enter_user_data_add_ws() {
echo -e "${textcolor}[?]${clear} Введите имя нового пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
[[ ! -z $username ]] && echo ""
check_username_add
exit_username
echo -e "${textcolor}[?]${clear} Введите пароль для Trojan или оставьте пустым для генерации случайного пароля:"
read trjpass
[[ ! -z $trjpass ]] && echo ""
check_trjpass
echo -e "${textcolor}[?]${clear} Введите UUID для VLESS или оставьте пустым для генерации случайного UUID:"
read uuid
[[ ! -z $uuid ]] && echo ""
check_uuid
}
enter_user_data_add_haproxy() {
echo -e "${textcolor}[?]${clear} Введите имя нового пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
[[ ! -z $username ]] && echo ""
check_username_add
exit_username
echo -e "${textcolor}[?]${clear} Введите пароль для Trojan или оставьте пустым для генерации случайного пароля:"
read trjpass
[[ ! -z $trjpass ]] && echo ""
check_trjpass
}
enter_user_data_add() {
if [ -f /etc/haproxy/auth.lua ]
then
enter_user_data_add_haproxy
else
enter_user_data_add_ws
fi
}
generate_pass() {
if [ -z "$trjpass" ]
then
trjpass=$(tr -dc 'A-Za-z0-9' < /dev/urandom | head -c 30)
fi
if [ ! -f /etc/haproxy/auth.lua ] && [ -z "$uuid" ]
then
uuid=$(sing-box generate uuid)
fi
}
add_to_server_conf() {
inboundnum=$(jq '[.inbounds[].tag] | index("trojan-in")' /etc/sing-box/config.json)
echo "$(jq ".inbounds[${inboundnum}].users[.inbounds[${inboundnum}].users | length] |= . + {\"name\":\"${username}\",\"password\":\"${trjpass}\"}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
if [ ! -f /etc/haproxy/auth.lua ]
then
inboundnum=$(jq '[.inbounds[].tag] | index("vless-in")' /etc/sing-box/config.json)
echo "$(jq ".inbounds[${inboundnum}].users[.inbounds[${inboundnum}].users | length] |= . + {\"name\":\"${username}\",\"uuid\":\"${uuid}\"}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
systemctl reload sing-box.service
}
add_to_client_conf() {
cp /var/www/${subspath}/template-loc.json /var/www/${subspath}/${username}-TRJ-CLIENT.json
outboundnum=$(jq '[.outbounds[].tag] | index("proxy")' /var/www/${subspath}/${username}-TRJ-CLIENT.json)
if [ ! -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".outbounds[${outboundnum}].password = \"${trjpass}\" | .outbounds[${outboundnum}].transport.path = \"/${trojanpath}\"" /var/www/${subspath}/${username}-TRJ-CLIENT.json)" > /var/www/${subspath}/${username}-TRJ-CLIENT.json
else
echo "$(jq ".outbounds[${outboundnum}].password = \"${trjpass}\"" /var/www/${subspath}/${username}-TRJ-CLIENT.json)" > /var/www/${subspath}/${username}-TRJ-CLIENT.json
fi
sed -i -e "s/$loctempdomain/$domain/g" -e "s/$loctempip/$serverip/g" -e "s/$loctemprulesetpath/$rulesetpath/g" /var/www/${subspath}/${username}-TRJ-CLIENT.json
if [ ! -f /etc/haproxy/auth.lua ]
then
cp /var/www/${subspath}/template-loc.json /var/www/${subspath}/${username}-VLESS-CLIENT.json
outboundnum=$(jq '[.outbounds[].tag] | index("proxy")' /var/www/${subspath}/${username}-VLESS-CLIENT.json)
echo "$(jq ".outbounds[${outboundnum}].password = \"${uuid}\" | .outbounds[${outboundnum}].transport.path = \"/${vlesspath}\" | .outbounds[${outboundnum}].type = \"vless\" | .outbounds[${outboundnum}] |= with_entries(.key |= if . == \"password\" then \"uuid\" else . end)" /var/www/${subspath}/${username}-VLESS-CLIENT.json)" > /var/www/${subspath}/${username}-VLESS-CLIENT.json
sed -i -e "s/$loctempdomain/$domain/g" -e "s/$loctempip/$serverip/g" -e "s/$loctemprulesetpath/$rulesetpath/g" /var/www/${subspath}/${username}-VLESS-CLIENT.json
fi
echo -e "Пользователь ${textcolor}${username}${clear} добавлен:"
echo "https://${domain}/${subspath}/${username}-TRJ-CLIENT.json"
if [ ! -f /etc/haproxy/auth.lua ]
then
echo "https://${domain}/${subspath}/${username}-VLESS-CLIENT.json"
fi
echo ""
}
add_to_auth_lua() {
if [ -f /etc/haproxy/auth.lua ]
then
passhash=$(echo -n "${trjpass}" | openssl dgst -sha224 | sed 's/.* //')
sed -i "2i \ \ \ \ [\"${passhash}\"] = true," /etc/haproxy/auth.lua
systemctl reload haproxy.service
fi
}
check_username_del() {
while [[ ! -f /var/www/${subspath}/${username}-TRJ-CLIENT.json ]]
do
echo -e "${red}Ошибка: пользователь с таким именем не существует${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Введите имя пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
echo ""
exit_username
done
}
enter_user_data_del() {
echo -e "${textcolor}[?]${clear} Введите имя пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
echo ""
exit_username
check_username_del
}
del_from_server_conf() {
inboundnum=$(jq '[.inbounds[].tag] | index("trojan-in")' /etc/sing-box/config.json)
echo "$(jq </etc/sing-box/config.json "del(.inbounds[${inboundnum}].users[] | select(.name==\"${username}\"))")" > /etc/sing-box/config.json
if [ ! -f /etc/haproxy/auth.lua ]
then
inboundnum=$(jq '[.inbounds[].tag] | index("vless-in")' /etc/sing-box/config.json)
echo "$(jq </etc/sing-box/config.json "del(.inbounds[${inboundnum}].users[] | select(.name==\"${username}\"))")" > /etc/sing-box/config.json
fi
systemctl reload sing-box.service
}
del_client_conf() {
if [ ! -f /etc/haproxy/auth.lua ]
then
rm /var/www/${subspath}/${username}-TRJ-CLIENT.json /var/www/${subspath}/${username}-VLESS-CLIENT.json
else
rm /var/www/${subspath}/${username}-TRJ-CLIENT.json
fi
echo -e "Пользователь ${textcolor}${username}${clear} удалён"
echo ""
}
del_from_auth_lua() {
if [ -f /etc/haproxy/auth.lua ]
then
inboundnum=$(jq '[.inbounds[].tag] | index("trojan-in")' /etc/sing-box/config.json)
trjpass=$(jq -r ".inbounds[${inboundnum}].users[] | select(.name==\"${username}\") | .password" /etc/sing-box/config.json)
passhash=$(echo -n "${trjpass}" | openssl dgst -sha224 | sed 's/.* //')
sed -i "/$passhash/d" /etc/haproxy/auth.lua
systemctl reload haproxy.service
fi
}
sync_github_message() {
echo -e "${red}ВНИМАНИЕ!${clear}"
echo "Настройки в клиентских конфигах всех пользователей будут синхронизированы с последней версией на Github"
echo ""
echo -e "${textcolor}[?]${clear} Нажмите ${textcolor}Enter${clear}, чтобы синхронизировать настройки, или введите ${textcolor}x${clear}, чтобы выйти:"
read sync
}
exit_sync() {
if [[ "$sync" == "x" ]] || [[ "$sync" == "х" ]]
then
echo ""
sync=""
main_menu
fi
}
check_users() {
if [ $(ls -A1 /var/www/${subspath} | grep "CLIENT.json" | wc -l) -eq 0 ]
then
echo -e "${red}Ошибка: пользователи отсутствуют${clear}"
echo ""
main_menu
fi
}
get_pass() {
stack=$(jq -r '.inbounds[] | select(.tag=="tun-in") | .stack' ${file})
if grep -q ": \"trojan\"" "$file"
then
protocol="trojan"
cred=$(jq -r '.outbounds[] | select(.tag=="proxy") | .password' ${file})
else
protocol="vless"
cred=$(jq -r '.outbounds[] | select(.tag=="proxy") | .uuid' ${file})
fi
}
sync_client_configs_github() {
for file in /var/www/${subspath}/*-CLIENT.json
do
get_pass
rm ${file}
cp /var/www/${subspath}/template.json ${file}
inboundnum=$(jq '[.inbounds[].tag] | index("tun-in")' ${file})
outboundnum=$(jq '[.outbounds[].tag] | index("proxy")' ${file})
if [[ "$protocol" == "trojan" ]] && [ -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\"" ${file})" > ${file}
elif [[ "$protocol" == "trojan" ]] && [ ! -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\" | .outbounds[${outboundnum}].transport.path = \"/${trojanpath}\"" ${file})" > ${file}
else
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\" | .outbounds[${outboundnum}].transport.path = \"/${vlesspath}\" | .outbounds[${outboundnum}].type = \"vless\" | .outbounds[${outboundnum}] |= with_entries(.key |= if . == \"password\" then \"uuid\" else . end)" ${file})" > ${file}
fi
sed -i -e "s/$tempdomain/$domain/g" -e "s/$tempip/$serverip/g" -e "s/$temprulesetpath/$rulesetpath/g" ${file}
cred=""
inboundnum=""
outboundnum=""
done
for i in $(seq 0 $(expr $(jq ".route.rule_set | length" /var/www/${subspath}/template.json) - 1))
do
ruleset_link=$(jq -r ".route.rule_set[${i}].url" /var/www/${subspath}/template.json)
ruleset=${ruleset_link#"https://${tempdomain}/${temprulesetpath}/"}
if [ ! -f /var/www/${rulesetpath}/${ruleset} ]
then
wget -q -P /var/www/${rulesetpath} https://github.com/SagerNet/sing-geosite/raw/rule-set/${ruleset}
fi
done
echo "Синхронизация настроек завершена"
echo ""
}
sync_local_message() {
echo -e "${red}ВНИМАНИЕ!${clear}"
echo -e "Вы можете вручную отредактировать настройки в шаблоне ${textcolor}/var/www/${subspath}/template-loc.json${clear}"
echo "Настройки в этом файле будут применены к клиентским конфигам всех пользователей"
echo ""
echo -e "${textcolor}[?]${clear} Нажмите ${textcolor}Enter${clear}, чтобы синхронизировать настройки, или введите ${textcolor}x${clear}, чтобы выйти:"
read sync
}
sync_client_configs_local() {
for file in /var/www/${subspath}/*-CLIENT.json
do
get_pass
rm ${file}
cp /var/www/${subspath}/template-loc.json ${file}
inboundnum=$(jq '[.inbounds[].tag] | index("tun-in")' ${file})
outboundnum=$(jq '[.outbounds[].tag] | index("proxy")' ${file})
if [[ "$protocol" == "trojan" ]] && [ -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\"" ${file})" > ${file}
elif [[ "$protocol" == "trojan" ]] && [ ! -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\" | .outbounds[${outboundnum}].transport.path = \"/${trojanpath}\"" ${file})" > ${file}
else
echo "$(jq ".inbounds[${inboundnum}].stack = \"${stack}\" | .outbounds[${outboundnum}].password = \"${cred}\" | .outbounds[${outboundnum}].transport.path = \"/${vlesspath}\" | .outbounds[${outboundnum}].type = \"vless\" | .outbounds[${outboundnum}] |= with_entries(.key |= if . == \"password\" then \"uuid\" else . end)" ${file})" > ${file}
fi
sed -i -e "s/$loctempdomain/$domain/g" -e "s/$loctempip/$serverip/g" -e "s/$loctemprulesetpath/$rulesetpath/g" ${file}
cred=""
inboundnum=""
outboundnum=""
done
if [[ $(jq ".route.rule_set | length" /var/www/${subspath}/template-loc.json) =~ ^[0-9]+$ ]] && [[ $(jq ".route.rule_set | length" /var/www/${subspath}/template-loc.json) != "0" ]]
then
for i in $(seq 0 $(expr $(jq ".route.rule_set | length" /var/www/${subspath}/template-loc.json) - 1))
do
ruleset_link=$(jq -r ".route.rule_set[${i}].url" /var/www/${subspath}/template-loc.json)
ruleset=${ruleset_link#"https://${loctempdomain}/${loctemprulesetpath}/"}
if [ ! -f /var/www/${rulesetpath}/${ruleset} ]
then
wget -q -P /var/www/${rulesetpath} https://github.com/SagerNet/sing-geosite/raw/rule-set/${ruleset}
fi
done
fi
echo "Синхронизация настроек завершена"
echo ""
}
show_users() {
usernum=$(ls -A1 /var/www/${subspath} | grep "CLIENT.json" | wc -l)
if [ ! -f /etc/haproxy/auth.lua ]
then
usernum=$(expr ${usernum} / 2)
fi
echo -e "${textcolor}Количество пользователей:${clear} ${usernum}"
ls -A1 /var/www/${subspath} | grep "CLIENT.json" | sed "s/-TRJ-CLIENT\.json//g" | sed "s/-VLESS-CLIENT\.json//g" | uniq
echo ""
main_menu
}
add_users() {
validate_local_template
while [[ $username != "x" ]] && [[ $username != "х" ]]
do
enter_user_data_add
generate_pass
add_to_auth_lua
add_to_server_conf
add_to_client_conf
done
main_menu
}
delete_users() {
while [[ $username != "x" ]] && [[ $username != "х" ]]
do
enter_user_data_del
del_from_auth_lua
del_from_server_conf
del_client_conf
done
main_menu
}
sync_with_github() {
sync_github_message
exit_sync
check_users
validate_template
sync_client_configs_github
main_menu
}
sync_with_local_temp() {
sync_local_message
exit_sync
check_users
validate_local_template
sync_client_configs_local
main_menu
}
show_warp_domains() {
echo -e "${textcolor}Список доменов/суффиксов WARP:${clear}"
jq -r '.route.rules[] | select(.outbound=="warp") | .domain_suffix[]' /etc/sing-box/config.json
echo ""
main_menu
}
exit_add_warp() {
if [[ $newwarp == "x" ]] || [[ $newwarp == "х" ]]
then
newwarp=""
main_menu
fi
}
exit_del_warp() {
if [[ $delwarp == "x" ]] || [[ $delwarp == "х" ]]
then
delwarp=""
main_menu
fi
}
check_warp_domain_add() {
while [[ -n $(jq '.route.rules[] | select(.outbound=="warp") | .domain_suffix[]' /etc/sing-box/config.json | grep "\"${newwarp}\"") ]]
do
echo -e "${red}Ошибка: этот домен/суффикс уже добавлен в WARP${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Введите новый домен/суффикс для WARP или введите ${textcolor}x${clear}, чтобы закончить:"
read newwarp
echo ""
exit_add_warp
done
}
check_warp_domain_del() {
while [[ -z $(jq '.route.rules[] | select(.outbound=="warp") | .domain_suffix[]' /etc/sing-box/config.json | grep "\"${delwarp}\"") ]]
do
echo -e "${red}Ошибка: этот домен/суффикс не добавлен в WARP${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Введите домен/суффикс для удаления из WARP или введите ${textcolor}x${clear}, чтобы закончить:"
read delwarp
echo ""
exit_del_warp
done
}
add_warp_domains() {
warpnum=$(jq '[.route.rules[].outbound] | index("warp")' /etc/sing-box/config.json)
while [[ $newwarp != "x" ]] && [[ $newwarp != "х" ]]
do
echo -e "${textcolor}[?]${clear} Введите новый домен/суффикс для WARP или введите ${textcolor}x${clear}, чтобы закончить:"
read newwarp
echo ""
check_warp_domain_add
exit_add_warp
echo "$(jq ".route.rules[${warpnum}].domain_suffix[.route.rules[${warpnum}].domain_suffix | length]? += \"${newwarp}\"" /etc/sing-box/config.json)" > /etc/sing-box/config.json
systemctl reload sing-box.service
echo -e "Домен/суффикс ${textcolor}${newwarp}${clear} добавлен в WARP"
echo ""
done
}
delete_warp_domains() {
warpnum=$(jq '[.route.rules[].outbound] | index("warp")' /etc/sing-box/config.json)
while [[ $delwarp != "x" ]] && [[ $delwarp != "х" ]]
do
echo -e "${textcolor}[?]${clear} Введите домен/суффикс для удаления из WARP или введите ${textcolor}x${clear}, чтобы закончить:"
read delwarp
echo ""
exit_del_warp
check_warp_domain_del
echo "$(jq "del(.route.rules[${warpnum}].domain_suffix[] | select(. == \"${delwarp}\"))" /etc/sing-box/config.json)" > /etc/sing-box/config.json
systemctl reload sing-box.service
echo -e "Домен/суффикс ${textcolor}${delwarp}${clear} удалён из WARP"
echo ""
done
}
exit_enter_nextlink() {
if [[ $nextlink == "x" ]] || [[ $nextlink == "х" ]]
then
nextlink=""
main_menu
fi
}
check_nextlink() {
nextconfig=$(curl -s ${nextlink})
while [ $(jq -e . >/dev/null 2>&1 <<< "${nextconfig}"; echo $?) -ne 0 ] || [[ $(echo "${nextconfig}" | jq 'any(.outbounds[]; .tag == "proxy")') == "false" ]] || [ -z "${nextconfig}" ]
do
nextlink=""
echo -e "${red}Ошибка: неверная ссылка на конфиг или следующий сервер не отвечает${clear}"
echo ""
while [[ -z $nextlink ]]
do
echo -e "${textcolor}[?]${clear} Введите ссылку на клиентский конфиг со следующего сервера в цепочке или введите ${textcolor}x${clear}, чтобы выйти:"
read nextlink
echo ""
exit_enter_nextlink
done
nextconfig=$(curl -s ${nextlink})
done
}
chain_end() {
config_temp=$(curl -s https://raw.githubusercontent.com/BLUEBL0B/Secret-Sing-Box/master/Config-Templates/config.json)
if [ $(jq -e . >/dev/null 2>&1 <<< "${config_temp}"; echo $?) -eq 0 ] && [ -n "${config_temp}" ]
then
warp_rule=$(echo "${config_temp}" | jq '.route.rules[] | select(.outbound=="warp")')
warpnum=$(jq '[.route.rules[].outbound] | index("warp")' /etc/sing-box/config.json)
echo "$(jq ".route.rules[${warpnum}] |= . + ${warp_rule}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
echo "$(jq 'del(.route.rules[] | select(.outbound=="proxy")) | del(.outbounds[] | select(.tag=="proxy"))' /etc/sing-box/config.json)" > /etc/sing-box/config.json
if [[ $(jq 'any(.outbounds[]; .tag == "IPv4")' /etc/sing-box/config.json) == "false" ]]
then
echo "$(jq '.outbounds[.outbounds | length] |= . + {"type":"direct","tag":"IPv4","domain_strategy":"ipv4_only"}' /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rules[]; .outbound == "IPv4")' /etc/sing-box/config.json) == "false" ]]
then
echo "$(jq '.route.rules[.route.rules | length] |= . + {"rule_set":["google"],"outbound":"IPv4"}' /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "google")' /etc/sing-box/config.json) == "false" ]] && [ $(jq -e . >/dev/null 2>&1 <<< "${config_temp}"; echo $?) -eq 0 ] && [ -n "${config_temp}" ]
then
google_set=$(echo "${config_temp}" | jq '.route.rule_set[] | select(.tag=="google")')
echo "$(jq ".route.rule_set[.route.rule_set | length] |= . + ${google_set}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "telegram")' /etc/sing-box/config.json) == "false" ]] && [ $(jq -e . >/dev/null 2>&1 <<< "${config_temp}"; echo $?) -eq 0 ] && [ -n "${config_temp}" ]
then
telegram_set=$(echo "${config_temp}" | jq '.route.rule_set[] | select(.tag=="telegram")')
echo "$(jq ".route.rule_set[.route.rule_set | length] |= . + ${telegram_set}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "openai")' /etc/sing-box/config.json) == "false" ]] && [ $(jq -e . >/dev/null 2>&1 <<< "${config_temp}"; echo $?) -eq 0 ] && [ -n "${config_temp}" ]
then
openai_set=$(echo "${config_temp}" | jq '.route.rule_set[] | select(.tag=="openai")')
echo "$(jq ".route.rule_set[.route.rule_set | length] |= . + ${openai_set}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
sed -i -e "s/$temprulesetpath/$rulesetpath/g" /etc/sing-box/config.json
systemctl reload sing-box.service
echo "Изменение настроек завершено"
echo ""
main_menu
}
chain_middle() {
nextlink=""
while [[ -z $nextlink ]]
do
echo -e "${textcolor}[?]${clear} Введите ссылку на клиентский конфиг со следующего сервера в цепочке или введите ${textcolor}x${clear}, чтобы выйти:"
read nextlink
echo ""
done
exit_enter_nextlink
check_nextlink
nextoutbound=$(echo "${nextconfig}" | jq '.outbounds[] | select(.tag=="proxy")')
warpnum=$(jq '[.route.rules[].outbound] | index("warp")' /etc/sing-box/config.json)
if [[ $(jq 'any(.outbounds[]; .tag == "proxy")' /etc/sing-box/config.json) == "false" ]]
then
proxy_num=$(jq '.outbounds | length' /etc/sing-box/config.json)
proxy_rule_num=$(jq '.route.rules | length' /etc/sing-box/config.json)
else
proxy_num=$(jq '[.outbounds[].tag] | index("proxy")' /etc/sing-box/config.json)
proxy_rule_num=$(jq '[.route.rules[].outbound] | index("proxy")' /etc/sing-box/config.json)
fi
if [ -f /etc/haproxy/auth.lua ]
then
echo "$(jq ".route.rules[${proxy_rule_num}] |= . + {\"inbound\":[\"trojan-in\"],\"outbound\":\"proxy\"} | .outbounds[${proxy_num}] |= . + ${nextoutbound}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
else
echo "$(jq ".route.rules[${proxy_rule_num}] |= . + {\"inbound\":[\"trojan-in\",\"vless-in\"],\"outbound\":\"proxy\"} | .outbounds[${proxy_num}] |= . + ${nextoutbound}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
fi
echo "$(jq ".route.rules[${warpnum}] |= . + {\"rule_set\":[\"geoip-ru\",\"gov-ru\"],\"domain_suffix\":[\".ru\",\".su\",\".ru.com\",\".ru.net\"],\"domain_keyword\":[\"xn--\"],\"outbound\":\"warp\"}" /etc/sing-box/config.json)" > /etc/sing-box/config.json
if [[ $(jq 'any(.outbounds[]; .tag == "IPv4")' /etc/sing-box/config.json) == "true" ]]
then
echo "$(jq </etc/sing-box/config.json 'del(.outbounds[] | select(.tag=="IPv4"))')" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rules[]; .outbound == "IPv4")' /etc/sing-box/config.json) == "true" ]]
then
echo "$(jq </etc/sing-box/config.json 'del(.route.rules[] | select(.outbound=="IPv4"))')" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "google")' /etc/sing-box/config.json) == "true" ]]
then
echo "$(jq </etc/sing-box/config.json 'del(.route.rule_set[] | select(.tag=="google"))')" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "telegram")' /etc/sing-box/config.json) == "true" ]]
then
echo "$(jq </etc/sing-box/config.json 'del(.route.rule_set[] | select(.tag=="telegram"))')" > /etc/sing-box/config.json
fi
if [[ $(jq 'any(.route.rule_set[]; .tag == "openai")' /etc/sing-box/config.json) == "true" ]]
then
echo "$(jq </etc/sing-box/config.json 'del(.route.rule_set[] | select(.tag=="openai"))')" > /etc/sing-box/config.json
fi
systemctl reload sing-box.service
echo "Изменение настроек завершено"
echo ""
main_menu
}
chain_setup() {
echo -e "${textcolor}[?]${clear} Выберите положение сервера цепочке:"
echo "0 - Выйти"
if [[ $(jq 'any(.outbounds[]; .tag == "proxy")' /etc/sing-box/config.json) == "false" ]]
then
echo "1 - Настроить этот сервер как конечный в цепочке или единственный [Выбрано]"
echo "2 - Настроить этот сервер как промежуточный в цепочке или поменять следующий сервер"
else
echo "1 - Настроить этот сервер как конечный в цепочке или единственный"
echo "2 - Настроить этот сервер как промежуточный в цепочке или поменять следующий сервер [Выбрано]"
fi
read chain_option
echo ""
while [[ $(jq 'any(.outbounds[]; .tag == "proxy")' /etc/sing-box/config.json) == "false" ]] && [[ $chain_option == "1" ]]
do
echo -e "${red}Ошибка: этот сервер уже настроен как конечный в цепочке или единственный${clear}"
echo ""
echo -e "${textcolor}[?]${clear} Выберите положение сервера цепочке:"
echo "0 - Выйти"
echo "1 - Настроить этот сервер как конечный в цепочке или единственный [Выбрано]"
echo "2 - Настроить этот сервер как промежуточный в цепочке или поменять следующий сервер"
read chain_option
echo ""
done
case $chain_option in
1)
chain_end
;;
2)
chain_middle
;;
*)
main_menu
esac
}
change_stack() {
echo -e "${textcolor}[?]${clear} Введите имя пользователя или введите ${textcolor}x${clear}, чтобы закончить:"
read username
echo ""
exit_username
check_username_del
echo -e "${textcolor}[?]${clear} Выберите \"stack\" для пользователя ${username}:"
echo "0 - Выйти"
if [[ $(jq -r '.inbounds[] | select(.tag=="tun-in") | .stack' /var/www/${subspath}/${username}-TRJ-CLIENT.json) == "system" ]]
then
echo "1 - \"system\" (системный стек, лучшая производительность, значение по умолчанию) [Выбрано]"
else
echo "1 - \"system\" (системный стек, лучшая производительность, значение по умолчанию)"
fi
if [[ $(jq -r '.inbounds[] | select(.tag=="tun-in") | .stack' /var/www/${subspath}/${username}-TRJ-CLIENT.json) == "gvisor" ]]
then
echo "2 - \"gvisor\" (запускается в userspace, рекомендуется, если не работает \"system\") [Выбрано]"
else
echo "2 - \"gvisor\" (запускается в userspace, рекомендуется, если не работает \"system\")"
fi
if [[ $(jq -r '.inbounds[] | select(.tag=="tun-in") | .stack' /var/www/${subspath}/${username}-TRJ-CLIENT.json) == "mixed" ]]
then
echo "3 - \"mixed\" (смешанный вариант: \"system\" для TCP, \"gvisor\" для UDP) [Выбрано]"
else
echo "3 - \"mixed\" (смешанный вариант: \"system\" для TCP, \"gvisor\" для UDP)"
fi
read stackoption
echo ""
inboundnum=$(jq '[.inbounds[].tag] | index("tun-in")' /var/www/${subspath}/${username}-TRJ-CLIENT.json)
case $stackoption in
1)
echo "$(jq ".inbounds[${inboundnum}].stack = \"system\"" /var/www/${subspath}/${username}-TRJ-CLIENT.json)" > /var/www/${subspath}/${username}-TRJ-CLIENT.json
;;
2)
echo "$(jq ".inbounds[${inboundnum}].stack = \"gvisor\"" /var/www/${subspath}/${username}-TRJ-CLIENT.json)" > /var/www/${subspath}/${username}-TRJ-CLIENT.json
;;
3)
echo "$(jq ".inbounds[${inboundnum}].stack = \"mixed\"" /var/www/${subspath}/${username}-TRJ-CLIENT.json)" > /var/www/${subspath}/${username}-TRJ-CLIENT.json
;;
*)
main_menu
esac
if [ ! -f /etc/haproxy/auth.lua ]
then
inboundnum=$(jq '[.inbounds[].tag] | index("tun-in")' /var/www/${subspath}/${username}-VLESS-CLIENT.json)
case $stackoption in
2)
echo "$(jq ".inbounds[${inboundnum}].stack = \"gvisor\"" /var/www/${subspath}/${username}-VLESS-CLIENT.json)" > /var/www/${subspath}/${username}-VLESS-CLIENT.json
;;
3)
echo "$(jq ".inbounds[${inboundnum}].stack = \"mixed\"" /var/www/${subspath}/${username}-VLESS-CLIENT.json)" > /var/www/${subspath}/${username}-VLESS-CLIENT.json
;;
*)
echo "$(jq ".inbounds[${inboundnum}].stack = \"system\"" /var/www/${subspath}/${username}-VLESS-CLIENT.json)" > /var/www/${subspath}/${username}-VLESS-CLIENT.json
esac
fi
inboundnum=""
echo "Изменение \"stack\" завершено, для применения новых настроек обновите конфиг на клиенте"
echo ""
main_menu
}
exit_renew_cert() {
if [[ $certrenew == "x" ]] || [[ $certrenew == "х" ]]
then
echo ""
certrenew=""
main_menu
fi
}
renew_cert() {
echo -e "${red}ВНИМАНИЕ!${clear}"
echo "В скрипт встроено автоматическое обновление сертификата раз в 2 месяца, и ручное обновление рекомендуется только в случае сбоев"
echo "При обновлении сертификата более 5 раз в неделю можно достичь лимита Let's Encrypt, что потребует ожидания для следующего обновления"
echo ""
echo -e "${textcolor}[?]${clear} Нажмите ${textcolor}Enter${clear}, чтобы обновить сертификат, или введите ${textcolor}x${clear}, чтобы выйти:"
read certrenew
exit_renew_cert
if [ ! -f /etc/letsencrypt/live/${domain}/fullchain.pem ]
then
email=""
while [[ -z $email ]]
do
echo -e "${textcolor}[?]${clear} Введите вашу почту, зарегистрированную на Cloudflare:"
read email
echo ""
done
echo -e "${textcolor}Получение сертификата...${clear}"
certbot certonly --dns-cloudflare --dns-cloudflare-credentials /etc/letsencrypt/cloudflare.credentials --dns-cloudflare-propagation-seconds 35 -d ${domain},*.${domain} --agree-tos -m ${email} --no-eff-email --non-interactive
if [ $? -eq 0 ]
then
echo ""
echo "Сертификат успешно выпущен"
else
echo ""
echo -e "${red}Ошибка: сертификат не выпущен${clear}"
fi
if [ ! -f /etc/haproxy/auth.lua ] && [ -f /etc/letsencrypt/renewal/${domain}.conf ] && ! grep -q "renew_hook =" /etc/letsencrypt/renewal/${domain}.conf
then
echo "renew_hook = systemctl reload nginx" >> /etc/letsencrypt/renewal/${domain}.conf
systemctl reload nginx.service
elif [ -f /etc/haproxy/auth.lua ] && [ -f /etc/letsencrypt/renewal/${domain}.conf ] && ! grep -q "renew_hook =" /etc/letsencrypt/renewal/${domain}.conf
then
echo "renew_hook = cat /etc/letsencrypt/live/${domain}/fullchain.pem /etc/letsencrypt/live/${domain}/privkey.pem > /etc/haproxy/certs/${domain}.pem && systemctl restart haproxy" >> /etc/letsencrypt/renewal/${domain}.conf
cat /etc/letsencrypt/live/${domain}/fullchain.pem /etc/letsencrypt/live/${domain}/privkey.pem > /etc/haproxy/certs/${domain}.pem
systemctl reload haproxy.service
fi
echo ""
main_menu
fi
certbot renew --force-renewal
if [ $? -eq 0 ]
then
echo ""
echo "Сертификат успешно обновлён"
else
echo ""
echo -e "${red}Ошибка: сертификат не обновлён${clear}"
fi
echo ""
main_menu
}
exit_change_domain() {
if [[ $domain == "x" ]] || [[ $domain == "х" ]]
then
domain="${old_domain}"
main_menu
fi
}
crop_domain() {
if [[ "$domain" == "https://"* ]]
then
domain=${domain#"https://"}
fi
if [[ "$domain" == "http://"* ]]
then
domain=${domain#"http://"}
fi
if [[ "$domain" == "www."* ]]
then
domain=${domain#"www."}
fi
if [[ "$domain" =~ "/" ]]
then
domain=$(echo "${domain}" | cut -d "/" -f 1)
fi
}
get_test_response() {
testdomain=$(echo "${domain}" | rev | cut -d '.' -f 1-2 | rev)
if [[ "$cftoken" =~ [A-Z] ]]
then
test_response=$(curl --silent --request GET --url https://api.cloudflare.com/client/v4/zones --header "Authorization: Bearer ${cftoken}" --header "Content-Type: application/json")
else
test_response=$(curl --silent --request GET --url https://api.cloudflare.com/client/v4/zones --header "X-Auth-Key: ${cftoken}" --header "X-Auth-Email: ${email}" --header "Content-Type: application/json")
fi
}
check_cf_token() {
echo "Проверка домена, API токена/ключа и почты..."
get_test_response
while [[ -z $(echo $test_response | grep "\"${testdomain}\"") ]] || [[ -z $(echo $test_response | grep "\"#dns_records:edit\"") ]] || [[ -z $(echo $test_response | grep "\"#dns_records:read\"") ]] || [[ -z $(echo $test_response | grep "\"#zone:read\"") ]]
do
domain=""
email=""
cftoken=""
echo ""
echo -e "${red}Ошибка: неправильно введён домен, API токен/ключ или почта${clear}"
echo ""
while [[ -z $domain ]]
do
echo -e "${textcolor}[?]${clear} Введите новый домен или введите ${textcolor}x${clear}, чтобы выйти:"
read domain
echo ""
done
exit_change_domain
crop_domain
while [[ -z $email ]]
do
echo -e "${textcolor}[?]${clear} Введите вашу почту, зарегистрированную на Cloudflare:"
read email
echo ""
done
while [[ -z $cftoken ]]
do
echo -e "${textcolor}[?]${clear} Введите ваш API токен Cloudflare (Edit zone DNS) или Cloudflare global API key:"
read cftoken
echo ""
done
echo "Проверка домена, API токена/ключа и почты..."
get_test_response
done
echo "Успешно!"
echo ""
}
change_domain() {
old_domain="${domain}"
domain=""
email=""
cftoken=""
echo -e "${red}ВНИМАНИЕ!${clear}"
echo "Не забудьте создать А запись для нового домена и заменить домен в ссылках для клиентов"
echo ""
while [[ -z $domain ]]