-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathhaproxy.py
1135 lines (908 loc) · 55.6 KB
/
haproxy.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
#
# Haproxy loadbalance Tunnel Configuration Script
# Author: github.com/Azumi67
#
# This script is designed to simplify the installation and configuration of Haprxy.
#
# Supported operating systems: 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
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_status():
status_output = os.popen("systemctl is-active haproxy").read().strip()
if status_output == "active":
status = "\033[92m\u2713 Active\033[0m"
else:
status = "\033[91m\u2718 Inactive\033[0m"
print("\033[93m ╔════════════════════════════════════╗\033[0m")
print("\033[93m ║ Haproxy Status ║\033[0m")
print("\033[93m ╠════════════════════════════════════╣\033[0m")
print(" \033[93m \033[0m Service: | ", status, "\033[93m \033[0m")
print(" \033[93m ╚════════════════════════════════════╝\033[0m")
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;93m⠀⠀⢀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠀⡀⠤⠒⠊⠉⠀⠀⠀⠀⠈⠁⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀\033[1;93m⠀⢀⠔⠉⠀⠀⠀⠀⢀⡠⠤⠐⠒⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠀⣀⡠⠤⠤⠀⠀⠂⠐\033[1;96m⠀⠠⢤⠎⢑⡭⣽⣳⠶⣖⡶⣤⣖⣬⡽⡭⣥⣄\033[1;93m⠒⠒⠀⠐⠁⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⢀⠴⠊⠁⠀⠀⠀⠀⡀⠀\033[1;96m⣠⣴⡶⣿⢏⡿⣝⡳⢧⡻⣟⡻⣞⠿⣾⡽⣳⣯⣳⣞⡻⣦⡀⠀⠀\033[1;93m⠀⠈⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⢨⠀⠀⠀⢀⠤⠂⠁\033[1;96m⢠⣾⡟⣧⠿⣝⣮⣽⢺⣝⣳⡽⣎⢷⣫⡟⡵⡿⣵⢫⡷⣾⢷⣭⢻⣦⡄\033[1;93m⠤⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠘⡄⠀⠀⠓⠂⠀\033[1;96m⣴⣿⢷⡿⣝⣻⣏⡷⣾⣟⡼⣣⢟⣼⣣⢟⣯⢗⣻⣽⣏⡾⡽⣟⣧⠿⡼⣿⣦\033[1;93m⣃⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⢀⠇⠀⠀⠀⠀\033[1;96m⣼⣿⢿⣼⡻⣼⡟⣼⣧⢿⣿⣸⡧⠿⠃⢿⣜⣻⢿⣤⣛⣿⢧⣻⢻⢿⡿⢧⣛⣿⣧⠀\033[1;93m⠛⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⢸⠁⠀⠀⠀⠀\033[1;96m⣼⣻⡿⣾⣳⡽⣾⣽⡷⣻⣞⢿⣫⠕⣫⣫⣸⢮⣝⡇⠱⣏⣾⣻⡽⣻⣮⣿⣻⡜⣞⡿⣷\033[1;93m⢀⠀⠀⠑⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠘⣧⠀⠀⠀\033[1;96m⣼⣳⢯⣿⣗⣿⣏⣿⠆⣟⣿⣵⢛⣵⡿⣿⣏⣟⡾⣜⣻⠀⢻⡖⣷⢳⣏⡶⣻⡧⣟⡼⣻⡽⣇\033[1;93m⠁⠢⡀⠠⡀⠑⡄⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠈⢦⠀\033[1;96m⣰⣯⣟⢯⣿⢾⣹⢾⡟⠰⣏⡾⣾⣟⡷⣿⣻⣽⣷⡶⣟⠿⡆⠀⢻⣝⣯⢷⣹⢧⣿⢧⡻⣽⣳⢽⡀\033[1;93m⠀⠈⠀⠈⠂⡼⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠀⡀⢵\033[1;96m⣟⣾⡟⣾⣿⣻⢽⣺⠇⠀⣿⡱⢿⡞⣵⡳⣭⣿⡜⣿⣭⣻⣷⠲⠤⢿⣾⢯⢯⣛⢿⣳⡝⣾⣿⢭⡇⠀\033[1;93m⠀⠀⠀⡰⠁⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⢀⠤⠊⠀\033[1;96m⣼⢻⣿⢞⣯⢿⡽⣸⣹⡆⠀⢷⣏⢯⣿⣧⣛⠶⣯⢿⣽⣷⣧⣛⣦⠀⠀⠙⢿⣳⣽⣿⣣⢟⡶⣿⣫⡇⠀⠀\033[1;93m⠀⠰⠁⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⣠⠖⠁⠀⠀⡄\033[1;96m⡿⣯⣷⣻⡽⣞⡟⣿⣿⣟⠉⠈⢯⣗⣻⣕⢯⣛⡞⣯⢮⣷⣭⡚⠓⠋⠀⠀⠀⠈⠉⣿⡽⣎⠷⡏⡷⣷⠀⠀⠀\033[1;93m⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠐⣇⠀⠀⢀⠊\033[1;96m⣼⣇⣿⡗⣿⣽⣷⡿⣿⣱⡿⣆⠀⠀⠙⠒⠛⠓⠋⠉⠉⠀⠀⠀\033[1;91m⢠⣴⣯⣶⣶⣤⡀\033[1;96m ⠀⣿⣟⡼⣛⡇⣟⣿⡆\033[1;93m⡀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠘⢤⠀⠃⠌\033[1;96m⣸⣿⢾⡽⣹⣾⠹⣞⡵⣳⣽⡽⣖⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\033[1;91m⣤⣖⣻⣾⣝⢿⡄\033[1;96m ⢸⣯⢳⣏⡿⣏⣾⢧\033[1;93m⠈⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠘⠀⠈⠀\033[1;96m⡿⣿⣻⡽⣽⣿⢧⠌⠉\033[1;91m⠉⣴⣿⣿⣫⣅⡀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣛⠿⠿⢟⢙⡄⠙\033[1;96m ⠘⣯⢳⣞⡟⣯⢾⣻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⡇⠀⠀⠀\033[1;96m⡿⣿⣿⢵⣫⣿⣆⠁⠂\033[1;91m⣼⡿⢹⣿⡿⠽⠟⢢⠀⠀⠀⠀⠀⠀⠀⢹⠀⢄⢀⠀⡿⠀⠀\033[1;96m ⢰⣯⢷⣺⣏⣯⢻⡽⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⡇⠀⢀⠠\033[1;96m⣿⣿⢾⣛⡶⣽⠈⢓⠀\033[1;91m⢻⠁⢸⠇⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠑⠠⠤⠔⠂⠀⠀\033[1;96m ⢸⣿⢮⣽⠿⣜⣻⡝⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀\033[1;93m⠀⠑⠊⠁\033[1;96m⢠⡷⡇⣿⣿⢼⣹⡀⠀⠑⢄⠀\033[1;91m⠀⠃⠌⣁⠦⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠂⠀⠀\033[1;96m⢀⣿⢾⡝⣾⡽⣺⢽⣹⣽⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣻⢽⣻⡟⣮⣝⡷⢦⣄⣄⣢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣯⢿⡺⣟⢷⡹⢾⣷⡞⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣟⡿⣎⢿⡽⣳⢮⣿⣹⣾⣯⡝⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⣀⣴⡟⣿⢧⣏⢷⡟⣮⠝⢿⣹⣯⡽⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣯⡷⣏⣾⡳⣽⢺⣷⡹⣟⢶⡹⣾⡽⣷⣤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠔⣾⢯⣷⡇⣿⢳⣎⢿⡞⣽⢦⣼⡽⣧⢻⡽⣆⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣟⢾⡷⣭⣿⢳⣭⢻⣷⡻⣜⣻⡵⣻⡼⣿⠾⠫\033[1;96m⣽⣟⣶⣶⣶⠒⠒⠂⠉⠀\033[1;96m⢸⣽⢺⡷⣷⣯⢗⣮⣟⢾⢧⣻⠼⡿⣿⢣⡟⣼⣆⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⣝⣾⢳⢧⣟⡳⣎⣿⣿⣱⢏⣾⣽⣳⠟\033[1;92m⠁⠀⡌⠈\033[1;96m⢹⡯⠟⠛⠀⠀⠀⠀⠀⠈\033[1;96m⣷⢻⣼⣽⣿⡾⣼⣏⣾⣻⡜⣯⣷⢿⣟⣼⡳⣞⣦⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⢿⡸⣎⠿⣾⡏⣷⣉⣷⣿⢹⣎⡿\033[1;92m⠎⡎⠀⠀⠀⡇⠀⣾⠱⡀⠀⠀⠀⠀⠀⠀⠀⠈⣹⠉⡏⠀\033[1;96m⠹⣾⣏⢹⣶⢹⣶⢿⡾⣿⢶⣿⣸⠾⣇⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⣠⣾⢫⣞⡽⣯⢿⣹⡟⣶⣹⢷⣻\033[1;92m⡷⠊⠀⡜⠀⠀⠀⠀⢱⠀⣿⡀⠈⠢⢀⣀⣀⠠⠄⠒⢈⡏⡰⠀⠀⠀\033[1;96m⠀⣿⡜⣮⢟⡼⣻⡵⣻⣗⠾⣟⣯⢻⣆⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢀⣴⣿⢣⣟⡾⣽⣯⢳⣿⡹⣖⣿⡳\033[1;92m⠋⠀⠀⡸⠀⠀⠀⠀⠀⢸⠀⢺⢂⠀⠀⠀⠀⠀⠀⠀⢠⡺⡱⠁⠀⠀⠀⠀\033[1;96m⢹⣧⣻⢮⡳⣝⡷⢧⣻⢯⢿⣻⣳⢞⡆⠀⠀⠀
⠀⠀⠀⠀⢀⡾⣽⣣⡿⣼⣏⡿⣼⣳⡯⢷⣹⣯⠇\033[1;92m⠀⠀⢠⠁⠀⠀⠀⠀⠀⠈⡆⠈⢹⡰⠤⡀⠀⠀⠀⢠⡼⢱⠁⠀⠀⠀⠀⠀⠀\033[1;96m⠹⣿⣿⣱⣻⣼⣏⢷⣯⣿⡳⣿⣎⢿⡀⠀⠀
⠀⠀⠀⠀⣾⣽⠷⣿⣵⡿⣼⡟⣭⣷⡟⣿⢯⡏⠀\033[1;92m⠀⠀⠘⠀⠀⠒⠈⢡⠀⠀⢗⢄⠀⠃⠀⠺⢁⢈⠥⠋⣀⠇⠀⠀⠀⠀⠀⠀⡀⠀\033[1;96m⠈⠙⢿⣳⢞⣽⢯⣞⣾⣯⡝⣿⡾⡇⠀⠀\033[1;92mAuthor: github.com/Azumi67 \033[1;96m ⠀⠀
\033[96m ______ \033[1;94m _______ \033[1;92m __ \033[1;93m _______ \033[1;91m __ \033[1;96m _____ ___
\033[96m / " \ \033[1;94m| __ "\ \033[1;92m|" \ \033[1;93m /" \ \033[1;91m /""\ \033[1;96m (\" \|" \
\033[96m // ____ \ \033[1;94m(. |__) :)\033[1;92m|| | \033[1;93m|: | \033[1;91m / \ \033[1;96m |.\\ \ |
\033[96m/ / ) :)\033[1;94m|: ____/ \033[1;92m|: | \033[1;93m|_____/ ) \033[1;91m /' /\ \ \033[1;96m |: \. \\ |
\033[96m(: (____/ // \033[1;94m(| / \033[1;92m|. | \033[1;93m // / \033[1;91m // __' \ \033[1;96m |. \ \ |
\033[96m\ / \033[1;94m/|__/ \ \033[1;92m/\ |\ \033[1;93m |: __ \ \033[1;91m / / \\ \ \033[1;96m | \ \|
\033[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)
display_status()
print(border)
print(footer)
print(border)
print("1. \033[92mPrivate | Native IP\033[0m")
print("2. \033[93mHaproxy Simple tunnel | \033[92m IPV4 Tunnel \033[93m| \033[96mRun on IRAN\033[0m")
print("3. \033[96mHaproxy Simple tunnel | \033[92m IPV6 Tunnel \033[93m| \033[96mRun on IRAN\033[0m")
print("4. \033[93mHaproxy loadbalance | \033[92m IPV6 Tunnel \033[93m| \033[96mRun on IRAN\033[0m")
print("6. \033[97mHaproxy Loadbalance \033[93m| \033[92mNo Tunnel \033[93m| \033[96mRun on Kharej\033[0m")
print("7. \033[93mStop | Start | Restart Service\033[0m")
print("8. \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 == '1':
private_ip()
elif choice == '2':
haproxy2_menu()
elif choice == '3':
haproxy3_menu()
elif choice == '4':
haproxy_menu()
elif choice == '5':
haproxy_kharej()
elif choice == '6':
restart_service()
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 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[92mUninstall Haproxy\033[0m')
print('2. \033[93mUninstall Priavte IP\033[0m')
print('3. \033[92mUninstall Native IP\033[0m')
print('4. \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_haproxy()
break
elif server_type == '2':
remove_private()
break
elif server_type == '3':
extra_uninstall()
break
elif server_type == '4':
clear()
main_menu()
break
else:
print('Invalid choice.')
def remove_private():
os.system("clear")
display_notification("\033[93mRemoving private IP addresses...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
try:
if subprocess.call("test -f /etc/private.sh", shell=True) == 0:
subprocess.run("rm /etc/private.sh", shell=True)
display_notification("\033[93mRemoving cronjob...\033[0m")
subprocess.run("crontab -l | grep -v \"@reboot /bin/bash /etc/private.sh\" | crontab -", shell=True)
subprocess.run("sudo rm /etc/ping_v6.sh", shell=True)
time.sleep(1)
subprocess.run("systemctl disable ping_v6.service > /dev/null 2>&1", shell=True)
subprocess.run("systemctl stop ping_v6.service > /dev/null 2>&1", shell=True)
subprocess.run("rm /etc/systemd/system/ping_v6.service > /dev/null 2>&1", shell=True)
time.sleep(1)
subprocess.run("systemctl daemon-reload", shell=True)
subprocess.run("ip link set dev azumi down > /dev/null", shell=True)
subprocess.run("ip tunnel del azumi > /dev/null", 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 extra_uninstall():
os.system("clear")
display_notification("\033[93mRemoving Extra IP addresses...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
try:
interface = subprocess.check_output("ip route | awk '/default/ {print $5; exit}'", shell=True).decode().strip()
addresses = subprocess.check_output(f"ip addr show dev {interface} | awk '/inet6 .* global/ {{print $2}}'", shell=True).decode().splitlines()
for address in addresses:
subprocess.run(f"ip addr del {address} dev {interface}", shell=True)
display_notification("\033[93mRemoving cronjob...\033[0m")
subprocess.run("crontab -l | grep -v \"@reboot /bin/bash /etc/ipv6.sh\" | crontab -", shell=True)
time.sleep(1)
subprocess.run("sudo systemctl stop ipv6.service", shell=True)
subprocess.run("sudo systemctl disable ipv6.service", shell=True)
subprocess.run("sudo rm /etc/systemd/system/ipv6.service", shell=True)
subprocess.run("sudo systemctl daemon-reload", shell=True)
time.sleep(1)
subprocess.run("sudo rm /etc/ipv6.sh", shell=True)
display_notification("\033[93mRemoving Extra ip, Working in the background..\033[0m")
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[92mExtra IP addresses removed successfully!\033[0m")
except subprocess.CalledProcessError as e:
print("Error:", e.output.decode().strip())
#for later usage ## lets fix this too
def frp_menu():
def stop_loading():
display_error("Installation process interrupted.")
exit(1)
ipv4_forward_status = subprocess.run(["sysctl", "net.ipv4.ip_forward"], capture_output=True, text=True)
if "net.ipv4.ip_forward = 0" not in ipv4_forward_status.stdout:
subprocess.run(["sudo", "sysctl", "-w", "net.ipv4.ip_forward=1"])
ipv6_forward_status = subprocess.run(["sysctl", "net.ipv6.conf.all.forwarding"], capture_output=True, text=True)
if "net.ipv6.conf.all.forwarding = 0" not in ipv6_forward_status.stdout:
subprocess.run(["sudo", "sysctl", "-w", "net.ipv6.conf.all.forwarding=1"])
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"
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"
else:
display_error(f"Unsupported CPU architecture: {arch}")
return
display_notification("\033[93mDownloading FRP in a sec...\033[0m")
display_notification("\033[93mPlease wait, updating...\033[0m")
subprocess.Popen('apt update &>/dev/null &', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
seconds = 0
apt_update_pid = subprocess.check_output('echo $!', shell=True).decode().strip()
while apt_update_pid:
clear()
display_notification("\033[93mPlease wait, updating...\033[0m")
print(f"Azumi is working in the background, timer: {seconds} seconds")
seconds += 1
subprocess.call('sleep 1', shell=True)
try:
subprocess.check_output(f'ps -p {apt_update_pid} -o pid=', shell=True)
except subprocess.CalledProcessError:
apt_update_pid = None
for i in range(11):
subprocess.call('sleep 0.5', shell=True)
display_progress(10, i)
display_checkmark("\033[92mUpdate completed successfully!\033[0m")
subprocess.run(['wget', frp_download_url, '-O', 'frp.tar.gz'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(['tar', '-xf', 'frp.tar.gz'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
display_checkmark("\033[92mFRP downloaded and installed successfully!\033[0m")
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 restart_service():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mRestart 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[92mStart | Restart Service\033[0m')
print('2. \033[91mStop Service\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':
restart_menu()
break
elif server_type == '2':
stop_menu()
break
elif server_type == '3':
clear()
main_menu()
break
else:
print('Invalid choice.')
def restart_menu():
os.system("clear")
display_notification("\033[93mRestarting Haproxy...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
display_loading()
os.system("sudo systemctl restart haproxy")
display_checkmark("\033[92mHaproxy restarted successfully!\033[0m")
def stop_menu():
os.system("clear")
display_notification("\033[93mStopping Haproxy...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
display_loading()
os.system("sudo systemctl stop haproxy")
display_checkmark("\033[92mHaproxy Stopped successfully!\033[0m")
def remove_haproxy():
os.system("clear")
display_notification("\033[93mRemoving HAProxy...\033[0m")
print("\033[93m╭───────────────────────────────────────╮\033[0m")
display_loading()
subprocess.run(["systemctl", "stop", "haproxy"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(["systemctl", "disable", "haproxy"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(["rm", "/etc/haproxy/haproxy.cfg"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(["apt-get", "remove", "--purge", "haproxy", "-y"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
display_checkmark("\033[92mHAProxy removed successfully!\033[0m")
## later usage
def private_ip():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mPrivate | Native IP 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[96mExtra Native IP [ Kharej]\033[0m')
print('2. \033[92mKharej[Private IP]\033[0m')
print('3. \033[93mIRAN [Private IP]\033[0m')
print('4. \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 == '2':
kharej_private_menu()
break
elif server_type == '3':
iran_private_menu()
break
elif server_type == '1':
Native_menu()
break
elif server_type == '4':
clear()
main_menu()
break
else:
print('Invalid choice.')
def add_cron_job():
try:
subprocess.run(
"echo '@reboot /bin/bash /etc/private.sh' | crontab -",
shell=True,
capture_output=True,
text=True
)
display_checkmark("\033[92mCronjob added successfully!\033[0m")
except subprocess.CalledProcessError as e:
print("\033[91mFailed to add cronjob:\033[0m", e)
def run_ping():
try:
subprocess.run(["ping", "-c", "2", "fd1d:fc98:b73e:b481::2"], check=True, stdout=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
print(Fore.LIGHTRED_EX + "Pinging failed:", e, Style.RESET_ALL)
def run_ping_iran():
try:
subprocess.run(["ping", "-c", "2", "fd1d:fc98:b73e:b481::1"], check=True, stdout=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
print(Fore.LIGHTRED_EX + "Pinging failed:", e, Style.RESET_ALL)
def ping_v6_service():
service_content = '''[Unit]
Description=keepalive
After=network.target
[Service]
ExecStart=/bin/bash /etc/ping_v6.sh
Restart=always
[Install]
WantedBy=multi-user.target
'''
service_file_path = '/etc/systemd/system/ping_v6.service'
with open(service_file_path, 'w') as service_file:
service_file.write(service_content)
subprocess.run(['systemctl', 'daemon-reload'])
subprocess.run(['systemctl', 'enable', 'ping_v6.service'])
subprocess.run(['systemctl', 'start', 'ping_v6.service'])
def display_kharej_ip(num_ips):
print("\033[93mCreated Private IP Addresses (Kharej):\033[0m")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::1"
print("\033[92m" + "+---------------------------+" + "\033[0m")
print("\033[92m" + f"| {ip_addr} |" + "\033[0m")
print("\033[92m" + "+---------------------------+" + "\033[0m")
def display_iran_ip(num_ips):
print("\033[93mCreated Private IP Addresses (Iran):\033[0m")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::2"
print("\033[92m" + "+---------------------------+" + "\033[0m")
print("\033[92m" + f"| {ip_addr} |" + "\033[0m")
print("\033[92m" + "+---------------------------+" + "\033[0m")
def kharej_private_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mConfiguring Kharej server\033[0m')
print('\033[92m "-"\033[93m═══════════════════════════\033[0m')
display_logo2()
print("\033[93m╭────────────────────────────────────────────────────────────────────────────────────╮")
print("\033[92m Please make sure to remove any private IPs that you have created before proceeding")
print("\033[93m╰────────────────────────────────────────────────────────────────────────────────────╯\033[0m")
display_notification("\033[93mAdding private IP addresses for Kharej server...\033[0m")
if os.path.isfile("/etc/private.sh"):
os.remove("/etc/private.sh")
print("\033[93m╭─────────────────────────────────────────────────────────╮\033[0m")
local_ip = input("\033[93mEnter Kharej IPV4 address: \033[0m")
remote_ip = input("\033[93mEnter IRAN IPV4 address: \033[0m")
subprocess.run(["ip", "tunnel", "add", "azumi", "mode", "sit", "remote", remote_ip, "local", local_ip, "ttl", "255"], stdout=subprocess.DEVNULL)
subprocess.run(["ip", "link", "set", "dev", "azumi", "up"], stdout=subprocess.DEVNULL)
initial_ip = "fd1d:fc98:b73e:b481::1/64"
subprocess.run(["ip", "addr", "add", initial_ip, "dev", "azumi"], stdout=subprocess.DEVNULL)
num_ips = int(input("\033[93mHow many additional private IPs do you need? \033[0m"))
print("\033[93m╰─────────────────────────────────────────────────────────╯\033[0m")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::1/64"
result = subprocess.run(["ip", "addr", "show", "dev", "azumi"], capture_output=True, text=True)
if ip_addr in result.stdout:
print(f"IP address {ip_addr} already exists. Skipping...")
else:
subprocess.run(["ip", "addr", "add", ip_addr, "dev", "azumi"], stdout=subprocess.DEVNULL)
display_notification("\033[93mAdding commands to private.sh...\033[0m")
with open("/etc/private.sh", "w") as f:
f.write(f"ip tunnel add azumi mode sit remote {remote_ip} local {local_ip} ttl 255\n")
f.write("ip link set dev azumi up\n")
f.write("ip addr add fd1d:fc98:b73e:b481::1/64 dev azumi\n")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::1/64"
f.write(f"ip addr add {ip_addr} dev azumi\n")
display_checkmark("\033[92mPrivate ip added successfully!\033[0m")
add_cron_job()
time.sleep(1)
display_checkmark("\033[92mkeepalive service Configured!\033[0m")
run_ping()
time.sleep(1)
display_kharej_ip(num_ips)
time.sleep(1)
script_content1 = '''#!/bin/bash
# IPv6 address
ip_address="fd1d:fc98:b73e:b481::2"
# maximum number
max_pings=4
# Interval
interval=60
# Loop run
while true
do
# Loop for pinging specified number of times
for ((i = 1; i <= max_pings; i++))
do
ping_result=$(ping -c 1 $ip_address | grep "time=" | awk -F "time=" "{print $2}" | awk -F " " "{print $1}" | cut -d "." -f1)
if [ -n "$ping_result" ]; then
echo "Ping successful! Response time: $ping_result ms"
else
echo "Ping failed!"
fi
done
echo "Waiting for $interval seconds..."
sleep $interval
done
'''
with open('/etc/ping_v6.sh', 'w') as script_file:
script_file.write(script_content1)
os.chmod('/etc/ping_v6.sh', 0o755)
ping_v6_service()
print("\033[92mKharej Server Configuration Completed!\033[0m")
def iran_private_menu():
os.system("clear")
print('\033[92m ^ ^\033[0m')
print('\033[92m(\033[91mO,O\033[92m)\033[0m')
print('\033[92m( ) \033[93mConfiguring Iran server\033[0m')
print('\033[92m "-"\033[93m═══════════════════════════\033[0m')
display_logo2()
print("\033[93m╭────────────────────────────────────────────────────────────────────────────────────╮")
print("\033[92m Please make sure to remove any private IPs that you have created before proceeding")
print("\033[93m╰────────────────────────────────────────────────────────────────────────────────────╯\033[0m")
display_notification("\033[93mAdding private IP addresses for Iran server...\033[0m")
if os.path.isfile("/etc/private.sh"):
os.remove("/etc/private.sh")
print("\033[93m╭─────────────────────────────────────────────────────────╮\033[0m")
local_ip = input("\033[93mEnter IRAN IPV4 address: \033[0m")
remote_ip = input("\033[93mEnter Kharej IPV4 address: \033[0m")
subprocess.run(["ip", "tunnel", "add", "azumi", "mode", "sit", "remote", remote_ip, "local", local_ip, "ttl", "255"], stdout=subprocess.DEVNULL)
subprocess.run(["ip", "link", "set", "dev", "azumi", "up"], stdout=subprocess.DEVNULL)
initial_ip = "fd1d:fc98:b73e:b481::2/64"
subprocess.run(["ip", "addr", "add", initial_ip, "dev", "azumi"], stdout=subprocess.DEVNULL)
num_ips = int(input("\033[93mHow many additional private IPs do you need? \033[0m"))
print("\033[93m╰─────────────────────────────────────────────────────────╯\033[0m")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::2/64"
result = subprocess.run(["ip", "addr", "show", "dev", "azumi"], capture_output=True, text=True)
if ip_addr in result.stdout:
print(f"IP address {ip_addr} already exists. Skipping...")
else:
subprocess.run(["ip", "addr", "add", ip_addr, "dev", "azumi"], stdout=subprocess.DEVNULL)
display_notification("\033[93mAdding commands to private.sh...\033[0m")
with open("/etc/private.sh", "w") as f:
f.write(f"ip tunnel add azumi mode sit remote {remote_ip} local {local_ip} ttl 255\n")
f.write("ip link set dev azumi up\n")
f.write("ip addr add fd1d:fc98:b73e:b481::2/64 dev azumi\n")
for i in range(1, num_ips + 1):
ip_suffix = hex(i)[2:]
ip_addr = f"fd1d:fc98:b73e:b48{ip_suffix}::2/64"
f.write(f"ip addr add {ip_addr} dev azumi\n")
display_checkmark("\033[92mPrivate ip added successfully!\033[0m")
add_cron_job()
sleep(1)
display_checkmark("\033[92mkeepalive service Configured!\033[0m")
run_ping_iran()
sleep(1)
display_iran_ip(num_ips)
sleep(1)
script_content = '''#!/bin/bash
# IPv6 address
ip_address="fd1d:fc98:b73e:b481::2"
# maximum number
max_pings=4
# Interval
interval=50
# Loop run
while true
do
# Loop for pinging specified number of times
for ((i = 1; i <= max_pings; i++))
do
ping_result=$(ping -c 1 $ip_address | grep "time=" | awk -F "time=" "{print $2}" | awk -F " " "{print $1}" | cut -d "." -f1)
if [ -n "$ping_result" ]; then
echo "Ping successful! Response time: $ping_result ms"
else
echo "Ping failed!"
fi
done
echo "Waiting for $interval seconds..."
sleep $interval
done
'''
with open('/etc/ping_v6.sh', 'w') as script_file:
script_file.write(script_content)
os.chmod('/etc/ping_v6.sh', 0o755)
ping_v6_service()
def Native_menu():
subprocess.run("clear", shell=True)
print("\033[92m ^ ^\033[0m")
print("\033[92m(\033[91mO,O\033[92m)\033[0m")
print("\033[92m( ) \033[93mNative IP Menu\033[0m")
print("\033[92m \"-\"\033[93m═════════════════════\033[0m")
display_logo2()
print("\033[93m.-------------------------------------------------------------------------------------------------------.\033[0m")
print("\033[93m| \033[92mIf it didn't work, please uninstall it and add extra IP manually \033[0m")
print("\033[93m|\033[0m If you don't have native IPv6, please use a private IP instead. \033[0m")
print("\033[93m'-------------------------------------------------------------------------------------------------------'\033[0m")
display_notification("\033[93mAdding extra Native IPv6 [Kharej]...\033[0m")
print("\033[93m╭──────────────────────────────────────────────────────────╮\033[0m")
try:
interface = subprocess.run("ip route | awk '/default/ {print $5; exit}'", shell=True, capture_output=True, text=True).stdout.strip()
ipv6_addresses = subprocess.run(f"ip -6 addr show dev {interface} | awk '/inet6 .* global/ {{print $2}}' | cut -d'/' -f1", shell=True, capture_output=True, text=True).stdout.strip().split('\n')
print("\033[92mCurrent IPv6 addresses on", interface + ":\033[0m")
for address in ipv6_addresses:
print(address)
confirm = input("\033[93mAre these your current IPv6 addresses? (y/n): \033[0m")
if confirm.lower() != "y":
display_error("\033[91mAborted. Please manually configure the correct IPv6 addresses.\033[0m")
return
sorted_addresses = sorted(ipv6_addresses, reverse=True)
additional_address = ""
for i in range(len(sorted_addresses)):
current_last_part = sorted_addresses[i].split(':')[-1]
modified_last_part_hex = format(int(current_last_part, 16) + 1, '04x')
modified_address = ":".join(sorted_addresses[i].split(':')[:-1]) + ":" + modified_last_part_hex
if modified_address not in sorted_addresses:
additional_address = modified_address
break
if not additional_address:
display_error("\033[91mNo additional address to add.\033[0m")
return
subprocess.run(["ip", "addr", "add", f"{additional_address}/64", "dev", interface])
script_file = "/etc/ipv6.sh"
with open(script_file, "a") as file:
file.write(f"ip addr add {additional_address}/64 dev {interface}\n")
subprocess.run(["chmod", "+x", script_file])
subprocess.run("crontab -l | grep -v '/etc/ipv6.sh' | crontab -", shell=True)
display_notification("\033[93mAdding cronjob for the server..\033[0m")
subprocess.run("(crontab -l 2>/dev/null; echo \"@reboot /bin/bash /etc/ipv6.sh\") | crontab -", shell=True)
display_checkmark("\033[92mIPv6 addresses added successfully!\033[0m")
except ValueError as e:
display_error("\033[91mAn error occurred while adding IPv6 addresses:", str(e), "\033[0m")
def get_ipv4():
interfaces = ni.interfaces()
for interface in interfaces:
if interface.startswith('eth') or interface.startswith('en'):
try:
addresses = ni.ifaddresses(interface)
if ni.AF_INET in addresses:
ipv4 = addresses[ni.AF_INET][0]['addr']
return ipv4
except KeyError:
pass
return None
def save_haproxy(config):
config_path = "/etc/haproxy/haproxy.cfg"
if os.path.exists(config_path):
os.remove(config_path)
with open(config_path, "w") as file:
file.write(str(config))
def restart_haproxy():
os.system("systemctl restart haproxy")
display_checkmark("\033[92mHAProxy service restarted!\033[0m")
def install_haproxy():
display_loading()
os.system("apt-get install -y haproxy > /dev/null")
display_checkmark("\033[92mHAProxy installation completed.!\033[0m")
def haproxy_tunnel(ipv6_addresses, ipv6_ports, iran_port):
config = f"""\
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# See: https://ssl-config.mozilla.org/#server=haproxy&server-version=2.0.3&config=intermediate
ssl-default-bind-ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE>
ssl-default-bind-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
ssl-default-bind-options ssl-min-ver TLSv1.2 no-tls-tickets
defaults
log global
mode tcp
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
frontend vless_frontend
bind *:{iran_port}
mode tcp
default_backend azumi_backend
backend azumi_backend
mode tcp
balance roundrobin
option tcp-check
"""
for i in range(len(ipv6_addresses)):
ipv6_address = ipv6_addresses[i]
ipv6_port = ipv6_ports[i]
config += f" server azumi{i+1} {ipv6_address}:{ipv6_port} check\n"
return config
def haproxy2_tunnel(ipv6_addresses, ipv6_ports, iran_ports):
config = '''\
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# See: https://ssl-config.mozilla.org/#server=haproxy&server-version=2.0.3&config=intermediate
ssl-default-bind-ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE>
ssl-default-bind-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
ssl-default-bind-options ssl-min-ver TLSv1.2 no-tls-tickets
defaults
log global
mode tcp
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
'''
for i in range(len(ipv6_addresses)):
ipv6_address = ipv6_addresses[i]
ipv6_port = ipv6_ports[i]
iran_port = iran_ports[i]
frontend_name = f'vless{i+1}_frontend'
backend_name = f'azumi{i+1}_backend'
config += f'''
frontend {frontend_name}
bind *:{ipv6_port}
mode tcp
default_backend {backend_name}
backend {backend_name}
mode tcp
server azumi{i+1} {ipv6_address}:{ipv6_port}
'''
return config
def haproxy_menu():
subprocess.run("clear", shell=True)
print("\033[92m ^ ^\033[0m")
print("\033[92m(\033[91mO,O\033[92m)\033[0m")
print("\033[92m( ) \033[93mHaproxy Loadbalance & IPV6 Tunnel Menu\033[0m")
print("\033[92m \"-\"\033[93m════════════════════════════════════\033[0m")
display_logo2()
print("\033[93m.-------------------------------------------------------------------------------------------------------.\033[0m")
print("\033[93m| \033[92mYou can use private or native ipv6 as for kharej ipv6 addresses \033[0m")
print("\033[93m| \033[93mConfigure Haproxy on iran server \033[0m")
print("\033[92m| \033[92mYou can enter different Kharej IPV6 addresses with different port and one single port for iran \033[0m")
print("\033[93m| \033[93mYour V2rayng address : IPV4-IRAN : Iran-port [eg : 443] \033[0m")
print("\033[93m'-------------------------------------------------------------------------------------------------------'\033[0m")
display_notification("\033[93mConfigruing Haproxy...\033[0m")
install_haproxy()
print("\033[93m╭──────────────────────────────────────────────────────────╮\033[0m")
num_ipv6 = int(input("\033[93mEnter the number of \033[92mKharej\033[93m IPv6 addresses:\033[0m "))
ipv6_addresses = []
ipv6_ports = []
for i in range(num_ipv6):
address = input("\033[93m" + f"Enter \033[92mKharej\033[93m IPv6 address \033[92m{i+1}: " + "\033[0m")
port = input("\033[93m" + f"Enter the port for \033[92mKharej\033[93m IPv6 address \033[92m{i+1}: " + "\033[0m")
ipv6_addresses.append(address)
ipv6_ports.append(port)
iran_port = input("\033[93m" + "Enter the port for \033[92mIran\033[0m" + " Server: ")
config = haproxy_tunnel(ipv6_addresses, ipv6_ports, iran_port)
save_haproxy(config)
sleep(1)
restart_haproxy()
print("\033[93m╰─────────────────────────────────────────────────────────╯\033[0m")
display_checkmark("\033[92mHAProxy configuration file generated!\033[0m")
current_ipv4 = get_ipv4()
if current_ipv4:
print("\033[93m╭─────────────────────────────────────────────────────────╮\033[0m")
print(f"\033[93m| V2rayng Address: {current_ipv4} : {iran_port} \033[0m")
print("\033[93m╰─────────────────────────────────────────────────────────╯\033[0m")
else:
print("\033[93mUnable to retrieve server's IPv4 address.\033[0m")
def haproxy3_menu():
subprocess.run("clear", shell=True)
print("\033[92m ^ ^\033[0m")
print("\033[92m(\033[91mO,O\033[92m)\033[0m")
print("\033[92m( ) \033[93mHaproxy Simple \033[92mIPV6 Tunnel\033[93m Menu\033[0m")
print("\033[92m \"-\"\033[93m════════════════════════════════════\033[0m")
display_notification("\033[93mConfiguring Haproxy...\033[0m")
install_haproxy()
print("\033[93m╭─────────────────────────────────────────────────────────╮\033[0m")