forked from peasoft/NoMoreWalls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.meta.autochoose.yml
More file actions
11593 lines (11593 loc) · 468 KB
/
Copy pathlist.meta.autochoose.yml
File metadata and controls
11593 lines (11593 loc) · 468 KB
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: 2026-07-18 05:40
allow-lan: false
dns:
enable: true
enhanced-mode: redir-host
fallback:
- 8.8.8.8
- 1.1.1.1
ipv6: true
listen: :1053
nameserver:
- 223.5.5.5
- 114.114.114.114
nameserver-policy:
geosite:googlefcm: https://doh.pub/dns-query
external-controller: 127.0.0.1:9090
global-client-fingerprint: chrome
ipv6: true
log-level: warning
mixed-port: 7890
mode: rule
proxies:
- alterId: 0
cipher: auto
name: 防范境外势力渗透
network: tcp
port: '80'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #1'
network: tcp
port: '81'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #2'
network: tcp
port: '82'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #3'
network: tcp
port: '83'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #4'
network: tcp
port: '84'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #5'
network: tcp
port: '85'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #6'
network: tcp
port: '86'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #7'
network: tcp
port: '87'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #8'
network: tcp
port: '88'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- alterId: 0
cipher: auto
name: '防范境外势力渗透 #9'
network: tcp
port: '89'
server: 127.0.0.53
tls: false
type: vmess
uuid: 88888888-8888-8888-8888-888888888888
- name: 美国+CloudFlare节点
network: ws
port: 443
server: 104.19.234.144
servername: t1s1.rittbo.kdns.fr
skip-cert-verify: false
tls: true
type: vless
uuid: eeb6823c-b926-4ea2-866a-5542edd26e59
ws-opts:
path: '%2F'
- name: 罗马尼亚+V2CROSS.COM
password: dh-Ws-YoJIgTYLZ-A5VljeduVse-vhDl7Q
port: 443
server: 185.137.157.149
type: trojan
- name: '美国+CloudFlare节点 #1'
network: ws
port: 443
server: da.mfa.gov.ua
servername: t1s1.rittbo.kdns.fr
skip-cert-verify: false
tls: true
type: vless
uuid: eeb6823c-b926-4ea2-866a-5542edd26e59
ws-opts:
headers:
Host: t1s1.rittbo.kdns.fr
path: '%2F'
- name: 美国+V2CROSS.COM
password: S.ibYdZshHTF-ne.M+.Fznp_-hyFFnCSix
port: 443
server: 149.104.104.58
sni: 149.104.104.58
type: trojan
- name: '美国+CloudFlare节点 #2'
network: ws
port: 443
server: yx.cloudflare.182682.xyz
servername: t1s1.rittbo.kdns.fr
skip-cert-verify: false
tls: true
type: vless
uuid: eeb6823c-b926-4ea2-866a-5542edd26e59
ws-opts:
headers:
Host: t1s1.rittbo.kdns.fr
path: /
- name: '美国+CloudFlare节点 #3'
network: ws
port: 443
server: 104.21.227.134
servername: t1s1.rittbo.kdns.fr
skip-cert-verify: true
tls: true
type: vless
uuid: eeb6823c-b926-4ea2-866a-5542edd26e59
ws-opts:
headers:
Host: t1s1.rittbo.kdns.fr
path: '%2F'
- cipher: chacha20-ietf-poly1305
name: 印度+V2CROSS.COM
password: WOir3lXBhMHDcLFPQdEZXPu37_pTQDCXfm
port: 28061
server: 103.111.114.71
type: ss
- name: '美国+CloudFlare节点 #4'
network: ws
port: 2053
server: 162.159.39.251
servername: vp28.cc.cd
tls: true
type: vless
uuid: 7b102311-43fd-4e8f-877e-8090623c101d
ws-opts:
headers:
Host: vp28.cc.cd
path: /fp=chrome
- cipher: chacha20-ietf-poly1305
name: '印度+V2CROSS.COM #1'
password: WOir3lXBhMHDcLFPQdEZXPu37_pTQDCXfm
port: 28061
server: 103.111.114.80
type: ss
- name: '美国+V2CROSS.COM #1'
network: tcp
port: 2090
server: fn.fifapes.monster
tls: false
type: vless
uuid: eab915bc-d2df-73d1-47d0-6eb240497055
- name: 美国2
password: 78c2bad7-f5f3-41f2-88cc-81de9d05040b
port: 2056
server: mg2.mangshe.xyz
skip-cert-verify: true
sni: mg2.mangshe.xyz
tls: false
type: hysteria2
- name: 新加坡1
password: 78c2bad7-f5f3-41f2-88cc-81de9d05040b
port: 2055
server: xjp1.mangshe.xyz
skip-cert-verify: true
sni: xjp1.mangshe.xyz
tls: false
type: hysteria2
- name: JP
password: 95D27EEF-B7AE-4076-BA39-40FDFA3D0F61
port: 13778
server: jp7.dexlos.com
skip-cert-verify: true
tls: false
type: hysteria2
- name: DE
password: a084933d-0b41-4571-ae0c-7163b8c71ed1
port: 2056
server: de.eyucdn.xyz
skip-cert-verify: true
sni: de.eyucdn.xyz
tls: false
type: hysteria2
- name: 🇭🇰 HK
password: a305ac08-d136-11ee-b6db-f23c91cfbbc9
port: 443
server: ffc60249-t53wg0-t92wi1-1qkeg.hk2.hyhuawei.com
sni: ffc60249-t53wg0-t92wi1-1qkeg.hk2.hyhuawei.com
tls: false
type: hysteria2
- name: '@KAFING_2'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 181.214.99.162
skip-cert-verify: true
sni: api.kermanshahi.org
tls: false
type: hysteria2
- name: SG
password: e7965e64-e001-4e8c-8273-39c61ff4a094
port: 30000
server: sg3.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: TW
password: e7965e64-e001-4e8c-8273-39c61ff4a094
port: 30000
server: tw.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 🇫🇷113722 | ⚡️Telegram = t.me/S...
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: 3uIVdQh2vc
port: 33884
server: 140.233.177.48
skip-cert-verify: true
sni: www.oracle.com
tls: false
type: hysteria2
- name: 🪭68@oneclickvpnkeys
password: 792V1zl5cJHSV3wjyGPXiFbx1YA4BrIr
port: 8449
server: jongjmi.odnako.site
sni: jongjmi.odnako.site
tls: false
type: hysteria2
- name: 🪭23@oneclickvpnkeys
password: 87qety_hERGP8Y9_jqier3gw_nA8Q34_B2
port: 8443
server: 45.155.103.217
sni: kamil-power-machine.roxa.org
tls: false
type: hysteria2
- name: 🇩🇪@FreakConfig
obfs: salamander
obfs-password: ngljeqgna3hmfr2s
password: 91uokb9ud7raz0fk
port: 56845
server: qg.easyiran.org
skip-cert-verify: false
sni: qg.easyiran.org
tls: false
type: hysteria2
- name: 🎖️Telegram=V2RayyNGvpn🇩🇪
obfs: salamander
obfs-password: T-ME-V2RayyNGvpn
password: KJX4HQHodA
port: 25810
server: 91.107.174.32
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🩵+@Azarakhsh_Proxy+🩷
obfs: salamander
obfs-password: KevinZakarian
password: KevinZakarian
port: 8443
server: 179.61.132.96
skip-cert-verify: true
sni: 179.61.132.96
tls: false
type: hysteria2
- name: '@Surfboardv2ray'
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: M4q4riAk3C
port: 31999
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🇩🇪@V2rayng_Fast
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: NZC2w2V2NQ
port: 40460
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🇩🇪113721 | ⚡️Telegram = t.me/S...
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: Ov5kSglMCd
port: 31999
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: '🇩🇪Telegram=V2RayyNGvpn🇩🇪 #1'
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: RKJDOKrcIZ
port: 31999
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🪭46@oneclickvpnkeys
obfs: salamander
obfs-password: dwv3ped4yi46iw8r
password: TELEGRAM-ID-soalvajavaab
port: 2053
server: pristytools.com.pristytools.com
tls: false
type: hysteria2
- name: 🇩🇪T.Me=V2RayyNGvpn🇩🇪
obfs: salamander
obfs-password: T-ME-V2RayyNGvpn
password: UUoAsk2eM4
port: 25810
server: 91.107.174.32
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🇩🇪Telegram=V2RayyNGvpn
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: V2RayyNGvpn-
port: 31999
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: 🇬🇧V2RayyNGvpnکانال ما 🇬🇧
obfs: salamander
obfs-password: TeLeGRam=V2RayyNGvpn
password: V2RayyNGvpn
port: 58410
server: 51.89.225.225
skip-cert-verify: true
sni: www.oracle.com
tls: false
type: hysteria2
- name: 🇨🇦Telegram=V2RayyNGvpn🇨🇦
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: V2RayyNGvpn
port: 42286
server: 66.92.161.59
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: '@Surfboardv2ray #1'
obfs: salamander
obfs-password: T-ME-V2RayyNGvpn
password: V2RayyNGvpn
port: 25810
server: 91.107.174.32
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: '@prrofile_purple ♥️👈 تلگرام'
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: V2RayyNgvpn
port: 443
server: 65.109.177.191
skip-cert-verify: true
sni: www.oracle.com
tls: false
type: hysteria2
- name: 🇳🇱 - NL - @FreeOnlineVPN
obfs: salamander
obfs-password: Yet-Another-Public-Config-1
password: Yet-Another-Public-Config-1
port: 35000
server: 206.71.158.37
skip-cert-verify: true
sni: YAPC-1.afshin.ir
tls: false
type: hysteria2
- name: '@AzarAndoozVPNbot #2'
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: ZkaDQncyundefineda
port: 31999
server: 91.107.152.188
skip-cert-verify: true
sni: www.amd.com
tls: false
type: hysteria2
- name: '@KAFING_2 #2'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 5.175.249.174
skip-cert-verify: true
sni: api.kermanshahi.org
tls: false
type: hysteria2
- name: 🇫🇷FR-🚀@VPNine1
password: dongtaiwang.com
port: 22000
server: 62.210.124.146
skip-cert-verify: true
sni: www.microsoft.com
tls: false
type: hysteria2
- name: '@erfanandroid'
obfs: salamander
obfs-password: ielzukpwth087afx
password: elknam6l7izf3z71
port: 52002
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: '@bored_vpn'
obfs: salamander
obfs-password: cukfjxud1ebjuuzs
password: elknam6l7izf3z71
port: 52013
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: 🇫🇮@FreakConfig
obfs: salamander
obfs-password: mtg2vchyir6la3et
password: elknam6l7izf3z71
port: 52021
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: 🇻🇳113661 | ⚡️Telegram = t.me/S...
obfs: salamander
obfs-password: eNM/NfxTsBqQIKcN0ezARS1z0f5mIxRd9GSwhVsyJlo=
password: f7cb07a0-e6f9-4d22-a60e-c61854450c89
port: 443
server: vn2.yuntong.click
sni: vn2.yuntong.click
tls: false
type: hysteria2
- name: '@erfanandroid #1'
obfs: salamander
obfs-password: rG07s3COMIEvdnQipRyWzx_H_2xygNC3
password: p7Q76LzlnS4hIzr1W3staBOnUe_WwSkR
port: 443
server: 130.49.161.70
skip-cert-verify: false
sni: hy2.aspidnet.xyz
tls: false
type: hysteria2
- name: ✅ t.me/bigAVPN ایران آزاد 👑
obfs: salamander
obfs-password: oMgvuBy5Lj5kYM57sGsnjpjNcSEQ
password: rs2mR3g9bZiMloftx6lZQ59Um1Ld
port: 9443
server: 80.66.81.78
skip-cert-verify: false
sni: tunel1.washing.help
tls: false
type: hysteria2
- name: 🇫🇷113720 | ⚡️Telegram = t.me/S...
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: vVaz4PV7B7
port: 33884
server: 140.233.177.48
skip-cert-verify: true
sni: www.oracle.com
tls: false
type: hysteria2
- cipher: aes-256-cfb
name: 'tg频道:@ripaojiedian #1'
password: amazonskr05
port: 443
server: 63.180.254.10
type: ss
- alterId: 2
cipher: auto
name: 🇭🇰 香港|@ripaojiedian
port: 30807
server: v10.hdacd.com
skip-cert-verify: false
tls: false
type: vmess
uuid: cbb3f877-d1fb-344c-87a9-d153bffd5484
- name: 香港3|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 13118
server: 43.198.71.42
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 香港4|@ripaojiedian
network: tcp
password: BxceQaOe
port: 7674
server: 18.163.5.109
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- name: 香港5|@ripaojiedian
network: tcp
password: BxceQaOe
port: 27167
server: 18.166.113.165
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- name: 日本|@ripaojiedian
network: tcp
password: BxceQaOe
port: 4099
server: 18.162.51.224
skip-cert-verify: true
sni: t.me%252Fripaojiedian
type: trojan
- name: 日本2|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 24370
server: 43.198.71.42
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 日本3|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 24370
server: 18.166.55.241
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 新加坡|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 48738
server: 18.163.180.35
skip-cert-verify: true
sni: www.nintendogames.net
type: trojan
- name: 新加坡2|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 6357
server: 43.198.71.42
skip-cert-verify: true
sni: www.nintendogames.net
type: trojan
- name: 新加坡3|@ripaojiedian
network: tcp
password: BxceQaOe
port: 9149
server: 18.163.41.112
skip-cert-verify: true
sni: t.me%252Fripaojiedian
type: trojan
- name: 美国|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 17005
server: 18.166.55.241
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 美国2|@ripaojiedian
network: tcp
password: b490740312aedb5f9f6b84c7aebd08c0
port: 17005
server: 43.198.71.42
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 美国3|@ripaojiedian
network: tcp
password: BxceQaOe
port: 35966
server: 18.163.5.109
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- alterId: 2
cipher: auto
name: 香港|@ripaojiedian
network: tcp
port: '30807'
server: v10.hdacd.com
servername: ''
tls: false
type: vmess
uuid: cbb3f877-d1fb-344c-87a9-d153bffd5484
- name: 🇯🇵JP_1|3.7MB/s
password: NQ26071394
port: 443
server: harmless-pegasus.rooster465.autos
skip-cert-verify: true
sni: harmless-pegasus.rooster465.autos
type: trojan
- client-fingerprint: random
name: 🇯🇵JP_2|3.0MB/s
network: ws
port: 443
server: 172.64.229.1
servername: cf11.evan00.dpdns.org
tls: true
type: vless
uuid: 7612dd26-d0ce-4fe0-be7c-d093bb8645da
ws-opts:
headers:
Host: cf11.evan00.dpdns.org
path: /proxyip=ProxyIP.US.cmliussss.net
- name: 🇯🇵JP_3|3.4MB/s
password: NQ26071394
port: 443
server: innocent-mullet.rooster465.autos
skip-cert-verify: true
sni: innocent-mullet.rooster465.autos
type: trojan
- client-fingerprint: random
name: 🇺🇸US_1|3.4MB/s
network: ws
port: 8443
server: 162.159.38.2
servername: cf11.evan00.dpdns.org
tls: true
type: vless
uuid: 7612dd26-d0ce-4fe0-be7c-d093bb8645da
ws-opts:
headers:
Host: cf11.evan00.dpdns.org
path: /proxyip=ProxyIP.US.cmliussss.net
- name: 🇯🇵JP_4|4.6MB/s
password: NQ26071394
port: 443
server: bursting-racer.rooster465.autos
skip-cert-verify: true
sni: bursting-racer.rooster465.autos
type: trojan
- name: 🇰🇷KR_1|3.6MB/s
password: NQ26071394
port: 443
server: massive-ocelot.rooster465.autos
skip-cert-verify: true
sni: massive-ocelot.rooster465.autos
type: trojan
- alpn:
- http/1.1
client-fingerprint: qq
flow: xtls-rprx-vision
name: 🇳🇱NL_1|3.2MB/s
network: tcp
port: 443
reality-opts:
public-key: 10rVZPoOUP1TlQviIAsQ_jAROX0fRQxH0C92nq_zGQc
short-id: '43dcff53849b81e6'
server: 89.105.204.107
servername: nl.quattro-tech.ru
tls: true
type: vless
udp: true
uuid: ecad47b0-249e-4f6f-adff-e3c8f02b1897
- grpc-opts:
grpc-mode: gun
grpc-service-name: api.v2.PushService
name: 🇺🇸US_2|2.5MB/s
network: grpc
port: 443
reality-opts:
public-key: 4o20JlNKKsAzSGEvEMw6g1A8Ij37tiSU1CFwTZI4b3o
short-id: '8ba32e7cefbf524a'
server: dl.onetimeok.com
servername: dl.onetimeok.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
- client-fingerprint: firefox
grpc-opts:
grpc-mode: gun
grpc-service-name: rpc.v1.StreamService
name: 🇺🇸US_3|1.8MB/s
network: grpc
port: 443
reality-opts:
public-key: 2ByKrIVItayTLa4VxxsEpSMi5Anjk8tGqsUm9A2YU2I
short-id: 'acd160fedb4b4006'
server: mirror.oneokgames.com
servername: mirror.oneokgames.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
- client-fingerprint: firefox
grpc-opts:
grpc-mode: gun
grpc-service-name: push.v2.FeedService
name: 🇺🇸US_4|2.1MB/s
network: grpc
port: 443
reality-opts:
public-key: VTO26jBMVVnEnnHQON7k8lB3ED46_JHshPorJHHXSRU
short-id: 'a30b344b5214d62f'
server: api.oneokgames.com
servername: api.oneokgames.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
- name: 🇸🇬SG_1|5.0MB/s
password: NQ26071394
port: 443
server: organic-locust.rooster465.autos
skip-cert-verify: true
sni: organic-locust.rooster465.autos
type: trojan
- name: 🇸🇬SG_2|5.3MB/s
password: NQ26071394
port: 443
server: evident-ant.rooster465.autos
skip-cert-verify: true
sni: evident-ant.rooster465.autos
type: trojan
- encryption: none
grpc-opts:
grpc-service-name: api.v1.StreamService
name: 🇸🇪SE_1|2.1MB/s
network: grpc
port: '443'
reality-opts:
public-key: yiX2T6z3GavNIgnnxsoU57vgq2pdfngXAU83vhBDQlA
short-id: 'a9b0c08836bad3c5'
server: main.oneoker.com
servername: main.oneoker.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
xudp: true
- alpn:
- h2
- http/1.1
encryption: none
name: 🇫🇷FR_1|2.1MB/s
network: xhttp
port: '8443'
server: cdn1.portalcode.ir
servername: 132af752fb1a90a1.rainzone.ir
tls: true
type: vless
udp: true
uuid: c1000175-0b05-46e3-b0f5-1985ffa1ee55
xhttp-opts:
host: 132af752fb1a90a1.rainzone.ir
mode: auto
path: /
xudp: true
- encryption: none
grpc-opts:
grpc-service-name: api.v1.StreamService
name: 🇸🇪SE_2|2.1MB/s
network: grpc
port: '443'
reality-opts:
public-key: W329R9_hAiG_wGLcIhfbm0AA8Si7DVhz4es2aASZACY
short-id: '9c478d3655bfa85d'
server: add.oneoker.com
servername: add.oneoker.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
xudp: true
- name: 🇫🇷FR_2|4.1MB/s
password: NQ26071394
port: '443'
server: ready-kangaroo.rooster465.autos
skip-cert-verify: true
sni: ready-kangaroo.rooster465.autos
type: trojan
udp: true
- encryption: none
flow: xtls-rprx-vision
name: 🇩🇪DE_1|2.5MB/s
network: tcp
port: '2443'
reality-opts:
public-key: USffNprEM08MHiuVy5bj6-kvxugxycuZcgQDFJyz2Wc
short-id: '8f9d033ad6d2cebf'
server: ge4.cyphervpn.pro
servername: ge4.cyphervpn.pro
tls: true
type: vless
udp: true
uuid: 8bba3194-4856-46d1-8319-075817d87eb1
xudp: true
- cipher: chacha20-ietf-poly1305
name: 🇳🇱NL_2|2.7MB/s
password: oZIoA69Q8yhcQV8ka3Pa3A
port: '8080'
server: 82.38.31.46
type: ss
udp: true
- encryption: none
flow: xtls-rprx-vision
name: 🇺🇦UA_1|2.4MB/s
network: tcp
port: '443'
reality-opts:
public-key: quSgGKXdwtlVQYTJypimp3Er-PoMI4SP4EXPdOKLQwk
short-id: ''
server: de-one.quiet-rogue.site
servername: de-one.quiet-rogue.site
tls: true
type: vless
udp: true
uuid: 71cada65-d23e-418c-88e4-a06188d14689
xudp: true
- encryption: none
grpc-opts:
grpc-service-name: api.v2.ObjectService
name: 🇺🇸US_5|1.5MB/s
network: grpc
port: '443'
reality-opts:
public-key: aDNsk312UNfOEh0RiyGZdK6opt__mMyKBSglqFKFP38
short-id: 'dbdbeaf4aa6e1a5c'
server: media.oneokgames.com
servername: media.oneokgames.com
tls: true
type: vless
udp: true
uuid: 86208db7-8bbc-42c2-9eb2-ffe5675502c3
xudp: true
- alpn:
- http/1.1
encryption: none
name: 🇬🇧GB_1|2.6MB/s
network: ws
port: '443'
server: 104.25.249.215
servername: dfujbv.mobilevisionn.ir
tls: true
type: vless
udp: true
uuid: 4de09ba9-eaea-404e-a28d-c548f52e9b8c
ws-opts:
headers:
Host: dfujbv.mobilevisionn.ir
User-Agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/60.0.3112.90 Safari/537.36
path: /DBFyQJ5aNatpJCSSukvp8c
xudp: true
- encryption: none
flow: xtls-rprx-vision
name: 🇦🇹AT_1|2.0MB/s
network: tcp
port: '443'
reality-opts:
public-key: HyVSZ2OyySwXT-xRhTAqoiuYflIaj_b0Jxm7S1Iq9hs
short-id: '7a76f3c4b9dd'
server: jdwadgw.cvewfjg.shop
servername: www.cloudflare.com
tls: true
type: vless
udp: true
uuid: 711c018e-2692-4aa8-93f3-544d83fcd16c
xudp: true
- encryption: none
flow: xtls-rprx-vision
name: 🇩🇪DE_2|3.4MB/s
network: tcp
port: '53921'
reality-opts:
public-key: 1BpNelF0e6LBCHdN6BbOL4Mb--MoiWVIgcZPl-0rE0Y
short-id: 'c2'
server: real2.gogoli.xyz
servername: www.yahoo.com
tls: true
type: vless
udp: true
uuid: efb994b0-c84f-483d-b45f-797b825f6e77
xudp: true
- grpc-opts:
grpc-service-name: ge1grpc
name: 🇬🇧GB_2|2.0MB/s
network: grpc
port: 8443
server: ge1.cyphervpn.pro
servername: ge1.cyphervpn.pro
skip-cert-verify: true
tls: true
type: vless
udp: true
uuid: 8bba3194-4856-46d1-8319-075817d87eb1
- name: RO_speednode_0024
port: 9002
server: 84.239.49.207
skip-cert-verify: true
tls: true
type: http
udp: true
- name: RO_speednode_0033
port: 9002
server: 84.239.49.160
skip-cert-verify: true
tls: true
type: http
udp: true
- name: RO_speednode_0043
port: 9002
server: 84.239.49.175
skip-cert-verify: true
tls: true
type: http
udp: true
- name: RO_speednode_0049
port: 9002
server: 84.239.49.219
skip-cert-verify: true
tls: true
type: http
udp: true
- encryption: mlkem768x25519plus.native.0rtt.BBBQ6KZyjiYmpp2ErhKd0OwCBOm4J6_McyVQdB5yhBI
name: 🇩🇪DE_3|2.3MB/s
network: xhttp
port: 8443
server: bayan.ns.cloudflare.com
servername: vamosargentina.dpdns.org
tls: true
type: vless
udp: true
uuid: 88888888-8888-8888-8888-888888888888
xhttp-opts: