-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathlist.meta.yml
More file actions
11592 lines (11592 loc) · 465 KB
/
Copy pathlist.meta.yml
File metadata and controls
11592 lines (11592 loc) · 465 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-08-18 11:12
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
external-controller: 0.0.0.0:9090
global-client-fingerprint: chrome
ipv6: true
log-level: warning
mixed-port: 7890
mode: rule
proxies:
- name: 8|荷兰
password: 085178e12d2211ec
port: 8445
server: nl.prisma-access.club
sni: nl.prisma-access.club
tls: false
type: hysteria2
- name: 8,9|🇵🇱|PL|@wxgqlfx|125
password: 08794874-93d0-4cf2-b9d6-1f2774cdffeb
port: 2101
server: 144.31.5.9
skip-cert-verify: true
sni: panel.vlessbotkey.ru
tls: false
type: hysteria2
- name: 8|未命名
password: 22d891f5-ad85-4824-b0b8-e30cf3d37eb5
port: 2056
server: db1.mangshe.xyz
sni: db1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|DK
password: 22d891f5-ad85-4824-b0b8-e30cf3d37eb5
port: 2056
server: lsj1.mangshe.xyz
skip-cert-verify: true
sni: lsj1.mangshe.xyz
tls: false
type: hysteria2
- name: 8|SG
password: 22d891f5-ad85-4824-b0b8-e30cf3d37eb5
port: 2060
server: xjp4.mangshe.xyz
skip-cert-verify: true
sni: xjp4.mangshe.xyz
tls: false
type: hysteria2
- name: 8|波兰
obfs: salamander
obfs-password: 1yvnm8sv41
password: 2b5f7fc3d38f4798a0f62d4ef8876528
port: 443
server: pl6.lckdwn.ru
skip-cert-verify: true
sni: pl6.lckdwn.ru
tls: false
type: hysteria2
- name: 8,9|🌀75@oneclickvpnkeys
password: 425e9e31-b017-4e32-bbd3-656473466d5e
port: 2443
server: latvia.koalaexpress.ru
skip-cert-verify: true
sni: latvia.koalaexpress.ru
tls: false
type: hysteria2
- name: '8|未命名 #2'
password: 4e756809
port: 12694
server: 92.4.68.18
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: '8|未命名 #3'
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: at133.mechvpn.online
sni: at133.mechvpn.online
tls: false
type: hysteria2
- name: '8|荷兰 #1'
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: nl174.mechvpn.online
skip-cert-verify: true
sni: nl174.mechvpn.online
tls: false
type: hysteria2
- name: '8|荷兰 #2'
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: nl8.mechvpn.online
skip-cert-verify: true
sni: nl8.mechvpn.online
tls: false
type: hysteria2
- name: '8|未命名 #4'
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: us54.mechvpn.online
sni: us54.mechvpn.online
tls: false
type: hysteria2
- name: 8|🇸US
password: 553e3253-c454-431d-a7e6-42bc06ea5e14
port: 8443
server: srvhy1.ezcon24.online
skip-cert-verify: true
sni: srvhy1.ezcon24.online
tls: false
type: hysteria2
- name: 8,9| MTMVPN 14
password: 6f7a8009ecf6a12e10d03f9d88493c89
port: 55443
server: gorbachev-th.kvnfreetest.uk
skip-cert-verify: false
sni: gorbachev-th.kvnfreetest.uk
tls: false
type: hysteria2
- name: '8|未命名 #5'
password: 85a88b70b5f2f73d0dcac92bd3934a5e
port: 50160
server: 211.22.154.26
sni: 211-22-154-26.liao.kdns.fr
tls: false
type: hysteria2
- name: 8,9|🇺🇸|US|@wxgqlfx|16
password: 90af65ff00ef2ff089d28d6a11fc10de
port: 50160
server: 23-19-231-152.liao.kdns.fr
skip-cert-verify: true
sni: 23-19-231-152.liao.kdns.fr
tls: false
type: hysteria2
- name: '8|未命名 #6'
password: 95e8532b-cc69-42d4-9553-e3c23292b15b
port: 8443
server: 176.124.222.180
sni: j47lq.pleiades.codes
tls: false
type: hysteria2
- name: '8|未命名 #7'
password: 95e8532b-cc69-42d4-9553-e3c23292b15b
port: 8443
server: iq5ny.pleiades.codes
sni: iq5ny.pleiades.codes
tls: false
type: hysteria2
- name: '8,9|@Configvibes🇹🇷 #2'
obfs: salamander
obfs-password: Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------
password: '@Telegram@Configvibes'
port: 8486
server: 45.92.219.237
skip-cert-verify: true
sni: ftp.debian.org
tls: false
type: hysteria2
- name: '8|兰 #1'
password: Apt1923_N9x234gn_Nal5Nx3j_s
port: 8443
server: 222.167.212.80
sni: grape-power-pl.ddnsguru.com
tls: false
type: hysteria2
- name: 8|国
password: CJtE4HLmxz859YMNiZM1NTuDRy7jjs8t
port: 1443
server: pg-usa2-hy2.gigatapbot.top
skip-cert-verify: true
sni: pg-usa2-hy2.gigatapbot.top
tls: false
type: hysteria2
- name: 8,9|🇸|US|@wxgqlfx|16
password: H7mP2xY9kJ4nQ8wR5tF6vB3z
port: 443
server: 18.226.172.222
skip-cert-verify: true
sni: vpn-us-003.fastervpn.world
tls: false
type: hysteria2
- name: 8|🇰HK
password: H7mP2xY9kJ4nQ8wR5tF6vB3z
port: 443
server: 202.146.222.89
skip-cert-verify: true
tls: false
type: hysteria2
- name: 8|罗
password: Jz40_mIJ934vK0_k9D3jz92_Vx48q_GHa1_sz0
port: 8443
server: 85.204.107.164
sni: grape-zet-ro-turbo.bumbleshrimp.com
tls: false
type: hysteria2
- name: 8,9|🇷🇴|RO|@wxgqlfx|225
password: Jz40_mIJ934vK0_k9D3jz92_Vx48q_GHa1_sz0
port: 8443
server: 85.204.107.166
skip-cert-verify: true
sni: grape-zet-ro-turbo.bumbleshrimp.com
tls: false
type: hysteria2
- name: '8|国 #1'
password: Jz40_mIJ934vK0_k9D3jz92_Vx48q_GHa1_sz0
port: 8443
server: 93.114.194.122
sni: grape-zet-ro-turbo.bumbleshrimp.com
tls: false
type: hysteria2
- name: 8|法国
password: Krab9Hyst2_Rk7pQ2xL
port: 36723
server: fr.vpn.legendaah.xyz
skip-cert-verify: true
sni: www.cloudflare.com
tls: false
type: hysteria2
- name: '8|兰 #2'
password: Oz_Kx9342gefwJ89x3_M9z32kzf9KJq003_s
port: 8443
server: 86.107.178.69
sni: grape-zet-turbo-nl.yyuyy.com
tls: false
type: hysteria2
- name: '8|荷兰 #4'
password: Oz_Kx9342gefwJ89x3_M9z32kzf9KJq003_s
port: 8443
server: 86.107.178.72
sni: grape-zet-turbo-nl.yyuyy.com
tls: false
type: hysteria2
- name: '8|波兰 #1'
password: b11841e3-2acc-45ff-afe0-a9ed9a823aaa
port: 443
server: rpc-2068.internet-booster.com
sni: rpc-2068.internet-booster.com
tls: false
type: hysteria2
- name: 8|利亚
obfs: salamander
obfs-password: b42d90fa667942aebc734d60
password: b42d90fa667942aebc734d60
port: 443
server: 137.23.2.19
sni: rmgyvpn.rest
tls: false
type: hysteria2
- name: '8,9|اا تلگرام : Free_VPN_CH@'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 181.214.99.162
skip-cert-verify: false
sni: api.kermanshahi.org
tls: false
type: hysteria2
- name: 8,9|🇵|JP|@wxgqlfx|15
password: bc751c4c5c80f17dfbc05785c368b613
port: 50160
server: 154.31.115.179
skip-cert-verify: true
sni: 154-31-115-179.liao.kdns.fr
tls: false
type: hysteria2
- name: '8|国 #2'
password: c175d956-d1f4-4c53-b2b1-8493bf8529c6
port: 443
server: 87.120.84.189
sni: de1.apexvpn.space
tls: false
type: hysteria2
- name: '8|荷兰 #5'
obfs: salamander
obfs-password: 44f1c1e2f8b99e792ceed574627a1eb0
password: cd74c0a406664a5bc0bac098220a2468
port: 443
server: nl2.sferavpn.pro
skip-cert-verify: true
sni: nl2.sferavpn.pro
tls: false
type: hysteria2
- name: '8|美国 #1'
obfs: salamander
obfs-password: 44f1c1e2f8b99e792ceed574627a1eb0
password: cd74c0a406664a5bc0bac098220a2468
port: 443
server: node1.sferavpn.pro
sni: node1.sferavpn.pro
tls: false
type: hysteria2
- name: 8|德国
password: d1224950-ffab-4b9a-8696-431b40a6cfbd
port: 443
server: bel-03.node.lumixnet.com
sni: bel-03.node.lumixnet.com
tls: false
type: hysteria2
- name: '8|法国 #1'
password: d1a0857bc1eb833a9edf96be4c1f999e
port: 55443
server: host-vds2-fr.kvncococ.org
sni: host-vds2-fr.kvncococ.org
tls: false
type: hysteria2
- name: '8|波兰 #2'
password: df489ab2-2242-4952-a774-1074a3a31f41
port: 8443
server: eh-spl1.craft-supply.org
sni: eh-spl1.craft-supply.org
tls: false
type: hysteria2
- name: 8,9|🇰🇷|KR|@wxgqlfx|24
password: dfb54e674104158210fdfcac45e5679d
port: 50160
server: 193.122.104.200
skip-cert-verify: true
sni: 193-122-104-200.liao.kdns.fr
tls: false
type: hysteria2
- name: 8,9|🇪|DE|@wxgqlfx|182
password: dsfa_k0123WFzerrf_kZ3490VNb03J_m30_s
port: 8443
server: 194.180.188.21
skip-cert-verify: true
sni: keyhop-offshore.roxa.org
tls: false
type: hysteria2
- name: 8|芬兰
password: e0c7af35-e2db-47c7-b1a3-ce5ec0dd0474
port: 8458
server: hy2-fi.frdmhere.com
sni: hy2.frdmhere.com
tls: false
type: hysteria2
- name: '8|美国 #2'
password: e0c7af35-e2db-47c7-b1a3-ce5ec0dd0474
port: 8458
server: hy2-us.frdmhere.com
sni: hy2.frdmhere.com
tls: false
type: hysteria2
- name: '8|美国 #3'
password: fe475179-d8a8-420d-a4ac-3e415ed8dc72
port: 11683
server: uswx4.wxgqlfx.vip
skip-cert-verify: true
sni: 144.225.187.153
tls: false
type: hysteria2
- name: '8|荷兰 #6'
password: hysteria2_fastlane_9r63hua9f
port: 443
server: 144.31.135.204
sni: nl2.h.fastlanehosting.ru
tls: false
type: hysteria2
- name: 8,9|5🦁@oneclickvpnkeys
password: mkL3AfdSZIpTWRB9TcWPn9vywPGN89MRHg3ToRDj
port: 443
server: de.1.23.h2corp.org
skip-cert-verify: true
sni: germany3.h2corp.local
tls: false
type: hysteria2
- name: '8|荷兰 #7'
password: netherlands_3_hysteria2_fastlane_xr3nai71s
port: 443
server: 91.84.119.49
sni: nl4.h.fastlanehosting.ru
tls: false
type: hysteria2
- name: 8|🇺🇸139909 | Telegram = t.me/SOS...
password: qQe1z5kU8kN6SlKnDt9Ru3Qp
port: 443
server: 54.213.89.22
skip-cert-verify: true
sni: vk.com
tls: false
type: hysteria2
- name: '8|荷兰 #8'
password: s0_sdK93x9wer_D02Lz9cvK3_Sa014Oakl_C2z
port: 8443
server: 205.237.109.219
sni: grape-turbo-fr.roxa.org
tls: false
type: hysteria2
- name: '8|国 #3'
password: s0_sdK93x9wer_D02Lz9cvK3_Sa014Oakl_C2z
port: 8443
server: 205.237.109.221
sni: grape-turbo-fr.roxa.org
tls: false
type: hysteria2
- name: 8,9|🇦|AE|@wxgqlfx|211
password: sOiWCQ2AdIV0OWNuqQVyWp4JZnRxdyLROSjX
port: 443
server: cabinet.wwwinternetvideo.click
skip-cert-verify: true
sni: cabinet.wwwinternetvideo.click
tls: false
type: hysteria2
- name: 9|Proxy_mtm 24
password: 083417772bc618cd61f0cca23dd91680
port: 55443
server: gorbachev-new-th.kvnfreetest.uk
skip-cert-verify: false
sni: gorbachev-new-th.kvnfreetest.uk
tls: false
type: hysteria2
- name: 9|🇵🇱|PL|@wxgqlfx|128
password: 08794874-93d0-4cf2-b9d6-1f2774cdffeb
port: 2102
server: 144.31.5.9
skip-cert-verify: true
sni: panel.vlessbotkey.ru
tls: false
type: hysteria2
- alpn:
- h3
name: 9|Proxy_mtm 33
obfs: salamander
obfs-password: gu74jg3ym0e21zco
password: 09e4b638945d44bfa60b4fd00edad131
port: 52000
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: 9|@confiig_hub
obfs: salamander
obfs-password: dnwx30hvcobf7xcf
password: 0ansucp5k6aop125
port: 32950
server: 185.47.172.226
skip-cert-verify: false
sni: 185.47.172.226
tls: false
type: hysteria2
- name: 9||FI|@wxgqlfx|221
password: 133f76fc-a5ab-463e-b46d-9587d7137e55
port: 443
server: h2.vpnushka.lol
skip-cert-verify: true
sni: h2.vpnushka.lol
tls: false
type: hysteria2
- name: 9||US|@wxgqlfx|251
password: 133f76fc-a5ab-463e-b46d-9587d7137e55
port: 443
server: node3.vpnushka.lol
skip-cert-verify: true
sni: node3.vpnushka.lol
tls: false
type: hysteria2
- name: 9|🌀25@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl1.unlockvpn.online
sni: nl1.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀42@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl10.unlockvpn.online
sni: nl10.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀46@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl2.unlockvpn.online
sni: nl2.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀40@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl3.unlockvpn.online
sni: nl3.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀22@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl6.unlockvpn.online
sni: nl6.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀50@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl7.unlockvpn.online
sni: nl7.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀43@oneclickvpnkeys
password: 1f619326-cd93-4d6b-aebe-e0b5f8831d02
port: 10808
server: nl9.unlockvpn.online
sni: nl9.unlockvpn.online
tls: false
type: hysteria2
- name: 9|🌀37@oneclickvpnkeys
password: 22d891f5-ad85-4824-b0b8-e30cf3d37eb5
port: 2056
server: flkf3.mangshe.xyz
skip-cert-verify: true
sni: flkf3.mangshe.xyz
tls: false
type: hysteria2
- name: 9|🇩🇪|DE|@wxgqlfx|22
password: 22d891f5-ad85-4824-b0b8-e30cf3d37eb5
port: 2056
server: mg2.mangshe.xyz
skip-cert-verify: true
sni: mg2.mangshe.xyz
tls: false
type: hysteria2
- name: 9||KR|@wxgqlfx|23
password: 3d7634af8cb2c6cb4bac1c0efad8b43d
port: 50160
server: 152.67.200.82
skip-cert-verify: true
sni: 152-67-200-82.liao.kdns.fr
tls: false
type: hysteria2
- name: 9|V2RayyNGvpn🇨🇦
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: 4T3sB0DeFo
port: 38871
server: 51.79.91.52
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- alpn:
- h3
name: 9|MTMVPN 15
obfs: salamander
obfs-password: gu74jg3ym0e21zco
password: 4ff4adfb8e7a4bae9c959c54fa5af52f
port: 52000
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- alpn:
- h3
name: 9||AT|@wxgqlfx|216
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: at133.mechvpn.online
skip-cert-verify: true
sni: at133.mechvpn.online
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇦🇹|AT|@wxgqlfx|225
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: at164.mechvpn.online
skip-cert-verify: true
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇦🇹|AT|@wxgqlfx|224
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: at164.mechvpn.online
skip-cert-verify: true
sni: at164.mechvpn.online
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇦🇹|AT|@wxgqlfx|221
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: at188.mechvpn.online
skip-cert-verify: true
sni: at188.mechvpn.online
tls: false
type: hysteria2
- name: 9|🇩🇪|DE|@wxgqlfx|220
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: de120.mechvpn.online
skip-cert-verify: true
sni: de120.mechvpn.online
tls: false
type: hysteria2
- name: 9|🇩🇪|DE|@wxgqlfx|208
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: de200.mechvpn.online
skip-cert-verify: true
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇩🇪|DE|@wxgqlfx|223
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: fr131.mechvpn.online
skip-cert-verify: true
sni: fr131.mechvpn.online
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇱|NL|@wxgqlfx|218
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: nl174.mechvpn.online
skip-cert-verify: true
sni: nl174.mechvpn.online
tls: false
type: hysteria2
- alpn:
- h3
name: 9|🇳🇱|NL|@wxgqlfx|233
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: nl8.mechvpn.online
skip-cert-verify: true
sni: nl8.mechvpn.online
tls: false
type: hysteria2
- name: 9|🇪|SE|@wxgqlfx|238
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: us63.mechvpn.online
skip-cert-verify: true
sni: us63.mechvpn.online
tls: false
type: hysteria2
- name: 9|🇸🇪|SE|@wxgqlfx|213
password: 53c76647-14d1-4df5-99cb-be99ad2e6bd9
port: 443
server: us65.mechvpn.online
skip-cert-verify: true
sni: us65.mechvpn.online
tls: false
type: hysteria2
- name: 9|🇩🇪@FreakConfig
obfs: salamander
obfs-password: uw9b2qq5rx
password: 6aab8efdf13945829ae3699c342be406
port: 443
server: 31.76.80.69
skip-cert-verify: false
sni: fiproxy1.lockdwn.com
tls: false
type: hysteria2
- name: '9|@meliproxyy #1'
obfs: salamander
obfs-password: uw9b2qq5rx
password: 6aab8efdf13945829ae3699c342be406
port: 443
server: fiproxy1.lockdwn.com
skip-cert-verify: false
sni: fiproxy1.lockdwn.com
tls: false
type: hysteria2
- name: 9|🇮|FI|@wxgqlfx|222
password: 707db87b-9cbf-438f-b4c7-9d984c8e944a
port: 443
server: serv21.strettenvpn.com
skip-cert-verify: true
sni: serv21.strettenvpn.com
tls: false
type: hysteria2
- name: 9||GB|@wxgqlfx|19
password: 725bc0b69e720cd5a2cd209252507c6e
port: 50160
server: 94-229-64-108.liao.kdns.fr
skip-cert-verify: true
sni: 94-229-64-108.liao.kdns.fr
tls: false
type: hysteria2
- name: 9|94@oneclickvpnkeys
password: 76713d07-5a6b-49c2-abd8-bc450a2fa7fc
port: 443
server: usa1.spectrumproxy.shop
sni: usa1.spectrumproxy.shop
tls: false
type: hysteria2
- name: 9|1@wxgqlfx#3🦁@oneclickvpnkeys
password: 76c1579d-e996-473c-b23f-2c8301082602
port: 11683
server: 40t1.wxgqlfx.vip
skip-cert-verify: true
sni: 204.44.74.220
tls: false
type: hysteria2
- name: 9|🇺|RU|@wxgqlfx|229
password: 921db318-1694-4408-9cc7-c93df39f7f8e
port: 443
server: ru-i-2.monkeyisland.xyz
skip-cert-verify: true
sni: ru-i-2.monkeyisland.xyz
tls: false
type: hysteria2
- name: 9||RO|@wxgqlfx|219
password: 9Me_Jx935gnHx13_Nx45M_NYXe037js_Be4z
port: 8443
server: 162.249.124.104
skip-cert-verify: true
sni: mercedes-grape.yyuyy.com
tls: false
type: hysteria2
- name: '9|🇩🇪@FreakConfig #1'
obfs: salamander
obfs-password: AIbOe_791iQ4k6kPUgdsO7B9
password: 9cc2113e-6b5b-4ced-9c46-70cf78d2c599
port: 2096
server: dns.devmrzero.ir
skip-cert-verify: false
sni: a26738d5774ad803.devmrzero.ir
tls: false
type: hysteria2
- name: 9|@Configvibes🇹🇷
obfs: salamander
obfs-password: Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------
password: '@Tel@Configvibes'
port: 11504
server: 198.105.123.106
skip-cert-verify: true
sni: archive.ubuntu.com
tls: false
type: hysteria2
- name: '9|@Configvibes🇹🇷 #1'
obfs: salamander
obfs-password: Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes------Configvibes
password: '@Telegram@Configvibes'
port: 2096
server: 107.181.155.107
skip-cert-verify: true
sni: ftp.debian.org
tls: false
type: hysteria2
- name: 9|تلگرام ما MTMVPN 6
password: Apt1923_N9x234gn_Nal5Nx3j_s
port: 8443
server: 222.167.212.24
skip-cert-verify: false
sni: grape-power-pl.ddnsguru.com
tls: false
type: hysteria2
- name: 9|🦁99@oneclickvpnkeys
obfs: salamander
obfs-password: xK9mN2pLq5vR8wB3
password: B86A0475-AB74-44BE-8209-A67F85CBF52C
port: 443
server: us6.dexlos.com
sni: us6.dexlos.com
tls: false
type: hysteria2
- name: 9|🇫🇮|FI|@wxgqlfx|217
password: C91FbOXGY9XRymrcEebtax9R1Nj62UizoT8S6kCb7xwey8IE
port: 443
server: fast.wwwinternetvideo.click
skip-cert-verify: true
sni: fast.wwwinternetvideo.click
tls: false
type: hysteria2
- name: '9|@Configvibes🇹🇷 #3'
obfs: salamander
obfs-password: IL+pm5"K?4gef:Jvn8^G+:N,Neyy8
password: Configvibes
port: 2096
server: 107.181.155.107
skip-cert-verify: true
sni: ftp.debian.org
tls: false
type: hysteria2
- name: 9|🇨🇦V2RayyNGvpn🇨🇦
obfs: salamander
obfs-password: t-me-V2RayyNGvpn
password: IJMFOXhvbQ
port: 38871
server: 51.79.91.52
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 9|🇴|RO|@wxgqlfx|206
password: Jz40_mIJ934vK0_k9D3jz92_Vx48q_GHa1_sz0
port: 8443
server: 85.204.107.165
skip-cert-verify: true
sni: grape-zet-ro-turbo.bumbleshrimp.com
tls: false
type: hysteria2
- name: 9|+@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: 9|🇱|NL|@wxgqlfx|236
password: Oz_Kx9342gefwJ89x3_M9z32kzf9KJq003_s
port: 8443
server: 86.107.178.73
skip-cert-verify: true
sni: grape-zet-turbo-nl.yyuyy.com
tls: false
type: hysteria2
- name: 9|🇳🇱 - 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: 9|🇱|PL|@wxgqlfx|206
password: YutbgyXL1mGaSlBXDoEucWvYbrDCINgUcQ6R6_At5Pjr2xCc
port: 443
server: admin.wwwinternetvideo.click
skip-cert-verify: true
tls: false
type: hysteria2
- name: 9|🦁71@oneclickvpnkeys
password: YutbgyXL1mGaSlBXDoEucWvYbrDCINgUcQ6R6_At5Pjr2xCc
port: 443
server: admin.wwwinternetvideo.click
skip-cert-verify: true
sni: admin.wwwinternetvideo.click
tls: false
type: hysteria2
- name: 9|🇺🇸|US|@wxgqlfx|219
password: b41ad7f941ffce755cb8601bfd0f02ca
port: 50160
server: 35-209-199-239.liao.kdns.fr
skip-cert-verify: true
sni: 35-209-199-239.liao.kdns.fr
tls: false
type: hysteria2
- name: '9|کانال تلگرام : Free_VPN_CH@ #1'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 5.175.249.174
skip-cert-verify: false
sni: api.kermanshahi.org
tls: false
type: hysteria2
- alpn:
- h3
name: '9|کانال تلگرام : Free_VPN_CH@'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 5.175.249.174
skip-cert-verify: false
sni: api.kermanshahi.org
tls: false
type: hysteria2
- name: 9|🇱|NL|@wxgqlfx|18
password: c4a4d98d-8d64-4e76-bc50-096b07d82382
port: 443
server: 139.28.98.26
skip-cert-verify: true
sni: nl-hysteria.boxypn.com
tls: false
type: hysteria2
- name: 9|🇸|SG|@wxgqlfx|27
password: ce24c43947331f36746c1f692c3812e0
port: 50160
server: 129-150-54-169.liao.kdns.fr
skip-cert-verify: false
sni: 129-150-54-169.liao.kdns.fr
tls: false
type: hysteria2
- name: 9|🇰|HK|@wxgqlfx|222
password: d325f389-7bc9-4d6a-8a2b-7dd4f7ab6e9f
port: 443
server: ru.h.topbelka.ru
skip-cert-verify: true
sni: ru.h.topbelka.ru
tls: false
type: hysteria2
- name: '9|@bisto4_service : کانال تلگرام'
obfs: salamander
obfs-password: v8h63irhnay97090
password: d86efa900c2f4bb6bde662f1ef6413b8
port: 52029
server: assets.gateway-stream.com
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: 9|🦁14@oneclickvpnkeys
password: dbab9df7-5c0a-4726-8574-11e34972b67d
port: 33015
server: 86.53.105.117
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 9|🇵🇱|PL|@wxgqlfx|210
password: e8c93f75-4ed5-41b1-a32e-a846e54582e8
port: 8444
server: 191.44.90.4
skip-cert-verify: true
sni: premium-nl.geodema.network
tls: false
type: hysteria2
- name: 9|🇺🇸|US|@wxgqlfx|20
password: ed77b662dbdf1a817d5eb75ae940cac4
port: 50160
server: 198-46-188-116.liao.kdns.fr
skip-cert-verify: true
sni: 198-46-188-116.liao.kdns.fr
tls: false
type: hysteria2
- name: 9|🌀39@oneclickvpnkeys
password: f056b41dc9f2b516e333738d1345a6be46a8ca80a3870ffe
port: 443
server: n.nl.cleanersaz.help
skip-cert-verify: true
sni: n.nl.cleanersaz.help
tls: false
type: hysteria2
- name: 9|🇮|FI|@wxgqlfx|169
password: k-qZIMk71_90gFFSfFiP688PqB6yLxie
port: 43327
server: 2.27.42.66
skip-cert-verify: true
sni: gate-v1.not-a-projects.xyz
tls: false
type: hysteria2
- name: 9|🇫🇮@FreakConfig
obfs: salamander
obfs-password: gu74jg3ym0e21zco
password: m3bqxk03mg221yi2
port: 52000
server: 95.217.96.131
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: '9|@vmesskhodam #2'
obfs: salamander
obfs-password: fsc92dsh321o5h3r
password: m3bqxk03mg221yi2
port: 52016
server: 95.217.96.131
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: 9|@Napsternetvirani
obfs: salamander
obfs-password: 1wcfqg6gwoyxlplo
password: m3bqxk03mg221yi2
port: 52022
server: 95.217.96.131
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2
- name: '9|@vmesskhodam #4'
obfs: salamander
obfs-password: phos93w1zi0nj6uv
password: m3bqxk03mg221yi2
port: 52049
server: 95.217.96.131
skip-cert-verify: false
sni: assets.gateway-stream.com
tls: false
type: hysteria2