-
Notifications
You must be signed in to change notification settings - Fork 227
/
list.meta.yml
7898 lines (7898 loc) · 317 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-08 05:12
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-1
password: amazonskr05
port: 443
server: 3.35.206.24
type: ss
- cipher: aes-256-gcm
name: 0|-https://t.me/MrXbin-3
password: zDNVedRFPQexG9v
port: 6379
server: 38.110.1.46
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-4
password: amazonskr05
port: 443
server: 34.219.132.251
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-5
password: amazonskr05
port: 443
server: 35.85.36.208
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-7
password: qwerREWQ@@
port: 41748
server: p230.panda004.net
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-8
password: qwerREWQ@@
port: 40915
server: 168.126.234.233
type: ss
- cipher: aes-256-gcm
name: 0|-https://t.me/MrXbin-9
password: TEzjfAYq2IjtuoS
port: 6679
server: 38.110.1.46
type: ss
- cipher: chacha20-ietf
name: 0|-https://t.me/MrXbin-10
password: asd123456
port: 8388
server: 103.36.91.32
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-11
password: qwerREWQ@@
port: 3231
server: 210.217.18.70
type: ss
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-12
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 107.155.57.11
type: ss
udp: true
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-13
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 146.70.61.18
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-14
password: TN2YqghxeFDKZfLU
port: 9037
server: 217.30.10.18
type: ss
udp: true
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-15
password: 14fFPrbezE3HDZzsMOr6
port: 8080
server: 194.5.215.59
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-16
password: f8f7aCzcPKbsF8p3
port: 989
server: 51.15.15.82
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-17
password: amazonskr05
port: 443
server: 34.222.132.123
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-18
password: qwerREWQ@@
port: 3231
server: p239.panda004.net
type: ss
udp: true
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-19
password: amazonskr05
port: 443
server: 52.32.68.164
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-20
password: amazonskr05
port: 443
server: 34.222.136.128
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-21
password: qwerREWQ@@
port: 41748
server: 221.150.109.90
type: ss
- cipher: aes-256-gcm
name: 0|-https://t.me/MrXbin-22
password: PCnnH6SQSnfoS27
port: 8091
server: 38.110.1.46
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-23
password: amazonskr05
port: 443
server: 13.250.115.217
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-24
password: amazonskr05
port: 443
server: 54.178.84.59
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-25
password: amazonskr05
port: 443
server: 34.213.242.165
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-26
password: amazonskr05
port: 443
server: 35.85.33.177
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-27
password: amazonskr05
port: 443
server: 34.211.229.86
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-28
password: amazonskr05
port: 443
server: 54.179.186.199
type: ss
- cipher: aes-256-cfb
name: 0|-https://t.me/MrXbin-29
password: amazonskr05
port: 443
server: 52.79.73.137
type: ss
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-31
obfs: tls1.2_ticket_auth
password: Cskw6d
port: 13629
protocol: auth_aes128_md5
protocol-param: 524959:5u4MZ6
server: bb29cs.cdn.node.a.tddns-ounk.com
type: ssr
- cipher: rc4-md5
name: 0|-https://t.me/MrXbin-33
obfs: tls1.2_ticket_auth
password: Cskw6d
port: 13318
protocol: auth_aes128_md5
protocol-param: 524959:5u4MZ6
server: lld9k6.cdn.node.a.tddns-ounk.com
type: ssr
- cipher: aes-128-cfb
name: 0|-https://t.me/MrXbin-36
obfs: http_post
password: $$Turb0VPN$$
port: 443
protocol: auth_aes128_md5
server: ssca.irundns.net
type: ssr
- cipher: aes-128-cfb
name: 0|-https://t.me/MrXbin-37
obfs: http_post
password: +asd6a5s5df+
port: 443
protocol: auth_aes128_md5
server: nsus3.irundns.net
type: ssr
- alterId: 0
cipher: auto
h2-opts: {}
http-opts: {}
name: 0|-https://t.me/MrXbin-49
network: ws
port: 10881
server: 5.39.252.204
skip-cert-verify: true
type: vmess
uuid: 71db106c-0d2f-4733-87cc-cba657b387e9
ws-opts: {}
- 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|MCI-@V2ray_Raha-6
password: 1c0b8d7b-5617-4a07-acd2-315da2340ec9
port: 443
server: 209.141.42.49
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 8|MCI-V2ray_Alpha-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-V2ray_Alpha-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-@V2ray_Alpha-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-V2ray_Alpha-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-V2ray_Alpha-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_Alpha-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-@V2ray_Alpha-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-@V2ray_Alpha-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|@V2ray1_Ng
password: ThisIsNotForSale-Free$ervice
port: 443
server: api.tg8lnk.tech
skip-cert-verify: true
tls: false
type: hysteria2
- name: 8|@proxy_shadosocks🚀
obfs: salamander
obfs-password: 64da92df31fc63c1
password: c76f08e20fb6368b
port: 11122
server: 150.241.77.182
skip-cert-verify: true
sni: www.google.com
tls: false
type: hysteria2
- name: 8|MCI-V2ray_Alpha-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_Alpha-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-V2ray_Alpha-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|MCI-@V2ray_Alpha-6 #1'
password: dongtaiwang.com
port: 50717
server: 46.17.41.189
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 8|All-@V2ray_Raha-1
password: e1c77eb5-eacd-4afd-8da3-9fd2c1d3b499
port: 1001
server: br.1010520.xyz
skip-cert-verify: false
sni: br.1010520.xyz
tls: false
type: hysteria2
- name: 8|MCI-@V2ray_Raha-2
password: e442664a-ff50-4457-ab27-66a34055934a
port: 443
server: kaikaixinxin-us.legeth.xyz
skip-cert-verify: false
sni: kaikaixinxin-us.legeth.xyz
tls: false
type: hysteria2
- name: 8|IR-@V2ray_Alpha-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: 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|tg频道:@ripaojiedian
port: 4000
server: ftq.ink
tls: true
type: http
- name: 13,14|香港2|@ripaojiedian
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
- cipher: aes-256-gcm
name: 13|🇭🇰 香港6|@ripaojiedian
password: e3e6bacf-030c-4bcd-b9ab-9fd29eec4dfd
port: 30018
server: 114.132.40.118
tfo: false
type: ss
- name: 13,14|香港7|@ripaojiedian
network: tcp
password: 243eab52-9ac1-405c-887c-eb112c0985b8
port: 443
server: hk03.trojanyyds.xyz
skip-cert-verify: false
sni: hk03.trojanyyds.xyz
type: trojan
- cipher: aes-256-gcm
name: 13|🇭🇰 香港8|@ripaojiedian
password: 6LE2F7E2WQWGJEYG
port: 15003
server: qh62onjn.slashdevslashnetslashtun.net
tfo: false
type: ss
- cipher: aes-256-gcm
name: 13|🇭🇰 香港9|@ripaojiedian
password: Y4JZ69NZ4IMSVWMC
port: 15011
server: qh62onjn.slashdevslashnetslashtun.net
tfo: false
type: ss
- name: 13,14|台湾|@ripaojiedian
network: tcp
password: 243eab52-9ac1-405c-887c-eb112c0985b8
port: 443
server: tw01.trojanyyds.xyz
skip-cert-verify: false
sni: tw01.trojanyyds.xyz
type: trojan
- cipher: aes-256-gcm
name: 13|🇯🇵 日本|@ripaojiedian
password: U5GAQMMIFQ2FD44A
port: 18003
server: qh62onjn.slashdevslashnetslashtun.net
tfo: false
type: ss
- cipher: aes-256-cfb
name: 13|🇰🇷 韩国|@ripaojiedian
password: qwerREWQ@@
port: 58368
server: p199.panda003.net
tfo: false
type: ss
- cipher: aes-256-gcm
name: 13|🇸🇬 新加坡|@ripaojiedian
password: W6L2Z5COWF4TGC8S
port: 16015
server: qh62onjn.slashdevslashnetslashtun.net
tfo: false
type: ss
- name: 13,14|新加坡3|@ripaojiedian
network: tcp
password: '3723507166611775488'
port: 443
server: major-reindeer.boa152.lol
skip-cert-verify: false
sni: major-reindeer.boa152.lol
type: trojan
- alterId: 64
cipher: auto
name: 13|🇺🇸 美国|@ripaojiedian
port: 52112
server: 183.236.51.23
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- cipher: aes-256-gcm
name: 13|🇺🇸 美国2|@ripaojiedian
password: IY8P2O7XIQZVL9JE
port: 17001
server: 8tv68qhq.slashdevslashnetslashtun.net
tfo: false
type: ss
- cipher: aes-256-cfb
name: 13|🇯🇵 日本特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 18.182.64.182
tfo: false
type: ss
- cipher: aes-256-cfb
name: 13|🇸🇬 狮城特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 52.196.112.58
tfo: false
type: ss
- cipher: aes-256-cfb
name: 13|🇰🇷 韩国特殊|@ripaojiedian
password: amazonskr05
port: 443
server: 13.114.140.185
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
- alterId: 64
cipher: auto
name: 14|美国|@ripaojiedian
network: tcp
port: '52112'
server: 183.236.51.23
servername: ''
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: 15|AU_speednode_0001
network: ws
port: 443
server: 20.211.64.15
servername: bdfgfrtt7.azurewebsites.net
skip-cert-verify: false
tls: true
type: vless
uuid: 6f995056-7802-4a1d-bff7-61678e626c3f
ws-opts:
headers:
Host: bdfgfrtt7.azurewebsites.net
path: /
- alpn:
- h3
- h2
- http/1.1
name: 15|CH_speednode_0002
network: ws
port: 443
server: 138.124.53.161
servername: ad4.transitkala.com
skip-cert-verify: false
tls: true
type: vless
uuid: 0ea2f1b5-48c5-40c2-8496-5fdf856caafe
ws-opts:
headers:
Host: ad4.transitkala.com
path: /
- alpn:
- h3
- h2
- http/1.1
name: 15|CH_speednode_0003
network: ws
port: 443
server: 138.124.54.108
servername: ad4.transitkala.com
skip-cert-verify: false
tls: true
type: vless
uuid: 0ea2f1b5-48c5-40c2-8496-5fdf856caafe
ws-opts:
headers:
Host: ad4.transitkala.com
path: /
- name: 15|CN_speednode_0030
password: lovemm.23
port: 22888
server: 42.192.52.227
type: socks5
username: zeaslity
- name: 15|CN_speednode_0032
password: lovemm.23
port: 22889
server: 42.192.52.227
type: socks5
username: zeaslity
- name: 15|CZ_speednode_0033
network: ws
port: 8000
server: 194.87.11.56
servername: a.mifeng.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.mifeng.us.kg
path: /?ed=2560
- http-opts:
headers:
Host:
- telewebion.com
method: GET
path:
- /
name: 15|DE_speednode_0034
network: http
port: 22671
server: 51.75.91.71
servername: telewebion.com
skip-cert-verify: false
tls: false
type: vless
uuid: e56a9c60-30d7-4d5c-b2ea-22d72c22d7ea
- alpn:
- h3
- h2
- http/1.1
name: 15|DE_speednode_0036
network: ws
port: 443
server: 159.69.103.177
servername: ad4.transitkala.com
skip-cert-verify: false
tls: true
type: vless
uuid: 0ea2f1b5-48c5-40c2-8496-5fdf856caafe
ws-opts:
headers:
Host: ad4.transitkala.com
path: /
- name: 15|DE_speednode_0037
network: ws
port: 443
server: 212.224.93.93
servername: blog.codegethub.org
skip-cert-verify: false
tls: true
type: vless
uuid: 14ba4514-3846-45c0-aec6-444e5451b95c
ws-opts:
headers:
Host: blog.codegethub.org
path: /ws@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel----@PersiaTM_Channel
- name: 15|DE_speednode_0038
network: ws
port: 1001
server: 159.69.22.135
servername: a.mifeng.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.mifeng.us.kg
path: /?ed=2560
- http-opts:
headers:
Host:
- speedtest.net
method: GET
path:
- /
name: 15|DE_speednode_0039
network: http
port: 80
server: 2na9noed62ec.dopraxrocks.com
servername: speedtest.net
skip-cert-verify: false
tls: false
type: vless
uuid: ac5c6ba6-e11e-4162-b5bc-3660e3977cac
- http-opts:
headers:
Host:
- Speedtest.net
method: GET
path:
- /
name: 15|DE_speednode_0040
network: http
port: 1010
server: 159.69.35.198
servername: Speedtest.net
skip-cert-verify: false
tls: false
type: vless
uuid: d2ab7136-f995-40b8-8b59-4f2ef0c5d590
- name: 15|DE_speednode_0041
network: ws
port: 80
server: 57.129.0.208
skip-cert-verify: false
tls: false
type: vless
uuid: a835df0f-6b89-46e1-a2a0-c08907d5a524
- name: 15|ES_speednode_0043
network: ws
port: 8080
server: 94.250.246.200
servername: a.mifeng.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.mifeng.us.kg
path: /?ed=2560
- name: 15|FR_speednode_0044
network: ws
port: 587
server: 193.243.147.107
servername: a.xn--i-sx6a60i.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.xn--i-sx6a60i.us.kg
path: /?ed=2560
- name: 15|GB_speednode_0046
network: ws
port: 8080
server: 109.61.95.21
servername: a.xn--i-sx6a60i.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.xn--i-sx6a60i.us.kg
path: /?ed=2560
- name: 15|HK_speednode_0047
network: ws
port: 443
server: 47.243.60.38
servername: a.xn--i-sx6a60i.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.xn--i-sx6a60i.us.kg
path: /?ed=2560
- name: 15|HK_speednode_0048
port: 4000
server: hk9.ftq.ink
tls: true
type: http
- name: 15|HK_speednode_0049
port: 443
server: 8.218.120.79
servername: 147135010103.sec19org.com
skip-cert-verify: false
tls: true
type: vless
uuid: 3b9bc773-05eb-4d5f-8c1f-57342c0c4f40
- alpn:
- h3
- h2
- http/1.1
http-opts:
headers:
Host:
- netflow.yoooka.lol
method: GET
path:
- /
name: 15|IR_speednode_0050
network: http
port: 10750
server: 193.107.48.105
servername: netflow.yoooka.lol
skip-cert-verify: false
tls: true
type: vless
uuid: fcdea945-f87c-4b34-9241-a33adc22af97
- http-opts:
headers:
Host:
- telewebion.com
method: GET
path:
- /
name: 15|IR_speednode_0051
network: http
port: 12358
server: 93.126.50.230
servername: telewebion.com
skip-cert-verify: false
tls: false
type: vless
uuid: a85ee1ad-cd82-4f4e-821a-1f6100215001
- name: 15|IR_speednode_0052
network: ws
port: 50067
server: 78.157.59.140
servername: MgbJP.divarcdn.com,LXHRl.snappfood.ir,3cubP.yjc.ir,XbifM.digikala.com,HL56Q.tic.ir
skip-cert-verify: false
tls: false
type: vless
uuid: 9e316ce0-8fd3-4058-bc5e-241f9c3a9f56
ws-opts:
headers:
Host: MgbJP.divarcdn.com,LXHRl.snappfood.ir,3cubP.yjc.ir,XbifM.digikala.com,HL56Q.tic.ir
path: /
- http-opts:
headers:
Host:
- fast.com
method: GET
path:
- /
name: 15|IR_speednode_0053
network: http
port: 34854
server: p3.daryashopvip.site
servername: fast.com
skip-cert-verify: false
tls: false
type: vless
uuid: 9ef8c0be-084c-4c57-bdba-ac888a5f3ade
- http-opts:
headers:
Host:
- fast.com
method: GET
path:
- /
name: 15|IR_speednode_0054
network: http
port: 33410
server: p2.daryashopvip.site
servername: fast.com
skip-cert-verify: false
tls: false
type: vless
uuid: 3398ed24-c8dc-4c10-b998-56f607aa0db5
- alpn:
- http/1.1
http-opts:
headers:
Host:
- m-net.speedtestcustom.com
method: GET
path:
- /
name: 15|IR_speednode_0055
network: http
port: 10750
server: 193.107.48.105
servername: netflow.yoooka.lol
skip-cert-verify: false
tls: true
type: vless
uuid: fcdea945-f87c-4b34-9241-a33adc22af97
- http-opts:
headers:
Host:
- fast.com
method: GET
path:
- /
name: 15|IR_speednode_0056
network: http
port: 443
server: p1.daryashopvip.site
servername: fast.com
skip-cert-verify: false
tls: false
type: vless
uuid: 944c6cec-9763-4852-bb7c-023ca7d8603d
- name: 15|JP_speednode_0057
network: ws
port: 443
server: 64.110.104.30
servername: a.xn--i-sx6a60i.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.xn--i-sx6a60i.us.kg
path: /?ed=2560
- name: 15|JP_speednode_0058
network: ws
port: 8889
server: 160.16.242.208
servername: a.mifeng.us.kg
skip-cert-verify: false
tls: true
type: vless
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.mifeng.us.kg
path: /?ed=2560
- name: 15|KR_speednode_0059