-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbest1-nodes.yaml
More file actions
1133 lines (1133 loc) · 31.5 KB
/
best1-nodes.yaml
File metadata and controls
1133 lines (1133 loc) · 31.5 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
proxies:
- client-fingerprint: chrome
encryption: none
grpc-opts:
grpc-service-name: movie
name: 🇭🇰HK_1|8.7MB/s
network: grpc
port: 10129
reality-opts:
public-key: wOu-BMrXvk9KX23JZrlpUlF4SMjDcejm0vNECdhy5xE
short-id: 686c0ef0
server: hk4-r.link-t7.com
tls: true
type: vless
udp: true
uuid: EF3507AC-123A-4A39-9B4C-7D9BD69F8913
xudp: true
servername: s0.awsstatic.com
- alterId: 0
cipher: auto
name: 🇭🇰HK_2|8.1MB/s
port: 7754
server: vm51544542.dns8656815.com
type: vmess
uuid: 7cd96dbe-ecec-4937-9e05-87ab70af2f30
network: tcp
- client-fingerprint: chrome
encryption: none
grpc-opts:
grpc-service-name: movie
name: 🇭🇰HK_3|6.1MB/s
network: grpc
port: 10128
reality-opts:
public-key: wOu-BMrXvk9KX23JZrlpUlF4SMjDcejm0vNECdhy5xE
short-id: 686c0ef0
server: hk3-r.link-t7.com
tls: true
type: vless
udp: true
uuid: EF3507AC-123A-4A39-9B4C-7D9BD69F8913
xudp: true
servername: s0.awsstatic.com
- name: 🇭🇰HK_4|5.2MB/s
password: 46c3e412-b843-4982-a87f-ca17d9cd6c4c
port: 40014
server: hk4.catzz.top
type: anytls
udp: true
sni: hk4.catzz.top
- alterId: 0
cipher: auto
name: 🇭🇰HK_5|3.8MB/s
network: tcp
port: 7754
server: efan.dnsefan04881.com
skip-cert-verify: false
tls: false
type: vmess
udp: true
uuid: 009e558d-3cf4-49d8-b5e4-82c9e14fe1a4
xudp: true
- cipher: none
name: 🇭🇰HK_6|3.2MB/s
password: 3e96ef7d-8637-42c2-ac73-75182196e755
plugin: v2ray-plugin
plugin-opts:
host: mfvpn.fuchen.indevs.in
mode: websocket
mux: false
path: 3e96ef7d-8637-42c2-ac73-75182196e755/?ed=2560
skip-cert-verify: false
tls: true
port: 443
server: 47.57.182.141
skip-cert-verify: false
type: ss
udp: false
- client-fingerprint: chrome
encryption: none
name: 🇭🇰HK_7|2.8MB/s
network: ws
port: 443
server: 20.6.12.145
tls: true
type: vless
udp: true
uuid: 06b65903-406d-4a41-8463-6fd5c0ee7798
ws-opts:
headers:
Host: sni.skylee4.cloudns.ch
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
path: /proxyip=ProxyIP.CMLiussss.net
xudp: true
servername: sni.skylee4.cloudns.ch
- encryption: none
name: 🇭🇰HK_8|1.7MB/s
network: ws
port: 32322
server: ncgdbgp.gdsxrk.com
type: vless
udp: true
uuid: f2283069-a238-47e7-b837-e2eb63adfc57
ws-opts:
headers:
Host: azure.microsoft.com
User-Agent: Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
path: /static/js/main.js
xudp: true
- client-fingerprint: chrome
encryption: none
name: 🇭🇰HK_9|1.7MB/s
network: ws
port: 443
server: 104.17.156.229
tls: true
type: vless
udp: true
uuid: 5aa7d17e-7dc2-46dd-9acf-c3c97440259b
ws-opts:
headers:
Host: sss.yaml7.ggff.net
User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
path: /
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2048
xudp: true
servername: sss.yaml7.ggff.net
- client-fingerprint: chrome
name: 🇭🇰HK_10|874KB/s
network: ws
port: 8443
server: 83.229.121.78
tls: true
type: vless
udp: true
uuid: ce069292-c8bf-40dd-a6b1-87818a1e64e9
ws-opts:
headers:
Host: gsgsdgreyrehjsrteargsfhtrhsrwrhtruiekghmg.pages.dev
User-Agent: Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
path: /fp=chrome
xudp: true
servername: gsgsdgreyrehjsrteargsfhtrhsrwrhtruiekghmg.pages.dev
- client-fingerprint: chrome
name: 🇸🇬SG_1|5.5MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 8443
server: 46.29.234.91
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
encryption: none
name: 🇸🇬SG_2|4.1MB/s
network: ws
port: 443
server: 192.0.54.231
tls: true
type: vless
udp: true
uuid: 981fca81-5be1-41f8-ac9b-d138e8109943
ws-opts:
headers:
Host: babayaga-6i7.pages.dev
User-Agent: Mozilla/5.0 (Linux; Android 7.1.2; Redmi Note 5A Build/N2G47H; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/63.0.3239.111 Mobile Safari/537.36
path: /?ed=2560&Telegram🇨🇳@WangCai2
xudp: true
servername: babayaga-6i7.pages.dev
- cipher: none
name: 🇸🇬SG_3|3.4MB/s
password: 79960b0b-7d31-4263-8915-6511b0e137a8
plugin: v2ray-plugin
plugin-opts:
host: woshinidie-et3.pages.dev
mode: websocket
mux: false
path: /79960b0b-7d31-4263-8915-6511b0e137a8/?ed=2560
tls: true
port: 443
server: 8.35.211.116
type: ss
udp: true
- client-fingerprint: chrome
name: 🇸🇬SG_4|2.6MB/s
network: ws
password: t5x8f9w2k4m6n1p0
port: 443
server: 43.160.247.81
skip-cert-verify: false
sni: vpn5.rnmcnm.com
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36
path: /ws
- client-fingerprint: chrome
name: 🇸🇬SG_5|2.3MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 443
server: 185.104.151.181
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
encryption: none
name: 🇸🇬SG_6|2.1MB/s
network: ws
port: 2096
server: 8.39.125.96
skip-cert-verify: false
tls: true
type: vless
udp: true
uuid: df862b4c-2150-4b36-81ac-405036cf9ff6
ws-opts:
headers:
Host: kalami-eew.pages.dev
path: /
xudp: true
servername: kalami-eew.pages.dev
- client-fingerprint: chrome
name: 🇸🇬SG_7|2.1MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 8443
server: 180.149.37.38
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
name: 🇸🇬SG_8|1.9MB/s
network: ws
port: 41493
server: 158.178.225.153
tls: true
type: vless
udp: true
uuid: 00000000-0000-4000-8000-000000000000
ws-opts:
headers:
Host: 020g5uxcxmqlndg.luyuju.dpdns.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36
path: /%40Marisa_kristi
xudp: true
servername: 020g5uxcxmqlndg.luyuju.dpdns.org
- client-fingerprint: chrome
name: 🇸🇬SG_9|1.9MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 443
server: 206.189.147.60
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
name: 🇸🇬SG_10|1.9MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 443
server: 64.112.127.151
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Linux; Android 6.0.1; SM-J500M Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- encryption: none
name: 🇸🇬SG_11|1.7MB/s
network: ws
port: 80
server: cdn.tzpro.xyz
type: vless
udp: true
uuid: f2083aa4-f27d-43da-81cf-8bab31730400
ws-opts:
headers:
Host: germany.vipserver14.workers.dev
User-Agent: Mozilla/5.0 (Linux; Android 6.0; vivo 1610 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36
path: /
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2048
xudp: true
- client-fingerprint: chrome
name: 🇸🇬SG_12|1.4MB/s
network: ws
port: 443
server: 43.160.207.175
tls: true
type: vless
udp: true
uuid: 6202b230-417c-4d8e-b624-0f71afa9c75d
ws-opts:
headers:
Host: sni.111000.dns.army
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36
path: /?ed=2560&https://t.me/WangCai2🇨🇳
xudp: true
servername: sni.111000.dns.army
- client-fingerprint: chrome
name: 🇸🇬SG_13|1.4MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 2053
server: 46.102.156.144
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
name: 🇸🇬SG_14|1.4MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 2053
server: 38.180.194.222
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Linux; Android 7.0; SM-G610F Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- name: 🇸🇬SG_15|1.3MB/s
network: ws
port: 8080
server: 20.191.143.151
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: snippet.danfeng.com.cfd
path: /danfeng
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
servername: snippet.danfeng.com.cfd
- client-fingerprint: chrome
encryption: none
grpc-opts:
grpc-service-name: update
name: 🇸🇬SG_16|1.2MB/s
network: grpc
port: 10037
reality-opts:
public-key: wOu-BMrXvk9KX23JZrlpUlF4SMjDcejm0vNECdhy5xE
short-id: 686c0ef0
server: sg2-r.link-t7.com
tls: true
type: vless
udp: true
uuid: EF3507AC-123A-4A39-9B4C-7D9BD69F8913
xudp: true
servername: s0.awsstatic.com
- client-fingerprint: chrome
name: 🇸🇬SG_17|1.0MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 15124
server: 149.104.25.35
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
name: 🇸🇬SG_18|864KB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 443
server: 34.143.159.175
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: chrome
name: 🇸🇬SG_19|807KB/s
network: ws
port: 443
server: 5.223.72.12
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
User-Agent: Mozilla/5.0 (Linux; Android 6.0.1; SM-G532M Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36
path: /danfeng
xudp: true
servername: xfxl35a.node-edge.gfw.hidns.co
- client-fingerprint: chrome
name: 🇰🇷KR_1|3.4MB/s
network: ws
port: 30303
server: 211.197.101.56
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
User-Agent: Mozilla/5.0 (Linux; Android 6.0.1; SM-G532M Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36
path: /danfeng
xudp: true
servername: xfxl35a.node-edge.gfw.hidns.co
- client-fingerprint: chrome
name: 🇰🇷KR_2|3.0MB/s
network: ws
port: 23791
server: 183.105.104.149
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
User-Agent: Mozilla/5.0 (Linux; Android 6.0.1; SM-G532M Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/55.0.2883.91 Mobile Safari/537.36
path: /danfeng
xudp: true
servername: xfxl35a.node-edge.gfw.hidns.co
- client-fingerprint: chrome
name: 🇰🇷KR_3|2.9MB/s
network: ws
port: 20000
server: 121.158.68.235
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
path: /danfengfp=chrome
xudp: true
servername: xfxl35a.node-edge.gfw.hidns.co
- client-fingerprint: chrome
name: 🇰🇷KR_4|2.8MB/s
network: ws
port: 15714
server: 183.104.92.31
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
path: /danfeng
xudp: true
servername: xfxl35a.node-edge.gfw.hidns.co
- client-fingerprint: chrome
ech-opts:
enable: true
query-server-name: encryptedsni.com
name: 🇰🇷KR_5|1.2MB/s
network: ws
port: 10162
server: 121.137.41.206
skip-cert-verify: false
tfo: false
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
early-data-header-name: Sec-WebSocket-Protocol
headers:
Host: xfxl35a.node-edge.gfw.hidns.co
max-early-data: 2560
path: /danfeng
servername: xfxl35a.node-edge.gfw.hidns.co
- cipher: aes-256-cfb
name: 🇰🇷KR_6|1.2MB/s
password: f8f7aCzcPKbsF8p3
port: 989
server: 154.90.63.177
type: ss
- name: 🇰🇷KR_7|1.2MB/s
port: 1090
server: 121.169.46.116
tls: false
type: socks5
username: Og%3D%3D
- cipher: none
name: 🇯🇵JP_1|2.8MB/s
password: 79960b0b-7d31-4263-8915-6511b0e137a8
plugin: v2ray-plugin
plugin-opts:
host: woshinidie-et3.pages.dev
mode: websocket
mux: false
path: /79960b0b-7d31-4263-8915-6511b0e137a8/?ed=2560
tls: true
port: 443
server: 162.159.45.203
type: ss
udp: true
- name: 🇯🇵JP_2|2.6MB/s
obfs: salamander
obfs-password: CF7WJGiw6r1c8imX
password: 48b36b6a-eaa6-4843-9231-0bb8b38b5da5
port: 5443
server: jp-hy2.onetaplink.app
sni: hy2-jp.onetaplink.app
type: hysteria2
- client-fingerprint: chrome
name: 🇯🇵JP_3|2.2MB/s
network: ws
port: 13600
server: 38.47.109.132
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: b.8.q.1.z.7.c.5.y.k.2.v.x.0.a.m.6.n.d.h.3.h.u.9.danfeng.rr.kg
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36
path: /danfeng
xudp: true
servername: b.8.q.1.z.7.c.5.y.k.2.v.x.0.a.m.6.n.d.h.3.h.u.9.danfeng.rr.kg
- client-fingerprint: chrome
encryption: none
grpc-opts:
grpc-service-name: update
name: 🇯🇵JP_4|2.1MB/s
network: grpc
port: 10032
reality-opts:
public-key: wOu-BMrXvk9KX23JZrlpUlF4SMjDcejm0vNECdhy5xE
short-id: 686c0ef0
server: jp2-r.link-t7.com
tls: true
type: vless
udp: true
uuid: EF3507AC-123A-4A39-9B4C-7D9BD69F8913
xudp: true
servername: s0.awsstatic.com
- name: 🇯🇵JP_5|2.1MB/s
network: ws
port: 10144
server: 38.47.125.41
skip-cert-verify: false
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: yvl5fy.data-cache.chinam.indevs.in
path: /danfeng
xudp: true
servername: yvl5fy.data-cache.chinam.indevs.in
- client-fingerprint: random
name: 🇯🇵JP_6|2.0MB/s
network: ws
port: 443
server: 162.159.39.19
tls: true
type: vless
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
early-data-header-name: Sec-WebSocket-Protocol
headers:
Host: snippet.danfeng.com.cfd
max-early-data: 2560
path: /danfeng
servername: snippet.danfeng.com.cfd
- name: 🇯🇵JP_7|1.9MB/s
network: ws
port: 443
server: 162.159.44.233
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: snippet.danfeng.com.cfd
path: /danfeng
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
servername: snippet.danfeng.com.cfd
- name: 🇯🇵JP_8|1.9MB/s
network: ws
port: 443
server: 162.159.45.107
tls: true
type: vless
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
early-data-header-name: Sec-WebSocket-Protocol
headers:
Host: snippet.danfeng.com.cfd
max-early-data: 2560
path: /danfeng
servername: snippet.danfeng.com.cfd
- name: 🇯🇵JP_9|1.5MB/s
password: f8eca8df-a1a5-4918-a194-d34112a3673f
port: 443
server: jdataU654714155239871.jcdn.cdnxiaohongshu.com
tls: true
type: http
username: f8eca8df-a1a5-4918-a194-d34112a3673f
sni: jdataU654714155239871.jcdn.cdnxiaohongshu.com
- cipher: none
name: 🇯🇵JP_10|1.2MB/s
password: 79960b0b-7d31-4263-8915-6511b0e137a8
plugin: v2ray-plugin
plugin-opts:
host: woshinidie-et3.pages.dev
mode: websocket
mux: false
path: /79960b0b-7d31-4263-8915-6511b0e137a8/?ed=2560
tls: true
port: 443
server: 162.159.39.31
type: ss
udp: true
- name: 🇯🇵JP_11|1.1MB/s
network: ws
port: 2096
server: 108.162.198.24
tls: true
type: vless
udp: true
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts:
headers:
Host: snippet.danfeng.com.cfd
path: /danfeng
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
servername: snippet.danfeng.com.cfd
- client-fingerprint: ios
encryption: none
flow: xtls-rprx-vision
name: 🇯🇵JP_12|1017KB/s
network: tcp
port: 443
reality-opts:
public-key: yzIdIf5RpR-rTzlULRjJoCgcQdx3-yXKl7eT7IuThn4
short-id: bb9ab0d5242d53e9
server: kb.vmjp2.yydjc.top
tls: true
type: vless
udp: true
uuid: 57d24033-f998-45c1-b973-16747ea76ce9
xudp: true
servername: iosapps.itunes.apple.com
- client-fingerprint: chrome
name: 🇯🇵JP_13|994KB/s
network: ws
port: 443
server: 85.155.176.129
tls: true
type: vless
udp: true
uuid: ce069292-c8bf-40dd-a6b1-87818a1e64e9
ws-opts:
headers:
Host: 2-eox.pages.dev
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36
path: /
xudp: true
servername: 2-eox.pages.dev
- name: 🇨🇳TW_1|1.0MB/s
password: 06a6909e-671e-4437-98dd-03dc47d389f0
port: 40072
server: tw2.catzl.top
type: anytls
udp: true
sni: tw2.catzl.top
- client-fingerprint: random
encryption: none
name: 🇺🇸US_1|4.0MB/s
network: ws
port: 443
server: shopify.com
tls: true
type: vless
udp: true
uuid: 04c808e2-0b59-47b0-a54b-32fc7ef1c902
ws-opts:
headers:
Host: misaka.cndyw.ggff.net
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
path: /
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
xudp: true
servername: misaka.cndyw.ggff.net
- encryption: none
name: 🇺🇸US_2|3.9MB/s
network: ws
port: 2082
server: 104.19.222.169
type: vless
udp: true
uuid: ef23616d-8a9d-4b22-b2f5-9bda864de179
ws-opts:
headers:
Host: index.arcane509.workers.dev
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
path: /gfdn0yadxgfr
xudp: true
- client-fingerprint: random
encryption: none
name: 🇺🇸US_3|3.9MB/s
network: ws
port: 443
server: www.visa.co.jp
tls: true
type: vless
udp: true
uuid: 04c808e2-0b59-47b0-a54b-32fc7ef1c902
ws-opts:
headers:
Host: misaka.cndyw.ggff.net
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36
path: /
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
xudp: true
servername: misaka.cndyw.ggff.net
- client-fingerprint: chrome
encryption: none
flow: xtls-rprx-vision
http-opts:
headers: {}
path:
- /
name: 🇺🇸US_4|3.7MB/s
network: tcp
port: 1443
reality-opts:
public-key: 2-PK2RY8YRcxqD01Me8ZSRK91iSgE3Zls2P0WFwxqig
short-id: b8a8f008c9
server: de19.fastlanehosting.ru
tls: true
type: vless
udp: true
uuid: 7e4d0612-41b5-4b44-a8f1-1f7cda6b6f78
xudp: true
servername: eh.vk.com
- cipher: none
name: 🇺🇸US_5|3.4MB/s
password: 79960b0b-7d31-4263-8915-6511b0e137a8
plugin: v2ray-plugin
plugin-opts:
host: woshinidie-et3.pages.dev
mode: websocket
mux: false
path: /79960b0b-7d31-4263-8915-6511b0e137a8/?ed=2560
tls: true
port: 443
server: 89.169.8.223
type: ss
udp: true
- cipher: none
name: 🇺🇸US_6|3.4MB/s
password: 79960b0b-7d31-4263-8915-6511b0e137a8
plugin: v2ray-plugin
plugin-opts:
host: woshinidie-et3.pages.dev
mode: websocket
mux: false
path: /79960b0b-7d31-4263-8915-6511b0e137a8/?ed=2560
tls: true
port: 443
server: 104.17.53.235
type: ss
udp: true
- client-fingerprint: chrome
name: 🇺🇸US_7|2.8MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 2053
server: 31.15.17.129
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: random
encryption: none
flow: xtls-rprx-vision
http-opts:
headers: {}
path:
- /
name: 🇺🇸US_8|2.8MB/s
network: tcp
port: 443
reality-opts:
public-key: DoZSKLwNQjogQMlE7oEEuB8TqpNa-umXzG-2Q6dTTEY
short-id: 4fa44664f6a566d3
server: se.milas.click
tls: true
type: vless
udp: true
uuid: 913c6074-a747-492b-a7e9-5abfcad6369d
xudp: true
servername: se.milas.click
- cipher: aes-128-gcm
name: 🇺🇸US_9|2.7MB/s
password: shadowsocks
port: 443
server: 37.19.198.160
type: ss
- client-fingerprint: chrome
encryption: none
flow: xtls-rprx-vision
http-opts:
headers: {}
path:
- /
name: 🇺🇸US_10|2.5MB/s
network: tcp
port: 443
reality-opts:
public-key: djH9iD2QV748ocK-wPH7HvDd03lu88zHhS4G-61w6Dc
short-id: a120
server: 144.31.131.33
tls: true
type: vless
udp: true
uuid: ae852d97-85f5-45cf-82a4-254eba345480
xudp: true
servername: cdn.cdnjst.org
- cipher: aes-128-gcm
name: 🇺🇸US_11|2.3MB/s
password: shadowsocks
port: 443
server: 156.146.38.169
type: ss
- client-fingerprint: chrome
encryption: none
flow: xtls-rprx-vision
http-opts:
headers: {}
path:
- /
name: 🇺🇸US_12|2.0MB/s
network: tcp
port: 443
reality-opts:
public-key: eviE8juc95l6ayL84WVaXDLwb9VmI0UNpb-AmLhn9Gs
short-id: 47da4aebbec6aef6
server: estinode.lumixnet.com
tls: true
type: vless
udp: true
uuid: a534ec08-6c69-4b36-b7e6-7f6651d30265
xudp: true
servername: estinode.lumixnet.com
- cipher: aes-128-gcm
name: 🇺🇸US_13|1.9MB/s
password: shadowsocks
port: 443
server: 156.146.38.168
type: ss
- client-fingerprint: chrome
flow: xtls-rprx-vision
http-opts:
headers: {}
path:
- /
name: 🇺🇸US_14|1.9MB/s
network: tcp
port: 443
reality-opts:
public-key: djH9iD2QV748ocK-wPH7HvDd03lu88zHhS4G-61w6Dc
short-id: a120
server: cdn.cdnjst.org
tls: true
type: vless
udp: true
uuid: ae852d97-85f5-45cf-82a4-254eba345480
xudp: true
servername: cdn.cdnjst.org
- client-fingerprint: chrome
encryption: none
name: 🇺🇸US_15|1.7MB/s
network: xhttp
port: 443
reality-opts:
public-key: i2woqyB_equDtt2Vr4QPgehnb4quPd8aD8SsYuqFeyo
short-id: 0123456789abcdef
server: vps-vmiss-usa.maze-maker.com
tls: true
type: vless
udp: true
uuid: 13233743-204d-41d6-a5f9-d82f4d7d3c90
xhttp-opts:
host: www.microsoft.com
mode: auto
path: /
xudp: true
servername: www.microsoft.com
- client-fingerprint: chrome
name: 🇺🇸US_16|1.6MB/s
network: ws
password: 8r<[9'l6hAO#8ZQi
port: 443
server: 77.37.96.247
skip-cert-verify: true
sni: Koma-YT.PAGeS.Dev
type: trojan
udp: true
ws-opts:
headers:
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
path: /trTelegram🇨🇳 @WangCai2
- client-fingerprint: random
encryption: none
name: 🇺🇸US_17|1.5MB/s
network: ws
port: 443
server: www.glassdoor.com
tls: true
type: vless
udp: true
uuid: 04c808e2-0b59-47b0-a54b-32fc7ef1c902
ws-opts:
headers:
Host: misaka.cndyw.ggff.net
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36
path: /
early-data-header-name: Sec-WebSocket-Protocol
max-early-data: 2560
xudp: true
servername: misaka.cndyw.ggff.net
- alterId: 0
cipher: auto
client-fingerprint: safari
name: 🇺🇸US_18|1.4MB/s
network: tcp
port: 1233
server: 134.199.221.41
skip-cert-verify: true
tls: true
type: vmess
udp: true
uuid: 9b6419f8-8120-442e-a48c-6bf52aef0abf
servername: gb.uniquenames.net
- client-fingerprint: random
name: 🇺🇸US_19|1.3MB/s
network: ws
port: 2096
server: 49.238.238.152
tls: true
type: vless
uuid: 26524cce-d514-4014-a426-365fb266a14d
ws-opts: