-
Notifications
You must be signed in to change notification settings - Fork 225
/
list.meta.yml
7776 lines (7776 loc) · 323 KB
/
list.meta.yml
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
# Update: 2025-01-02 14:19
allow-lan: false
dns:
enable: true
enhanced-mode: redir-host
fallback:
- tls://8.8.4.4
- tls://1.1.1.1
- https://dns.rubyfish.cn/dns-query
fallback-filter:
ipcidr:
- 61.160.148.90/32
ipv6: true
listen: :1053
nameserver:
- 223.5.5.5
- 114.114.114.114
external-controller: 0.0.0.0:9090
global-client-fingerprint: chrome
ipv6: true
log-level: warning
mixed-port: 7890
mode: rule
proxies:
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-2
password: amazonskr05
port: 443
server: 35.85.33.177
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-3
password: amazonskr05
port: 443
server: 34.213.242.165
type: ss
- cipher: aes-256-cfb
name: 0,13|🇰🇷 韩国特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 13.250.115.217
tfo: false
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-6
password: amazonskr05
port: 443
server: 54.179.186.199
type: ss
- cipher: aes-256-cfb
name: 0,13|🇸🇬 狮城特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 13.215.51.127
tfo: false
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-12
password: 4a2rfixophdjffa8KVA4Aa
port: 8080
server: 45.87.175.164
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-13
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: 45.87.175.157
type: ss
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-17
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 193.108.119.230
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-18
password: 1RWwXhwfAB5gAEozU4G2Pg
port: 8080
server: 45.87.175.171
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-20
password: X7eoEBrARWsBUiVfchVEdH
port: 443
server: 185.77.217.121
type: ss
udp: true
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-21
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 68.183.227.45
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-22
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: 45.87.175.166
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-23
password: 4a2rfixophdjffa8KVA4Aa
port: 8080
server: 45.87.175.199
type: ss
- cipher: chacha20-ietf-poly1305
name: 0|-https://t.me/MrXbin-24
password: 1RWwXhwfAB5gAEozU4G2Pg
port: 8080
server: 45.87.175.199
type: ss
- cipher: aes-128-gcm
name: 0|-https://t.me/MrXbin-26
password: shadowsocks
port: 443
server: 212.102.53.193
type: ss
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-28
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 169.150.210.233
type: ss
udp: true
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-29
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 23.251.121.242
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-30
password: EXN3S3eQpjE7EJu8
port: 9027
server: 217.30.10.18
type: ss
udp: true
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-31
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 146.70.61.18
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-33
password: amazonskr05
port: 443
server: 52.68.44.53
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-36
password: amazonskr05
port: 443
server: 52.79.73.137
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-37
password: UkXRsXvR6buDMG2Y
port: 9001
server: 217.30.10.18
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-42
password: amazonskr05
port: 443
server: 3.38.212.48
type: ss
- cipher: aes-128-cfb
name: 0|-https://t.me/MrXbin-47
obfs: http_post
password: $$Turb0VPN$$
port: 443
protocol: auth_aes128_md5
server: ssca.irundns.net
type: ssr
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-48
obfs: tls1.2_ticket_auth
password: Cskw6d
port: 13622
protocol: auth_aes128_md5
protocol-param: 524959:5u4MZ6
server: hfa1.cdn.node.a.tddns-ounk.com
type: ssr
- alterId: 0
cipher: auto
h2-opts: {}
http-opts: {}
name: 0|-https://t.me/MrXbin-61
network: ws
port: 443
server: 149.7.16.174
skip-cert-verify: true
tls: true
type: vmess
uuid: 03fcc618-b93d-6796-6aed-8a38c975d581
ws-opts:
headers:
Host: meroiy.icu
path: /linkvws
- name: '7,12|@vpnv2rayNGv #2'
obfs: salamander
obfs-password: KevinZakarian
password: KevinZakarian
port: 443
server: 66.23.198.32
skip-cert-verify: true
sni: www.eliv2ray.net
tls: false
type: hysteria2
- name: '7,12|@vpnv2rayNGv #3'
password: a278eadd-c35c-403f-a286-7767a74307c1
port: 8080
server: 45.140.169.231
skip-cert-verify: true
sni: www.eliv2ray.net
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-4
password: '123456'
port: 443
server: 192.3.85.237
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 8|MCI--@V2ray_Raha--07
password: 67e1eb33-4ad4-4301-b066-38c4175ca5e6
port: 443
server: hk.vvcloud.us.kg
skip-cert-verify: false
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-5
password: 8a3b7d4b-39c4-4bb3-8775-56bd65b771da
port: 1001
server: br.1010520.xyz
skip-cert-verify: false
sni: br.1010520.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-4
password: 8a3b7d4b-39c4-4bb3-8775-56bd65b771da
port: 1002
server: br.1010520.xyz
skip-cert-verify: false
sni: br.1010520.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-6
password: 8a3b7d4b-39c4-4bb3-8775-56bd65b771da
port: 1001
server: th.1010520.xyz
skip-cert-verify: false
sni: th.1010520.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-7
password: 8a3b7d4b-39c4-4bb3-8775-56bd65b771da
port: 1002
server: th.1010520.xyz
skip-cert-verify: false
sni: th.1010520.xyz
tls: false
type: hysteria2
- name: 8|@WiFi-@V2ray_Alpha-10
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: bl1.mangshe.xyz
skip-cert-verify: true
sni: bl1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-13
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: bl2.mangshe.xyz
skip-cert-verify: true
sni: bl2.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-5
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: cc1.mangshe.xyz
skip-cert-verify: true
sni: cc1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-6
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: cc2.mangshe.xyz
skip-cert-verify: true
sni: cc2.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-7
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: dj1.mangshe.xyz
skip-cert-verify: true
sni: dj1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-8
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: dj2.mangshe.xyz
skip-cert-verify: true
sni: dj2.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-11
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: fhc1.mangshe.xyz
skip-cert-verify: true
sni: fhc1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-18
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: hdlb1.mangshe.xyz
skip-cert-verify: true
sni: hdlb1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-16
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: jd1.mangshe.xyz
skip-cert-verify: true
sni: jd1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-14
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: ld1.mangshe.xyz
skip-cert-verify: true
sni: ld1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-9
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: mm1.mangshe.xyz
skip-cert-verify: true
sni: mm1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-10
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: mm2.mangshe.xyz
skip-cert-verify: true
sni: mm2.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-17
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: sbl.mangshe.xyz
skip-cert-verify: true
sni: sbl.mangshe.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-15
password: 8d320b07-26fc-4a58-9ef8-e443fbd1f056
port: 2056
server: sr1.mangshe.xyz
skip-cert-verify: true
sni: sr1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-9
password: 95c2b673-d899-4ff4-a6c1-eafa74268a5e
port: 26699
server: 166.1.18.244
skip-cert-verify: true
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-2
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 108.181.23.231
skip-cert-verify: true
sni: www.microsoft.com
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-3
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 129.153.76.186
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|IR-@iroazadi-1
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 139.185.49.195
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-5
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 140.238.132.152
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-6
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 141.148.223.173
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|MCI-V2ray_Raha-8
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 158.101.4.24
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|IR-@iroazadi-3
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 158.179.214.33
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|IR-@iroazadi-4
password: 95eb72fe-e967-4540-ac10-069c8a95c6d7
port: 443
server: 193.122.12.150
skip-cert-verify: true
sni: fastcdn.hoyoverse.com
tls: false
type: hysteria2
- name: 8|KevinVPN
obfs: salamander
obfs-password: Telegram:@KevinZakarian
password: Telegram
port: 443
server: kevin.iserver.store
skip-cert-verify: true
tls: false
type: hysteria2
- name: '8|IR-@V2ray_Alpha-3 #1'
password: ThisIsNotForSale-Free$ervice
port: 443
server: 52.163.114.191
skip-cert-verify: true
sni: api.tg8lnk.tech
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-2
password: ThisIsNotForSale-Free$ervice
port: 443
server: 52.187.5.16
skip-cert-verify: true
sni: api.tg8lnk.tech
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-06
password: ThisIsNotForSale-Free$ervice
port: 443
server: api.tg8lnk.tech
skip-cert-verify: true
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-4
password: df77b09e-a079-4a2d-a382-c1e0dae18107
port: 443
server: 139.185.34.29
skip-cert-verify: true
sni: www.hoyoverse.com
tls: false
type: hysteria2
- name: 8|MCI-V2ray_Raha-7
password: df77b09e-a079-4a2d-a382-c1e0dae18107
port: 443
server: 158.101.37.59
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 8|MCI-iroazadi-1
password: df77b09e-a079-4a2d-a382-c1e0dae18107
port: 443
server: 62.210.71.30
skip-cert-verify: true
sni: www.microsoft.com
tls: false
type: hysteria2
- name: 8|WiFi-@V2ray_Alpha-10
password: dongtaiwang.com
port: 50717
server: 46.17.41.189
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Raha-8
password: f3182d97-8472-4433-8d75-7598d6978364
port: 443
server: kaikaixinxin-ca.legeth.xyz
skip-cert-verify: false
sni: kaikaixinxin-ca.legeth.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-05
password: f8d473b9-5724-489e-8841-cf4565203c9e
port: 8080
server: 45.140.169.231
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Alpha-8
password: few4139098219
port: 7863
server: 172.172.36.217
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 12|🇭🇰2@vpnAndroid2
password: 148097c2-cd69-4015-992f-5939c08b9ab8
port: 443
server: sanguayun-hk.legeth.xyz
tls: false
type: hysteria2
- name: 12|🇯🇵2@vpnAndroid2
password: 148097c2-cd69-4015-992f-5939c08b9ab8
port: 443
server: sanguayun-jp.legeth.xyz
tls: false
type: hysteria2
- name: 12|🇰🇷2@vpnAndroid2
password: 148097c2-cd69-4015-992f-5939c08b9ab8
port: 443
server: sanguayun-kr.legeth.xyz
tls: false
type: hysteria2
- name: 12|🇬🇧@vpnAndroid2
password: 148097c2-cd69-4015-992f-5939c08b9ab8
port: 443
server: sanguayun-uk.legeth.xyz
tls: false
type: hysteria2
- name: 12|🇺🇸@vpnAndroid21
password: 148097c2-cd69-4015-992f-5939c08b9ab8
port: 443
server: sanguayun-us.legeth.xyz
tls: false
type: hysteria2
- name: 12|@ToYoTA_PRoXY
obfs: salamander
obfs-password: 8c3ce17b
password: f6e4b19a3110d19d
port: 443
server: 66.135.28.59
skip-cert-verify: true
sni: ELiV2RAY.eliv2.top
tls: false
type: hysteria2
- name: 13,15|HK_speednode_0078
port: 4000
server: ftq.ink
tls: true
type: http
- name: 13,14|香港|@ripaojiedian
network: tcp
password: vzhXXZVw
port: 48544
server: 36.150.215.222
skip-cert-verify: true
type: trojan
- name: 13,14,15|CN_speednode_0002
network: tcp
password: vzhXXZVw
port: 18681
server: 36.150.215.196
skip-cert-verify: true
type: trojan
- alterId: 64
cipher: auto
name: 13|🇭🇰 香港3|@ripaojiedian
port: 52908
server: 120.234.102.229
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- alterId: 64
cipher: auto
name: 13|🇭🇰 香港4|@ripaojiedian
port: 34493
server: 120.198.71.214
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- alterId: 64
cipher: auto
name: 13|🇭🇰 香港5|@ripaojiedian
port: 51704
server: 183.236.51.23
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: 13|🇭🇰 香港6|@ripaojiedian
password: '3555'
port: 443
server: link.5557.run
skip-cert-verify: false
sni: link.5557.run
type: trojan
- cipher: chacha20-ietf-poly1305
name: 13|🇭🇰 香港7|@ripaojiedian
password: 7243745919d6de49a5db
plugin: obfs
plugin-opts:
host: 215996dd9f1c3db1e54b.microsoft.com
mode: http
port: 45578
server: console.02.aliyun.aq.kunlunaqs.com
tfo: false
type: ss
- alterId: 0
cipher: auto
name: 13|🇭🇰 香港8|@ripaojiedian
port: 54675
server: 103.149.183.178
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 3a907956-f668-4e6b-ea03-0949f0c9c0a5
- cipher: aes-128-gcm
name: 13|🇹🇼 台湾|@ripaojiedian
password: b74518fb49bd645e6ce7
plugin: obfs
plugin-opts:
host: 215996dd9f1c3db1e54b.microsoft.com
mode: http
port: 45915
server: console.03.aliyun.aq.kunlunaqs.com
tfo: false
type: ss
- cipher: chacha20-ietf-poly1305
name: 13|🇯🇵 日本|@ripaojiedian
password: f5136746-de79-46d0-b3be-d15d9992fa07
port: 18109
server: zx1.1010520.xyz
tfo: false
type: ss
- name: 13,14|韩国|@ripaojiedian
network: tcp
password: '3723507166611775488'
port: 443
server: super-goblin.treefrog761.one
skip-cert-verify: false
sni: super-goblin.treefrog761.one
type: trojan
- alterId: 0
cipher: auto
name: 13,14|新加坡|@ripaojiedian
network: ws
port: '80'
server: www.aetv.com
servername: ''
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: beb7d098-48ba-4be8-a47a-758bf3c470b8
ws-opts:
headers:
Host: amd.al
path: /?ed=2048
- name: 13,14|新加坡2|@ripaojiedian
network: tcp
password: '3723507166611775488'
port: 443
server: whole-foxhound.boa152.lol
skip-cert-verify: false
sni: whole-foxhound.boa152.lol
type: trojan
- cipher: chacha20-ietf-poly1305
name: 13|🇸🇬 新加坡3|@ripaojiedian
password: f5136746-de79-46d0-b3be-d15d9992fa07
port: 18759
server: zx1.1010520.xyz
tfo: false
type: ss
- alterId: 0
cipher: auto
name: 13|🇺🇸 美国|@ripaojiedian
port: 8080
server: 185.168.195.211
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 02788b47-d952-55e0-98de-d743d01bd007
- cipher: chacha20-ietf-poly1305
name: 13|🇺🇸 美国2|@ripaojiedian
password: 2UrSffeNABXGXXfNhoL6xBUnh1RzqMizrQ2s9QfC38P2YPuYPRTqW5zZg6jGisiNhkzM4SRjF6nzvFb18GPtESWoXWjhqyC8
port: 46902
server: 198.105.123.190
tfo: false
type: ss
- cipher: aes-256-cfb
name: 13|🇯🇵 日本特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 52.194.212.235
tfo: false
type: ss
- alterId: 0
cipher: auto
name: 13,14|法国|@ripaojiedian
network: ws
port: '443'
server: primer.ibilibi.li
servername: ameblo.jp
skip-cert-verify: false
tfo: false
tls: true
type: vmess
uuid: e5852393-ca52-4c90-a237-d63cbbb57f21
ws-opts:
headers:
Host: loki.oracle
path: /farcry?ed=2560
- alterId: 64
cipher: auto
name: 14|香港3|@ripaojiedian
network: tcp
port: '52908'
server: 120.234.102.229
servername: ''
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- alterId: 64
cipher: auto
name: 14|香港4|@ripaojiedian
network: tcp
port: '34493'
server: 120.198.71.214
servername: ''
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- alterId: 64
cipher: auto
name: 14|香港5|@ripaojiedian
network: tcp
port: '51704'
server: 183.236.51.23
servername: ''
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: 14|香港6|@ripaojiedian
network: tcp
password: '3555'
port: 443
server: link.5557.run
skip-cert-verify: true
type: trojan
- alterId: 0
cipher: auto
name: 14|香港8|@ripaojiedian
network: tcp
port: '54675'
server: 103.149.183.178
servername: ''
tls: false
type: vmess
uuid: 3a907956-f668-4e6b-ea03-0949f0c9c0a5
- alterId: 0
cipher: chacha20-poly1305
name: 14|美国|@ripaojiedian
network: tcp
port: '8080'
server: 185.168.195.211
servername: ''
tls: false
type: vmess
uuid: 02788b47-d952-55e0-98de-d743d01bd007
- flow: xtls-rprx-vision
name: 15|AE_speednode_0001
port: 443
reality-opts:
public-key: ljzfoaXVBSNu3tw58-B0WNViso1aA9JSCX9GUcMDu0k
short-id: 4048A3da
server: 181.215.205.99
servername: adobe.com
skip-cert-verify: false
tls: true
type: vless
uuid: 71b60539-19bf-4282-b09f-7596ffc3cc8b
- http-opts:
headers:
Host:
- speedtest.net
method: GET
path:
- /@lombo_channel@lombo_channel@lombo_channel@lombo_channel@lombo_channel
name: 15|DE_speednode_0073
network: http
port: 48397
server: 209.38.190.74
servername: speedtest.net
skip-cert-verify: false
tls: false
type: vless
uuid: 0650f093-30f5-4996-b738-0b82859a4eb2
- name: 15|DE_speednode_0074
network: ws
port: 22222
server: 52.59.182.233
servername: telegram-channel-vlessconfig.sohala.uk
skip-cert-verify: false
tls: true
type: vless
uuid: 05519058-d2ac-4f28-9e4a-2b2a1386749e
ws-opts:
headers:
Host: telegram-channel-vlessconfig.sohala.uk
path: /telegram-channel-vlessconfig-ws
- flow: xtls-rprx-vision
name: 15|DE_speednode_0075
port: 2315
reality-opts:
public-key: rJ0-oJkd_StkVnZhT3fC4En9OOxOkAdvuCAgmh28h2w
short-id: a4c9c0cd1d37fabb
server: 89.208.96.96
servername: teamdocs.su
skip-cert-verify: false
tls: true
type: vless
uuid: f1f1359d-ab42-4802-8223-eaa725c02681
- http-opts:
headers:
Host:
- telewebion.com
method: GET
path:
- /
name: 15|GB_speednode_0077
network: http
port: 18764
server: 198.244.141.210
servername: telewebion.com
skip-cert-verify: false
tls: false
type: vless
uuid: 9fcdf14d-5e70-426d-a377-3e5a35b72a31
- name: 15|HK_speednode_0079
port: 4000
server: hk9.ftq.ink
tls: true
type: http
- flow: xtls-rprx-vision
name: 15|IL_speednode_0080
port: 443
reality-opts:
public-key: -ALxkpd7Wi7WKs1dXND7yqoYQfJW8d4BctjfXIy0L1M
short-id: b5ed878b
server: 195.211.24.243
servername: apple.com
skip-cert-verify: false
tls: true
type: vless
uuid: 71b60539-19bf-4282-b09f-7596ffc3cc8b
- http-opts:
headers:
Host:
- Speedtest.net
method: GET
path:
- /
name: 15|NL_speednode_0081
network: http
port: 23701
server: 146.190.16.108
servername: Speedtest.net
skip-cert-verify: false
tls: false
type: vless
uuid: 677a41e5-dbe6-429b-8f91-cc014b1ae1bd
- client-fingerprint: random
name: 15|NL_speednode_0082
port: 15891
reality-opts:
public-key: 4FNDHgDP2lnetuRioH6DsE9kMnDyhkJ2NHLMpZgyci0
short-id: 10f1
server: 174.138.13.224
servername: ftp.debian.org
skip-cert-verify: false
tls: true
type: vless
uuid: ae2228d1-9b8f-4914-9e0a-68a115f8dbe1
- flow: xtls-rprx-vision
name: 15|RU_speednode_0083
port: 443
reality-opts:
public-key: NsRSWMDMKxVFiry3uRJB8tG5rG8LdIJqTJvHK0Uc6Gw
short-id: EeEFB5bF
server: 185.40.153.191
servername: vk.com
skip-cert-verify: false
tls: true
type: vless
uuid: 71b60539-19bf-4282-b09f-7596ffc3cc8b
- name: 15|SG_speednode_0084
password: 0ab6c98dae3b48e8b9c4a776b6c9c19a
port: 443
server: 139.59.119.143
skip-cert-verify: true
sni: connectwithemployers.online
type: trojan
- name: 15|SG_speednode_0085
password: 0ab6c98dae3b48e8b9c4a776b6c9c19a
port: 443
server: connectwithemployers.online
skip-cert-verify: false
type: trojan
- flow: xtls-rprx-vision
name: 15|TR_speednode_0086
port: 443
reality-opts:
public-key: PlJHlfpSGU1qQzfrdjziVEKausAhFZXb4Q0pJZWFCWE
short-id: 4b4a1a3c
server: 89.47.113.149
servername: apple.com
skip-cert-verify: false
tls: true
type: vless
uuid: 71b60539-19bf-4282-b09f-7596ffc3cc8b
- alterId: 0
cipher: auto
name: 16|d*********g.com_2
network: tcp
port: '443'
server: 42.236.73.72
servername: www.zitian.cn
tls: true
type: vmess
uuid: 044f0177-0675-4dcf-89d4-804b6788e518
- alpn:
- http/1.1
name: 16|d*********g.com_6
network: tcp
port: 443
server: 42.236.73.72
servername: www.zitian.cn
tls: true
type: vless
uuid: 11916472-4e2c-49c6-b75d-71196b3a7ecf
ws-opts:
headers:
Host: www.zitian.cn
- alpn:
- http/1.1
name: 16|d*********g.com_3
network: tcp
password: fuck
port: 443
server: 42.236.73.72
sni: www.zitian.cn
type: trojan
ws-opts:
headers:
Host: www.zitian.cn
proxy-groups:
- name: 🚀 选择代理
proxies:
- ♻ 自动选择