-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathloadbalance.py
3988 lines (3283 loc) · 211 KB
/
loadbalance.py
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
#
# FRP Loadbalance Configuration Script
# Author: github.com/Azumi67
# This is for educational use and my own learning, please provide me with feedback if possible
# There maybe some erros , please forgive me as i have worked on it while i was studying.
# This script is designed to simplify the configuration of FRP tunnel and loadbalance.
#
# Tested on: Ubuntu 20, Debian 12
#
# Usage:
# - Run the script with root privileges.
# - Follow the on-screen prompts to install, configure, or uninstall the tunnel.
#
#
# Disclaimer:
# This script comes with no warranties or guarantees. Use it at your own risk.
import sys
import os
import time
import colorama
from colorama import Fore, Style
import subprocess
from time import sleep
import readline
import netifaces as ni
import shutil
import signal
if os.geteuid() != 0:
print("\033[91mThis script must be run as root. Please use sudo -i.\033[0m")
sys.exit(1)
def display_progress(total, current):
width = 40
percentage = current * 100 // total
completed = width * current // total
remaining = width - completed
print('\r[' + '=' * completed + '>' + ' ' * remaining + '] %d%%' % percentage, end='')
def display_checkmark(message):
print('\u2714 ' + message)
def display_error(message):
print('\u2718 Error: ' + message)
def display_notification(message):
print('\u2728 ' + message)
def display_loading():
frames = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
delay = 0.1
duration = 5
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print('\r[' + frame + '] Loading... ', end='')
time.sleep(delay)
print('\r[' + frame + '] ', end='')
time.sleep(delay)
def display_logo2():
colorama.init()
logo2 = colorama.Style.BRIGHT + colorama.Fore.GREEN + """
_____ _ _
/ ____| (_) | |
| | __ _ _ _ __| | ___
| | |_ | | | | |/ _` |/ _ \\
| |__| | |_| | | (_| | __/
\_____|\__,_|_|\__,_|\___|
""" + colorama.Style.RESET_ALL
print(logo2)
def display_logo():
colorama.init()
logo = """
⠀⠀ \033[1;96m ⠄⠠⠤⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⢀⠠⢀⣢⣈⣉⠁⡆⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⡏⢠⣾⢷⢶⣄⣕⠢⢄⠀⠀⣀⣠⠤⠔⠒⠒⠒⠒⠒⠒⠢⠤⠄⣀⠤⢊⣤⣶⣿⡿⣿⢹⢀⡇⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⢻⠈⣿⢫⡞⠛⡟⣷⣦⡝⠋⠉⣤⣤⣶⣶⣶⣿⣿⣿⡗⢲⣴⠀⠈⠑⣿⡟⡏⠀⢱⣮⡏⢨⠃⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⠸⡅⣹⣿⠀⠀⢩⡽⠋⣠⣤⣿⣿⣏⣛⡻⠿⣿⢟⣹⣴⢿⣹⣿⡟⢦⣀⠙⢷⣤⣼⣾⢁⡾⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀ ⠀⢻⡀⢳⣟⣶⠯⢀⡾⢍⠻⣿⣿⣽⣿⣽⡻⣧⣟⢾⣹⡯⢷⡿⠁⠀⢻⣦⡈⢿⡟⠁⡼⠁⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀ ⠀⢷⠠⢻⠏⢰⣯⡞⡌⣵⠣⠘⡉⢈⠓⡿⠳⣯⠋⠁⠀⠀⢳⡀⣰⣿⣿⣷⡈⢣⡾⠁⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀ ⠀⠀⠙⣎⠀⣿⣿⣷⣾⣷⣼⣵⣆⠂⡐⢀⣴⣌⠀⣀⣤⣾⣿⣿⣿⣿⣿⣿⣷⣀⠣⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀ ⠀⠀ ⠄⠑⢺⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣳⣿⢽⣧⡤⢤⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀ ⠀⠀ ⢸⣈⢹⣟⣿⣿⣿⣿⣿⣻⢹⣿⣻⢿⣿⢿⣽⣳⣯⣿⢷⣿⡷⣟⣯⣻⣽⠧⠾⢤⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀ ⠀ ⢇⠤⢾⣟⡾⣽⣿⣽⣻⡗⢹⡿⢿⣻⠸⢿⢯⡟⡿⡽⣻⣯⣿⣎⢷⣣⡿⢾⢕⣎⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀ ⠀⡠⡞⡟⣻⣮⣍⡛⢿⣽⣻⡀⠁⣟⣣⠿⡠⣿⢏⡞⠧⠽⢵⣳⣿⣺⣿⢿⡋⠙⡀⠇⠱⠀⠀⠀
⠀⠀⠀ ⠀⢰⠠⠁⠀⢻⡿⣛⣽⣿⢟⡁\033[1;91m⣭⣥⣅⠀⠀⠀⠀⠀⠀⣶⣟⣧\033[1;96m⠿⢿⣿⣯⣿⡇⠀⡇⠀⢀⡇⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⠀⢸⠀⠀⡇⢹⣾⣿⣿⣷⡿⢿\033[1;91m⢷⡏⡈⠀⠀⠀⠀⠀⠀⠈⡹⡷⡎\033[1;96m⢸⣿⣿⣿⡇⠀⡇⠀⠸⡇⠀⠀⠀⠀⠀⠀
⠀ ⠀⠀⠀⢸⡄⠂⠖⢸⣿⣿⣿⡏⢃⠘\033[1;91m⡊⠩⠁⠀⠀⠀⠀⠀⠀⠀⠁⠀⠁\033[1;96m⢹⣿⣿⣿⡇⢰⢁⡌⢀⠇⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⠀⠀⢷⡘⠜⣤⣿⣿⣿⣷⡅⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣧⣕⣼⣠⡵⠋⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⠀⠀⣸⣻⣿⣾⣿⣿⣿⣿⣾⡄⠀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠀⠀⣠⣿⣿⣿⣿⣿⣿⣿⢀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀ ⠀⠀⡇⣿⣻⣿⣿⣿⣿⣿⣿⣿⣦⣤⣀⠀⠀⠀⠀⠀⠀⣠⣴⣾⣿⣿⣿⣿⣿⣿⣳⣿⡸⡀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀⠀\033[1;96m⣸⢡⣿⢿⣿⣿⣿⣿⣿⣿⣿⢿⣿⡟⣽⠉⠀⠒⠂⠉⣯⢹⣿⡿⣿⣿⣿⣿⣿⣯⣿⡇⠇ ⡇ \033[1;92mAuthor: github.com/Azumi67 \033[1;96m⡇⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⠀\033[1;96m⢰⡏⣼⡿⣿⣻⣿⣿⣿⣿⣿⢿⣻⡿⠁⠘⡆⠀⠀⠀⢠⠇⠘⣿⣿⣽⣿⣿⣿⣿⣯⣿⣷⣸⠀⠀ ⠀⠀⠀⠀
\033[1;96m ______ \033[1;94m _______ \033[1;92m __ \033[1;93m _______ \033[1;91m __ \033[1;96m _____ ___
\033[1;96m / " \ \033[1;94m| __ "\ \033[1;92m|" \ \033[1;93m /" \ \033[1;91m /""\ \033[1;96m (\" \|" \
\033[1;96m // ____ \ \033[1;94m(. |__) :)\033[1;92m|| | \033[1;93m|: | \033[1;91m / \ \033[1;96m |.\\ \ |
\033[1;96m/ / ) :)\033[1;94m|: ____/ \033[1;92m|: | \033[1;93m|_____/ ) \033[1;91m /' /\ \ \033[1;96m |: \. \\ |
\033[1;96m(: (____/ // \033[1;94m(| / \033[1;92m|. | \033[1;93m // / \033[1;91m // __' \ \033[1;96m |. \ \ |
\033[1;96m\ / \033[1;94m/|__/ \ \033[1;92m/\ |\ \033[1;93m |: __ \ \033[1;91m / / \\ \ \033[1;96m | \ \|
\033[1;96m \"_____ / \033[1;94m(_______) \033[1;92m(__\_|_)\033[1;93m |__| \___) \033[1;91m(___/ \___) \033[1;96m\___|\____\)
"""
print(logo)
def main_menu():
try:
while True:
display_logo()
border = "\033[93m+" + "="*70 + "+\033[0m"
content = "\033[93m║ ▌║█║▌│║▌│║▌║▌█║ \033[92mMain Menu\033[93m ▌│║▌║▌│║║▌█║▌ ║"
footer = " \033[92m Join Opiran Telegram \033[34m@https://t.me/OPIranClub\033[0m "
border_length = len(border) - 2
centered_content = content.center(border_length)
print(border)
print(centered_content)
print(border)
print(border)
print(footer)
print(border)
print("0. \033[91mSTATUS Menu\033[0m")
print("1. \033[92mInstallation\033[0m")
print("2. \033[93mFRP TCP Tunnel\033[0m")
print("3. \033[96mLoadBalancer \033[93m[1]\033[36m Kharej \033[93m[1]\033[36m IRAN\033[0m")
print("4. \033[93mLoadBalancer \033[92m[5]\033[93m Kharej \033[92m[1]\033[93m IRAN\033[0m")
print("5. \033[92mLoadBalancer \033[96m[1]\033[92m Kharej \033[96m[3]\033[92m IRAN\033[0m")
print("6. \033[96mStop | Restart Service \033[0m")
print("7. \033[91mUninstall\033[0m")
print("0. Exit")
print("\033[93m╰─────────────────────────────────────────────────────────────────────╯\033[0m")
choice = input("\033[5mEnter your choice Please: \033[0m")
print("choice:", choice)
if choice == '0':
status_menu()
elif choice == '1':
install_menu()
elif choice == '2':
tcp_menu()
elif choice == '3':
single_load_menu()
elif choice == '4':
i3kharej_1iran_load()
elif choice == '5':
i1kharej_3iran()
elif choice == '6':
start_menu()
elif choice == '7':
remove_menu()
elif choice == '0':
print("Exiting...")
break
else:
print("Invalid choice.")
input("Press Enter to continue...")
except KeyboardInterrupt:
display_error("\033[91m\nProgram interrupted. Exiting...\033[0m")
sys.exit()
def start_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mService Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mTCP Tunnel SERVICE \033[0m')
print('2. \033[93mLoadBalance Single Server SERVICE \033[0m')
print('3. \033[96mLoadBalance [5] Kharej [1] IRAN SERVICE \033[0m')
print('4. \033[97mLoadBalance [1] Kharej [3] IRAN SERVICE \033[0m')
print('5. \033[94mBack to the main menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
start_tcp_tunnel()
break
elif server_type == '2':
start_single_load()
break
elif server_type == '3':
start_kharej5()
break
elif server_type == '4':
start_kharej1()
break
elif server_type == '5':
os.system("clear")
main_menu()
break
else:
print('Invalid choice.')
def start_kharej1():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mLoadBalance [1] Kharej [3] IRAN SERVICE \033[0m')
print('\033[92m "-"\033[93m════════════════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mRestart SERVICE \033[0m')
print('2. \033[93mStop SERVICE \033[0m')
print('5. \033[94mBack to the previous menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
restart_kharej1()
break
elif server_type == '2':
stop_kharej1()
break
elif server_type == '3':
os.system("clear")
start_menu()
break
else:
print('Invalid choice.')
def restart_kharej1():
os.system("clear")
display_notification("\033[93mRestarting LoadBalance [1] Kharej [3] IRAN...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl restart azumifrps3.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc13.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc12.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc11.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def start_kharej5():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mLoadBalance [5] Kharej [1] IRAN SERVICE\033[0m')
print('\033[92m "-"\033[93m════════════════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mRestart SERVICE \033[0m')
print('2. \033[93mStop SERVICE \033[0m')
print('5. \033[94mBack to the previous menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
restart_kharej5()
break
elif server_type == '2':
stop_kharej5()
break
elif server_type == '5':
os.system("clear")
start_menu()
break
else:
print('Invalid choice.')
def restart_kharej5():
os.system("clear")
display_notification("\033[93mRestarting LoadBalance [5] Kharej [1] IRAN...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl restart azumifrpc3.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc4.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc5.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc6.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc7.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrps3.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def stop_kharej5():
os.system("clear")
display_notification("\033[93mStopping LoadBalance [5] Kharej [1] IRAN...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl stop azumifrpc3.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc4.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc5.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc6.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc7.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrps3.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mStop completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def start_single_load():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mLoadbalance Single Server Service\033[0m')
print('\033[92m "-"\033[93m════════════════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mRestart SERVICE \033[0m')
print('2. \033[93mStop SERVICE \033[0m')
print('5. \033[94mBack to the previous menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
restart_single_load()
break
elif server_type == '2':
stop_single_load()
break
elif server_type == '5':
os.system("clear")
start_menu()
break
else:
print('Invalid choice.')
def restart_single_load():
os.system("clear")
display_notification("\033[93mRestarting LoadBalance Single Server...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl restart azumifrps2.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc2.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mRestart completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def stop_single_load():
os.system("clear")
display_notification("\033[93mStopping LoadBalance Single Server...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl stop azumifrps2.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc2.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mStop completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def start_tcp_tunnel():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mTCP Tunnel Service\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mRestart SERVICE \033[0m')
print('2. \033[93mStop SERVICE \033[0m')
print('5. \033[94mBack to the previous menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
restart_tcp_tunnel()
break
elif server_type == '2':
stop_tcp_tunnel()
break
elif server_type == '5':
os.system("clear")
start_menu()
break
else:
print('Invalid choice.')
def restart_tcp_tunnel():
os.system("clear")
display_notification("\033[93mRestarting TCP Tunnel Service...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl restart azumifrps1.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl restart azumifrpc1.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mRestart completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def stop_tcp_tunnel():
os.system("clear")
display_notification("\033[93mStopping TCP Tunnel Service...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
try:
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("systemctl stop azumifrps1.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl stop azumifrpc1.service > /dev/null 2>&1", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mStop completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def remove_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mUninstall Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mTCP Tunnel \033[0m')
print('2. \033[93mLoadBalance Single Server \033[0m')
print('3. \033[96mLoadBalance [5] Kharej [1] IRAN \033[0m')
print('4. \033[97mLoadBalance [1] Kharej [3] IRAN \033[0m')
print('5. \033[94mBack to the main menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
remove_tcp_tunnel()
break
elif server_type == '2':
remove_single_load()
break
elif server_type == '3':
remove_kharej5()
break
elif server_type == '4':
remove_kharej1()
break
elif server_type == '5':
os.system("clear")
main_menu()
break
else:
print('Invalid choice.')
def remove_tcp_tunnel():
os.system("clear")
display_notification("\033[93mRemoving TCP Tunnel...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
try:
if subprocess.call("test -f /root/frp/frpc.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc.toml", shell=True)
if subprocess.call("test -f /root/frp/frps.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frps.toml", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrps1.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrps1.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrps1.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc1.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc1.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc1.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl daemon-reload", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def remove_single_load():
os.system("clear")
display_notification("\033[93mRemoving LoadBalance Single Server...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
if subprocess.call("test -f /root/frp/frpc.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc.toml", shell=True)
if subprocess.call("test -f /root/frp/frps.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frps.toml", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrps2.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrps2.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrps2.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc2.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc2.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc2.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl daemon-reload", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def remove_kharej5():
os.system("clear")
display_notification("\033[93mRemoving LoadBalance [5] Kharej [1] IRAN...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
if subprocess.call("test -f /root/frp/frpc.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc.toml", shell=True)
if subprocess.call("test -f /root/frp/frps.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frps.toml", shell=True)
subprocess.run("systemctl disable azumifrpc3.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc3.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc3.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc4.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc4.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc4.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc5.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc5.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc5.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc6.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc6.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc6.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc7.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc7.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc7.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrps3.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrps3.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrps3.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl daemon-reload", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def remove_kharej1():
os.system("clear")
display_notification("\033[93mRemoving LoadBalance [1] Kharej [3] IRAN...\033[0m")
print("\033[93m╭─────────────────────────────────────────────╮\033[0m")
try:
if subprocess.call("test -f /root/frp/frpc1.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc1.toml", shell=True)
if subprocess.call("test -f /root/frp/frpc2.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc2.toml", shell=True)
if subprocess.call("test -f /root/frp/frpc3.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frpc3.toml", shell=True)
if subprocess.call("test -f /root/frp/frps.toml", shell=True) == 0:
subprocess.run("rm /root/frp/frps.toml", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrps3.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrps3.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrps3.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc13.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc13.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc13.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc12.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc12.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc12.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl disable azumifrpc11.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop azumifrpc11.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/azumifrpc11.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl daemon-reload", shell=True)
print("Progress: ", end="")
frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]
delay = 0.1
duration = 3
end_time = time.time() + duration
while time.time() < end_time:
for frame in frames:
print("\r[%s] Loading... " % frame, end="")
time.sleep(delay)
print("\r[%s] " % frame, end="")
time.sleep(delay)
display_checkmark("\033[92mUninstall completed!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
def display_status(service_name):
status_output = os.popen(f"systemctl is-active {service_name}").read().strip()
if status_output == "active":
status = "\033[92m\u2713 Active~\033[0m"
else:
status = "\033[91m\u2718Inactive\033[0m"
print("\033[92m╔════════════════════════════════════╗\033[0m")
print("\033[92m║ FRP Status ║\033[0m")
print("\033[92m╠════════════════════════════════════╣\033[0m")
print("\033[92m║\033[0m Service: | ", status, " \033[92m ║\033[0m")
print("\033[92m╚════════════════════════════════════╝\033[0m")
def status_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mStatus Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mTCP Tunnel \033[91mSTATUS\033[0m')
print('2. \033[93mLoadBalance Single Server \033[91mSTATUS \033[0m')
print('3. \033[96mLoadBalance [5] Kharej [1] IRAN \033[91mSTATUS \033[0m')
print('4. \033[97mLoadBalance [1] Kharej [3] IRAN \033[91mSTATUS \033[0m')
print('5. \033[94mBack to the main menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
status1_menu()
break
elif server_type == '2':
status2_menu()
break
elif server_type == '3':
status3_menu()
break
elif server_type == '4':
status4_menu()
break
elif server_type == '5':
os.system('clear')
main_menu()
break
else:
print('Invalid choice.')
def status1_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mStatus Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mTCP tunnel - \033[92mKharej\033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrpc1.service"
display_status(service_name)
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mTCP tunnel - \033[92mIRAN\033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrps1.service"
display_status(service_name)
def status2_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mStatus Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance Single Server - \033[92mKharej\033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrpc2.service"
display_status(service_name)
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance Single Server - \033[92mIRAN\033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrps2.service"
display_status(service_name)
def status3_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mStatus Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance STATUS \033[96mkharej\033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
services = [
"azumifrpc3.service",
"azumifrpc4.service",
"azumifrpc5.service",
"azumifrpc6.service",
"azumifrpc7.service"
]
for i, service_name in enumerate(services, start=1):
print(f"\033[92mKharej \033[91m[{i}]\033[0m :")
display_status(service_name)
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance STATUS \033[96mIRAN \033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrps3.service"
print(" \033[93m IRAN \033[92m[1]\033[0m :")
display_status(service_name)
def status4_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mLoadbalance STATUS Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance \033[96mKharej \033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
services = [
"azumifrpc11.service",
"azumifrpc12.service",
"azumifrpc13.service"
]
for i, service_name in enumerate(services, start=1):
print(f"\033[92mIRAN Server \033[91m[{i}]\033[0m:")
display_status(service_name)
print("\033[93m───────────────────────────────────────\033[0m")
display_notification("\033[93mLoadBalance \033[96mIRAN \033[0m")
print("\033[93m───────────────────────────────────────\033[0m")
service_name = "azumifrps4.service"
print(" \033[93m IRAN :\033[0m ")
display_status(service_name)
def frp_menu():
def stop_loading():
display_error("\033[91mInstallation process interrupted.\033[0m")
exit(1)
subprocess.call('sysctl -w net.ipv4.ip_forward=1 &>/dev/null', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.call('sysctl -w net.ipv6.conf.all.forwarding=1 &>/dev/null', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
with open('/etc/resolv.conf', 'w') as resolv_file:
resolv_file.write("nameserver 8.8.8.8\n")
arch = subprocess.check_output('uname -m', shell=True).decode().strip()
if arch in ['x86_64', 'amd64']:
frp_download_url = "https://github.com/fatedier/frp/releases/download/v0.52.3/frp_0.52.3_linux_amd64.tar.gz"
frp_directory_name = "frp_0.52.3_linux_amd64"
elif arch in ['aarch64', 'arm64']:
frp_download_url = "https://github.com/fatedier/frp/releases/download/v0.52.3/frp_0.52.3_linux_arm64.tar.gz"
frp_directory_name = "frp_0.52.3_linux_arm64"
else:
display_error(f"Unsupported CPU architecture: {arch}")
return
display_notification("\033[93mDownloading FRP...\033[0m")
try:
subprocess.run(['wget', '-O', '/root/frp.tar.gz', frp_download_url], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
display_checkmark("\033[92mFRP downloaded successfully!\033[0m")
except subprocess.CalledProcessError as e:
display_error(f"An error occurred while downloading FRP: {str(e)}")
return
try:
subprocess.run(['tar', '-xf', '/root/frp.tar.gz', '-C', '/root'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(['rm', '/root/frp.tar.gz'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
except Exception as e:
display_error(f"An error occurred while extracting the FRP archive: {str(e)}")
return
old_dir_path = f'/root/{frp_directory_name}'
new_dir_path = '/root/frp'
try:
if os.path.exists(new_dir_path):
shutil.rmtree(new_dir_path)
os.rename(old_dir_path, new_dir_path)
display_checkmark("\033[92mFRP downloaded and installed successfully!\033[0m")
except Exception as e:
display_error(f"An error occurred while moving frp: {str(e)}")
return
subprocess.call('sysctl -p &>/dev/null', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
display_checkmark("\033[92mIP forward enabled!\033[0m")
display_loading()
def install_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mInstall Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
display_notification("\033[93mInstalling FRP...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
frp_menu()
def tcp_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mTCP Tunnel Menu\033[0m')
print('\033[92m "-"\033[93m══════════════════════════\033[0m')
print("\033[93m╭───────────────────────────────────────╮\033[0m")
print('\033[93mChoose what to do:\033[0m')
print('1. \033[92mKharej\033[0m')
print('2. \033[93mIRAN \033[0m')
print('3. \033[94mBack to the main menu\033[0m')
print("\033[93m╰───────────────────────────────────────╯\033[0m")
while True:
server_type = input('\033[38;5;205mEnter your choice Please: \033[0m')
if server_type == '1':
kharej_tcp_menu()
break
elif server_type == '2':
iran_tcp_menu()
break
elif server_type == '3':
os.system('clear')
main_menu()
break
else: