forked from chengaopan/AutoMergePublicNodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.meta.yml
More file actions
9556 lines (9556 loc) · 383 KB
/
list.meta.yml
File metadata and controls
9556 lines (9556 loc) · 383 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: 2025-11-05 10:17
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: '9,10|🇳🇱 - NL - @freeOnlineVPN #4'
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|@NoForcedheaven
obfs: salamander
obfs-password: 9242a8bf
password: a2678c97b8d79059
port: 443
server: 46.62.152.236
skip-cert-verify: true
tls: false
type: hysteria2
- name: '9|Channel id: @ShadowProxy66🇺🇸'
password: af7ddbb2-3567-11ec-bd7c-f23c913c8d2b
port: 443
server: 97cc76e9-t53wg0-tiqsce-t6fv.us.hyhuawei.com
sni: 97cc76e9-t53wg0-tiqsce-t6fv.us.hyhuawei.com
tls: false
type: hysteria2
- name: 9,10|🇺🇲@FreakConfig
password: c232f411-96b5-4b07-b2f7-66a434725ffb
port: 23891
server: 108.165.213.197
skip-cert-verify: true
sni: fus01.mistea.top
tls: false
type: hysteria2
- name: '9|Channel id: @ShadowProxy66🇺🇸 #2'
password: c6bccea3-2f03-4f3e-80f4-d6757f1f3f46
port: 41951
server: 192.3.60.176
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: '9|Channel id: @ShadowProxy66'
password: dcdd09ad-4519-46f7-8107-4c4290a9b2a3
port: 13805
server: 40.233.115.110
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: '9|Channel id: @ShadowProxy66🇭🇰'
password: f13f964e-f06c-11ec-a858-f23c91cfbbc9
port: 443
server: 119.236.85.21
skip-cert-verify: true
sni: WangCai.hk2.hyhuawei.com
tls: false
type: hysteria2
- name: 10|@Mr_Config_Group✌️
obfs: salamander
obfs-password: xFGh9dsyreJV9sMs1RUnFbwRdon
password: 10822856-7452-43ec-b35b-6f24ea33530f
port: 29662
server: chervhill.hajalii.com
skip-cert-verify: false
sni: chervhill.hajalii.com
tls: false
type: hysteria2
- name: 10|@V2rayNG3
password: '123456'
port: 443
server: 192.3.85.237
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #1'
password: 15cca331-9e92-449d-93b0-25f82203595f
port: 20309
server: gb.gomeow.online
skip-cert-verify: false
sni: gb.gomeow.online
tls: false
type: hysteria2
- name: 10|@FreakConfig
password: 20050105zhu
port: 51541
server: 204.44.110.129
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #2'
obfs: salamander
obfs-password: de8287cd33b05fa3
password: 22f2c759db51b3d0
port: 12122
server: 109.120.135.123
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|@sunflowerplato
password: 2429bee3-e0c1-47dd-b420-75e6512b184b
port: 30300
server: 129.153.59.26
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--15
password: 2429bee3-e0c1-47dd-b420-75e6512b184b
port: 30300
server: 40.233.82.111
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|MCI-@V2rayAlpha--2
password: 2b67ONZROv+fRVMxB94BSw==
port: 443
server: 5.231.70.79
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 10|https://t.me/Selinc
password: 30c075af-9555-4671-b70e-43e3cfb2e707
port: 7009
server: 31.57.241.25
skip-cert-verify: true
sni: d.eans.top
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2
obfs: salamander
obfs-password: v2raybluecrystal
password: 4VDmo53kWX
port: 18865
server: 185.219.81.33
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal
obfs: salamander
obfs-password: v2raybluecrystal
password: 4VDmo53kWX
port: 20675
server: 185.219.81.33
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal3
obfs: salamander
obfs-password: v2raybluecrystal
password: 4VDmo53kWX
port: 50757
server: 185.219.81.33
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--3
password: 4a25ab9e-66e3-435a-97a4-276b5c3a1947
port: 443
server: hk.xn--9kqw1xbnu.shop
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|@Selinc
password: 571ec94e-613c-430a-93de-397d3d237475
port: 22157
server: 195.133.79.116
skip-cert-verify: true
sni: ''
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--6
password: 571ec94e-613c-430a-93de-397d3d237475
port: 22157
server: 195.133.79.116
skip-cert-verify: true
sni: 🔒
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--9
password: 571ec94e-613c-430a-93de-397d3d237475
port: 22155
server: 213.108.198.123
skip-cert-verify: true
sni: hsdg.huasuan666.top
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--7
password: 571ec94e-613c-430a-93de-397d3d237475
port: 22155
server: hsdg.huasuan666.top
skip-cert-verify: true
sni: hsdg.huasuan666.top
tls: false
type: hysteria2
- name: 10|MCI-@V2rayAlpha--5
password: 571ec94e-613c-430a-93de-397d3d237475
port: 22157
server: hshl.huasuan666.top
skip-cert-verify: true
sni: hshl.huasuan666.top
tls: false
type: hysteria2
- name: '10|All-@V2rayAlpha--6 #1'
obfs: salamander
obfs-password: jjQQP9Av2l6BRdP5
password: 59f5893e-b85a-44f7-911f-bd0b3f92069b
port: 443
server: us11.588878.xyz
skip-cert-verify: true
sni: us11.588878.xyz
tls: false
type: hysteria2
- name: 10|MCi--@IRAN_V2RAY1
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 5f89ac2a-b6d6-4c66-98d8-39c4d552138c
port: 35000
server: 206.71.158.40
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--11
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 5f89ac2a-b6d6-4c66-98d8-39c4d552138c
port: 35000
server: 206.71.158.41
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: '10|MCi--@IRAN_V2RAY1 #1'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 5f89ac2a-b6d6-4c66-98d8-39c4d552138c
port: 35000
server: 77.90.41.197
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: '10|MCi--@IRAN_V2RAY1 #3'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 5f89ac2a-b6d6-4c66-98d8-39c4d552138c
port: 35000
server: dir.cybsecguru.com
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--7
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 680210f5-3b5f-4947-9983-e508a15cf169
port: 35000
server: 206.71.158.40
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: '10|All-@V2rayAlpha--8 #1'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 680210f5-3b5f-4947-9983-e508a15cf169
port: 35000
server: 206.71.158.41
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: 10|All-@V2ray_Alpha--2
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: 680210f5-3b5f-4947-9983-e508a15cf169
port: 35000
server: dir.cybsecguru.com
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: 10|telegram-@ISVvpn
password: 6803bc9b-1157-431b-8f73-970a6deb741f
port: 29854
server: fra-nb-02.linlujs.pw
skip-cert-verify: false
tls: false
type: hysteria2
- name: '10|telegram-@ISVvpn #1'
password: 682c7978-e3eb-44e0-924c-607144495681
port: 24568
server: fra-nb-01.linlujs.pw
skip-cert-verify: false
tls: false
type: hysteria2
- name: '10|DE-telegram-@ISVvpn : 🇺🇲'
password: 70197404-7b40-45e4-bb9c-8bc8995012ae
port: 24568
server: fra-nb-01.linlujs.pw
skip-cert-verify: false
tls: false
type: hysteria2
- name: 10|usa-telegram-@ISVvpn
password: 70197404-7b40-45e4-bb9c-8bc8995012ae
port: 25684
server: us-nb-01.linlujs.pw
skip-cert-verify: false
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #9'
password: 75577117-ABCD-DCBA-AAAA-CC777775577B
port: 7777
server: s15.serv00.com
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|@sunflowerplato🌻
password: 78c2bad7-f5f3-41f2-88cc-81de9d05040b
port: 2056
server: xg1.mangshe.xyz
skip-cert-verify: true
sni: xg1.mangshe.xyz
tls: false
type: hysteria2
- name: 10|کای یش ر ن را💎 Config_Rayegan...
password: 79c4fe11-9787-406b-bf94-c1c1dbf59e28
port: 31468
server: 77.223.214.193
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: '10|🇸🇪 - SE - @freeOnlineVPN #1'
obfs: salamander
obfs-password: U1wBrYQyFm
password: 80747420-96c4-4a2f-83e6-eea4e46beb09
port: 20335
server: 70.34.215.221
skip-cert-verify: true
sni: drhystuichdfy.samanidempire.org
tls: false
type: hysteria2
- name: '10|🇸🇪 - SE - @freeOnlineVPN #3'
obfs: salamander
obfs-password: U1wBrYQyFm
password: 80747420-96c4-4a2f-83e6-eea4e46beb09
port: 20335
server: drhystuichdfy.samanidempire.org
skip-cert-verify: true
sni: drhystuichdfy.samanidempire.org
tls: false
type: hysteria2
- name: '10|🇳🇱 - NL - @freeOnlineVPN #1'
obfs: salamander
obfs-password: GdQ4bgvT8RFwuWi2
password: 8864aa9f-7517-4fd5-aef1-32050eb3095d
port: 30205
server: 185.92.220.240
skip-cert-verify: true
sni: net2025.afsharidempire.uk
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--8
obfs: salamander
obfs-password: GdQ4bgvT8RFwuWi2
password: 8864aa9f-7517-4fd5-aef1-32050eb3095d
port: 30205
server: net2025.afsharidempire.uk
skip-cert-verify: true
sni: net2025.afsharidempire.uk
tls: false
type: hysteria2
- name: '10|All-@V2rayAlpha--5 #1'
password: 907d9a05-3bd2-4b44-b1f9-4f26dba76f88
port: 44001
server: 141.147.52.24
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@Selinc #2'
password: 907d9a05-3bd2-4b44-b1f9-4f26dba76f88
port: 44001
server: 85.208.9.189
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|All--@V2ray_Alpha-1
password: 937f8940-ad8a-409f-93c3-4d6249af628f
port: 30000
server: de2.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 10|All--@V2ray_Alpha-2
password: 937f8940-ad8a-409f-93c3-4d6249af628f
port: 30000
server: de3.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #10'
obfs: salamander
obfs-password: '@azadi_az_inja_migzare'
password: '@azadi_az_inja_migzare'
port: 443
server: all-v4.dgi000.store
skip-cert-verify: false
sni: all-v4.dgi000.store
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #11'
obfs: salamander
obfs-password: bipbip
password: AtTK3tiEA0
port: 19037
server: p1.punchline.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #12'
obfs: salamander
obfs-password: bleepbloop
password: AtTK3tiEA0
port: 2087
server: p1.punchline.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #13'
obfs: salamander
obfs-password: bluhbluh
password: AtTK3tiEA0
port: 44929
server: p1.punchline.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2-ger
obfs: salamander
obfs-password: v2raybluecrystal2
password: F6HtMurQGt
port: 16666
server: 185.211.101.15
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal-ger
obfs: salamander
obfs-password: v2raybluecrystal
password: F6HtMurQGt
port: 20358
server: 185.211.101.15
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal3-ger
obfs: salamander
obfs-password: v2raybluecrystal3
password: F6HtMurQGt
port: 48233
server: 185.211.101.15
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|rema2
obfs: salamander
obfs-password: telegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystal
password: IZ3V4BlqjL
port: 23398
server: rema.3dfigures.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|rema
obfs: salamander
obfs-password: telegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystal
password: IZ3V4BlqjL
port: 48979
server: rema.3dfigures.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2-la
obfs: salamander
obfs-password: v2raybluecrystal2
password: Jj0FrgSd85
port: 17083
server: 165.140.166.78
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal3-la
obfs: salamander
obfs-password: v2raybluecrystal3
password: Jj0FrgSd85
port: 41003
server: 165.140.166.78
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal-la
obfs: salamander
obfs-password: v2raybluecrystal
password: Jj0FrgSd85
port: 50163
server: 165.140.166.78
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|All-@V2rayAlpha--2 #1'
password: MxiGoEDnLJELZicwCXwsADPdF4
port: 29609
server: 43.201.45.216
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 10|🇳🇱@FreakConfig
obfs: salamander
obfs-password: Telegram-->@Ln2Ray
password: Telegram-->@Ln2Ray
port: 45000
server: 206.71.158.23
skip-cert-verify: true
sni: gavazn.55994421.xyz
tls: false
type: hysteria2
- name: '10|🇳🇱@FreakConfig #1'
obfs: salamander
obfs-password: Telegram-->@Ln2Ray
password: Telegram-->@Ln2Ray
port: 45000
server: gavazn.lnmarketplace.net
skip-cert-verify: true
sni: gavazn.55994421.xyz
tls: false
type: hysteria2
- name: '10|@FreakConfig #1'
obfs: salamander
obfs-password: telegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystaltelegram@v2raybluecrystal
password: TkxSjbOR6w
port: 48979
server: rema.3dfigures.ir
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal3-hou
obfs: salamander
obfs-password: v2raybluecrystal3
password: UnYCJJ9AQy
port: 24803
server: 146.19.56.21
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal-hou
obfs: salamander
obfs-password: v2raybluecrystal
password: UnYCJJ9AQy
port: 28165
server: 146.19.56.21
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2-hou
obfs: salamander
obfs-password: v2raybluecrystal2
password: UnYCJJ9AQy
port: 57418
server: 146.19.56.21
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|🇳🇱@FreakConfig #3'
obfs: salamander
obfs-password: Yet-Another-Public-Config-1
password: Yet-Another-Public-Config-1
port: 35000
server: yapc-1.adamhayward.co.uk
skip-cert-verify: true
sni: YAPC-1.afshin.ir
tls: false
type: hysteria2
- name: '10|🇳🇱@FreakConfig #4'
obfs: salamander
obfs-password: Yet-Another-Public-Config-1
password: Yet-Another-Public-Config-1
port: 36300
server: yapc-1.adamhayward.co.uk
skip-cert-verify: true
sni: YAPC-1.afshin.ir
tls: false
type: hysteria2
- name: '10|@IRAN_V2RAY1 #5'
obfs: salamander
obfs-password: Yet-Another-Public-Config-1
password: Yet-Another-Public-Config-1
port: 36400
server: yapc-1.adamhayward.co.uk
skip-cert-verify: false
sni: YAPC-1.afshin.ir
tls: false
type: hysteria2
- name: 10|@Daily_Configs
obfs: salamander
obfs-password: Yet-Another-Public-Config-1
password: Yet-Another-Public-Config-1
port: 36600
server: yapc-1.adamhayward.co.uk
skip-cert-verify: false
sni: YAPC-1.afshin.ir
tls: false
type: hysteria2
- name: '10|v2raybluecrystal2 #1'
obfs: salamander
obfs-password: v2raybluecrystal
password: Ys1Z1iA996
port: 22527
server: 78.138.118.228
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|v2raybluecrystal3 #1'
obfs: salamander
obfs-password: v2raybluecrystal
password: Ys1Z1iA996
port: 33113
server: 78.138.118.228
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|v2raybluecrystal #1'
obfs: salamander
obfs-password: v2raybluecrystal
password: Ys1Z1iA996
port: 37804
server: 78.138.118.228
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|🇬🇧 - GB - @freeOnlineVPN
obfs: salamander
obfs-password: khameniiko@smad@ret
password: YwuvGJk36B
port: 2083
server: 81.168.83.89
skip-cert-verify: true
sni: kotlet.arshiacomplus.dpdns.org
tls: false
type: hysteria2
- name: '10|@Selinc #5'
password: ab858115-e0ab-4cb7-8e65-0804c35e52d5
port: 30000
server: nl2.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|@Selinc #6'
password: ab858115-e0ab-4cb7-8e65-0804c35e52d5
port: 30000
server: us4.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|🇳🇱 - NL - @freeOnlineVPN #10'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: 206.71.158.41
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: '10|🇳🇱@FreakConfig #5'
obfs: salamander
obfs-password: '@JavidnamanIran-Javid-SHAH-KingRezaPahlavi'
password: b4bd0613-ff7c-4f2f-954d-185915e6ddad
port: 35000
server: dir.cybsecguru.com
skip-cert-verify: true
sni: jnir.pichondan.com
tls: false
type: hysteria2
- name: '10| @vistav2ray 👈کانا '
password: c232f411-96b5-4b07-b2f7-66a434725ffb
port: 23899
server: 193.142.59.41
skip-cert-verify: true
sni: hl01.mistea.top
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--1
password: c232f411-96b5-4b07-b2f7-66a434725ffb
port: 23892
server: 38.45.89.97
skip-cert-verify: true
sni: fus02.mistea.top
tls: false
type: hysteria2
- name: 10|WiFi-@V2rayAlpha--7
password: c3054d61-c708-4594-9797-f50acd24de2a
port: 443
server: qing-es.mxtn.net
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@sunflowerplato🌻 #2'
password: c3054d61-c708-4594-9797-f50acd24de2a
port: 443
server: qing-kz.mxtn.net
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|WiFi-@V2rayAlpha--6
password: c3054d61-c708-4594-9797-f50acd24de2a
port: 443
server: qing-lu.mxtn.net
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #16'
password: dongtaiwang.com
port: 50717
server: 46.17.41.189
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--1
password: dongtaiwang.com
port: 5355
server: 51.159.111.32
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|v2raybluecrystal4-tur
obfs: salamander
obfs-password: xfvg@FFG
password: e2QEtNgU9v
port: 13222
server: 5.133.102.59
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|@GVgg#v2raybluecrystal3-tur
obfs: salamander
obfs-password: FF
password: e2QEtNgU9v
port: 28958
server: 5.133.102.59
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal-tur
obfs: salamander
obfs-password: xfvgb@ssV
password: e2QEtNgU9v
port: 30062
server: 5.133.102.59
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2-tur
obfs: salamander
obfs-password: vbn@ffFF
password: e2QEtNgU9v
port: 41250
server: 5.133.102.59
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|telegram-@ISVvpn #2'
password: f872db91-57c2-41c7-aad0-561b4cb674bf
port: 25684
server: us-nb-01.linlujs.pw
skip-cert-verify: false
tls: false
type: hysteria2
- name: '10|@V2rayNG3 #18'
obfs: salamander
obfs-password: dbc688df29e582d3
password: f8e40931bbb827df
port: 12123
server: 62.60.231.189
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--2
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: de2.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|@sunflowerplato🌻 #3'
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: de3.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 10|All--@V2rayAlpha--3
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: nl1.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|🇺🇲@FreakConfig #1'
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: us1.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|🇺🇲@FreakConfig #2'
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: us2.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: '10|🇺🇲@FreakConfig #3'
password: faa8b629-13ea-4ccd-94dd-ff1615cb1ba1
port: 30000
server: us3.oomz.ru
skip-cert-verify: true
sni: bing.com
tls: false
type: hysteria2
- name: 10|v2raybluecrystal-ind
obfs: salamander
obfs-password: v2raybluecrystal
password: fzgdaH0cJ7
port: 11282
server: 160.191.183.244
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal2-ind
obfs: salamander
obfs-password: v2raybluecrystal2
password: fzgdaH0cJ7
port: 14849
server: 160.191.183.244
skip-cert-verify: true
tls: false
type: hysteria2
- name: 10|v2raybluecrystal3-ind
obfs: salamander
obfs-password: v2raybluecrystal3
password: fzgdaH0cJ7
port: 48004
server: 160.191.183.244
skip-cert-verify: true
tls: false
type: hysteria2
- name: '10|@sunflowerplato🌻 #4'
password: miaoge110
port: 40112
server: 45.58.38.153
skip-cert-verify: true
sni: www.bing.com
tls: false
type: hysteria2
- name: 10|All-@V2rayAlpha--17
obfs: salamander
obfs-password: ki(rtoko(s-maret-khamneii
password: siEk2SjZFG
port: 2083
server: adas-polo-ba-mahi.kotlet.org
skip-cert-verify: true
sni: ghasem.kotlet.org
tls: false
type: hysteria2
- cipher: aes-256-cfb
name: 12|tg频道:@ripaojiedian
password: amazonskr05
port: 443
server: 3.9.17.198
tfo: false
type: ss
- alterId: 2
cipher: auto
name: 12,13|香港|@ripaojiedian
network: ws
port: '30809'
server: v9.heduian.link
servername: ''
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: cbb3f877-d1fb-344c-87a9-d153bffd5484
ws-opts:
headers:
Host: baidu.com
path: /oooo
- cipher: aes-256-gcm
name: 12|🇭🇰 香港2|@ripaojiedian
password: ccf426f1fe78
plugin: v2ray-plugin
plugin-opts:
host: newroot2v1.dsjsapp.com
mode: websocket
mux: true
path: /zksuapgx
skip-cert-verify: false
tls: true
port: 443
server: 103.103.245.158
tfo: false
type: ss
- name: 12,13|香港3|@ripaojiedian
network: tcp
password: e4e262d453466988575c397a30562337
port: 443
server: 58.152.53.42
skip-cert-verify: false
sni: www.nintendogames.net
type: trojan
- name: 12,13|香港4|@ripaojiedian
network: tcp
password: BxceQaOe
port: 1655
server: 36.150.215.231
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- name: 12,13|香港5|@ripaojiedian
network: tcp
password: BxceQaOe
port: 443
server: 203.198.122.129
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- alterId: 0
cipher: auto
name: 12|🇭🇰 香港6|@ripaojiedian
port: 11819
server: 36.133.73.36
skip-cert-verify: false
tfo: false
tls: false
type: vmess
uuid: de32752c-0661-467e-82d3-35bc740a787f
- name: 12,13|日本|@ripaojiedian
network: tcp
password: BxceQaOe
port: 5156
server: 36.150.215.137
skip-cert-verify: true
sni: t.me%2Fripaojiedian
type: trojan
- name: 12,13|日本2|@ripaojiedian
network: tcp
password: e4e262d453466988575c397a30562337
port: 316