-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathclash.yaml
5301 lines (5301 loc) · 227 KB
/
clash.yaml
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
port: 7890
socks-port: 7891
mixed-port: 7892
lan-allowed-ips:
- 0.0.0.0/0
- ::/0
allow-lan: true
bind-address: '*'
mode: rule
unified-delay: true
log-level: warning
ipv6: true
external-controller: 0.0.0.0:9090
external-controller-cors:
allow-origins:
- '*'
allow-private-network: true
external-ui: /root/.config/mihomo/ui
external-ui-url: https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip
external-ui-name: xd
geo-update-interval: 24
geodata-mode: true
geodata-loader: memconservative
tcp-concurrent: true
find-process-mode: strict
global-client-fingerprint: chrome
global-ua: clash.meta/1.10.0
etag-support: true
rule-providers:
ai_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/ai_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/ai.txt
apple_cdn:
behavior: domain
format: text
interval: 43200
path: ./sukkaw_ruleset/apple_cdn.txt
type: http
url: https://ruleset.skk.moe/Clash/domainset/apple_cdn.txt
apple_cn_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/apple_cn_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/apple_cn.txt
apple_services:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/apple_services.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/apple_services.txt
cdn_domainset:
behavior: domain
format: text
interval: 43200
path: ./sukkaw_ruleset/cdn_domainset.txt
type: http
url: https://ruleset.skk.moe/Clash/domainset/cdn.txt
cdn_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/cdn_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/cdn.txt
china_ip:
behavior: ipcidr
format: text
interval: 43200
path: ./sukkaw_ruleset/china_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/china_ip.txt
china_ip_ipv6:
behavior: ipcidr
format: text
interval: 43200
path: ./sukkaw_ruleset/china_ipv6.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/china_ip_ipv6.txt
direct_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/direct_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/direct.txt
domestic_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/domestic_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/domestic.txt
domestic_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/domestic_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/domestic.txt
download_domainset:
behavior: domain
format: text
interval: 43200
path: ./sukkaw_ruleset/download_domainset.txt
type: http
url: https://ruleset.skk.moe/Clash/domainset/download.txt
download_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/download_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/download.txt
global_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/global_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/global.txt
lan_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/lan_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/lan.txt
lan_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/lan_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/lan.txt
microsoft_cdn_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/microsoft_cdn_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/microsoft_cdn.txt
microsoft_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/microsoft_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/microsoft.txt
neteasemusic_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/neteasemusic_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/neteasemusic.txt
neteasemusic_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/neteasemusic_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/neteasemusic.txt
reject_domainset:
behavior: domain
format: text
interval: 43200
path: ./sukkaw_ruleset/reject_domainset.txt
type: http
url: https://ruleset.skk.moe/Clash/domainset/reject.txt
reject_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/reject_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/reject.txt
reject_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/reject_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/reject.txt
reject_non_ip_drop:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/reject_non_ip_drop.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/reject-drop.txt
reject_non_ip_no_drop:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/reject_non_ip_no_drop.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/reject-no-drop.txt
sogouinput:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/sogouinput.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/sogouinput.txt
stream_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/stream_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/stream.txt
stream_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/stream_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/stream.txt
telegram_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/telegram_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/ip/telegram.txt
telegram_non_ip:
behavior: classical
format: text
interval: 43200
path: ./sukkaw_ruleset/telegram_non_ip.txt
type: http
url: https://ruleset.skk.moe/Clash/non_ip/telegram.txt
proxies:
- auth: 536d274a-e3f3-4e7a-a411-50193cd08d34
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_3265333435343132
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 536d274a-e3f3-4e7a-a411-50193cd08d34
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- auth: 8a973329-9f45-49b2-a82a-d55e3e343605
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6632386130663361
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 8a973329-9f45-49b2-a82a-d55e3e343605
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1F8\U0001F1EC_\U0001F4BC_github.com/Ruk1ng001_3630366335666138"
password: amazonskr05
port: 443
server: 18.141.140.152
type: ss
- cipher: aes-256-gcm
name: github.com/Ruk1ng001_3964653030376638
password: YMB3QL85L7F1KJR7
port: 18013
server: 113.99.142.172
type: ss
- cipher: aes-256-cfb
name: "\U0001F7E0_\U0001F1F8\U0001F1EC_\U0001F4BC_github.com/Ruk1ng001_6533626137346131"
password: amazonskr05
port: 443
server: 47.129.48.255
type: ss
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_6630343232633961"
obfs: plain
obfs-param: ""
password: amazonskr05
port: 443
protocol: origin
protocol-param: ""
server: 34.212.0.149
type: ssr
- auth: 6899ef65-1dbc-42a4-8167-14c03562addf
client-fingerprint: chrome
down: 15
name: github.com/Ruk1ng001_3135636635656431
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 6899ef65-1dbc-42a4-8167-14c03562addf
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 15
- name: "❓_\U0001F1E8\U0001F1F3:\U0001F1ED\U0001F1F0_\U0001F4F6_github.com/Ruk1ng001_3438326631653663"
network: ws
port: 443
server: 162.247.5.91
servername: sga.costs.asia
tls: true
type: vless
uuid: 8ca6df70-73af-4139-9f7e-685e71618c71
ws-opts:
headers:
Host: sga.costs.asia
path: /bing
- auth: b3418d13-a138-4d8b-9c4e-58e6b5b254ff
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_3466646434666331"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: b3418d13-a138-4d8b-9c4e-58e6b5b254ff
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: chacha20
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4BC_github.com/Ruk1ng001_6431326232336164"
password: dkYsdgWqegNV
port: 8343
server: 14.18.253.178
type: ss
- auth: 09fb541c-aaa5-44a2-88df-1cc497d00e8f
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6561363737353338
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 09fb541c-aaa5-44a2-88df-1cc497d00e8f
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- alterId: 64
cipher: auto
name: "\U0001F7E1_\U0001F1E8\U0001F1F3_\U0001F4F6_github.com/Ruk1ng001_3464303266646232"
port: 52908
server: 120.234.102.229
skip-cert-verify: false
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_3532646462623463"
password: amazonskr05
port: 443
server: 34.212.0.149
type: ss
- auth: faa7adb9-fc95-4316-bd43-002eb013959b
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3534613731343165
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: faa7adb9-fc95-4316-bd43-002eb013959b
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 68094041-4631-4884-be31-0770ed43c7f9
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_6536383533643035
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 68094041-4631-4884-be31-0770ed43c7f9
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- cipher: chacha20-ietf-poly1305
client-fingerprint: chrome
name: github.com/Ruk1ng001_6562613637646361
password: f5b1ad18-54fe-4dfe-a12f-53efca562adb
port: 49709
server: jg647hf446ghvw.eucs.cn
type: ss
udp: true
- alterId: 0
cipher: auto
ip-version: dual
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4F6_github.com/Ruk1ng001_3137383833356432"
network: tcp
port: 50002
server: 112.132.215.12
tls: false
type: vmess
udp: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- auth: 4168dff3-111e-4bf8-86ba-203bbfde861a
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3166633333373538
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 4168dff3-111e-4bf8-86ba-203bbfde861a
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1F8\U0001F1EC_\U0001F4BC_github.com/Ruk1ng001_3236316533626535"
password: amazonskr05
port: 443
server: 54.255.224.231
type: ss
- auth: d116e5f9-0aae-45fc-89f9-07668f88b839
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6266303537316436
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: d116e5f9-0aae-45fc-89f9-07668f88b839
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: aes-256-cfb
name: "\U0001F7E0_\U0001F1F5\U0001F1EA_\U0001F4BB_github.com/Ruk1ng001_6339643730643233"
password: f8f7aCzcPKbsF8p3
port: 989
server: 185.47.252.251
type: ss
udp: true
- auth: bab20b55-df9e-43ff-a16b-13ad73938988
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_3135633561656339"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: bab20b55-df9e-43ff-a16b-13ad73938988
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- country: "\U0001F1EE\U0001F1EAIE"
name: github.com/Ruk1ng001_3337346364633931
network: tcp
password: telegram-id-privatevpns
port: 22222
server: 108.128.24.143
sni: trojan.burgerip.co.uk
type: trojan
udp: true
- auth: ed8c1e71-4116-498d-8b87-4034ccf001b6
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3563333665313466
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: ed8c1e71-4116-498d-8b87-4034ccf001b6
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: b928c802-1c21-462c-9839-903efa00a613
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3830376534626537
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: b928c802-1c21-462c-9839-903efa00a613
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: aes-256-cfb
name: "❓_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_3931323964383765"
password: amazonskr05
port: 443
server: 52.33.5.226
type: ss
- auth: fae1f8d9-f19e-4907-a6b9-fbc94c9a5e5f
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6462333064373763
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: fae1f8d9-f19e-4907-a6b9-fbc94c9a5e5f
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- name: "\U0001F7E1_\U0001F1E8\U0001F1F3:\U0001F1ED\U0001F1F0_\U0001F4BB_github.com/Ruk1ng001_3739333039663234"
network: ws
port: 443
server: 8.212.104.247
servername: clawhk.costs.asia
tls: true
type: vless
uuid: a5c6f225-4cb9-4e58-edea-1e0793b656b7
ws-opts:
headers:
Host: clawhk.costs.asia
path: /bing
- auth: 7c960f15-a4b9-4a51-8e17-725ca36dffab
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3766653531663534
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 7c960f15-a4b9-4a51-8e17-725ca36dffab
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: aes-256-cfb
name: "❓_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_6135363236336163"
obfs: plain
obfs-param: ""
password: amazonskr05
port: 443
protocol: origin
protocol-param: ""
server: 52.33.5.226
type: ssr
- name: "\U0001F7E0_\U0001F1FA\U0001F1F8_\U0001F4BB_github.com/Ruk1ng001_63626264383132"
network: ws
port: 80
server: 172.67.207.181
skip-cert-verify: false
tls: false
type: vless
uuid: 5a4e040a-8de6-4222-bd6f-9f535b8772fd
ws-opts:
headers:
Host: calm-violet-0e47.pomofoc222.workers.dev
path: /lrJO6NEVRGHecfbo?ed=2560
- auth: e847c424-8033-4da5-b798-c6e8384cd350
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6662303865613530
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: e847c424-8033-4da5-b798-c6e8384cd350
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 238488cd-928e-408c-b56e-be8176928b84
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3139643363303761
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 238488cd-928e-408c-b56e-be8176928b84
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 16b7b19e-8259-44fc-b691-6a829ef34851
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_3235646263623931"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 16b7b19e-8259-44fc-b691-6a829ef34851
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- alterId: 0
cipher: auto
client-fingerprint: chrome
name: github.com/Ruk1ng001_3735643562336335
password: 415b770f-20de-4be4-a3c1-8376da50a1b7
port: 33243
server: lm.kaiqsz.com
skip-cert-verify: false
sni: mmbiz13.redapricotcloud.com
tfo: false
tls: false
type: trojan
uuid: 6f5637c1-2a46-4d3b-8257-7dc3a70ff1dd
- auth: 5ddf352f-ab2b-4c07-b4d5-3b85600a2ca9
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_6434346333613132"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 5ddf352f-ab2b-4c07-b4d5-3b85600a2ca9
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: a92e470d-f2ab-4417-9151-d79f154e46aa
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_32643963366266
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: a92e470d-f2ab-4417-9151-d79f154e46aa
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 6250cac4-cdc4-4625-aceb-8f3a02f2ee3f
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_3331386230643665
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 6250cac4-cdc4-4625-aceb-8f3a02f2ee3f
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_3364616338343734"
password: amazonskr05
port: 443
server: 54.185.211.74
type: ss
- name: github.com/Ruk1ng001_3332653036643733
password: exaxgqkKkd0TAMrCxeonWg==
port: 443
server: jp104-cdn-route.couldflare-cdn.com
skip-cert-verify: false
sni: jp104-cdn-route.couldflare-cdn.com
tls: true
type: http
username: mrwdfNTD8M79LCukCieldrqZWqs=
- cipher: rc4-md5
client-fingerprint: chrome
name: github.com/Ruk1ng001_6462396235386463
obfs: plain
obfs-param: cd2b692902.6602b8463464108506.microsoft.com
password: ENZ52K
port: 40219
protocol: auth_aes128_md5
protocol-param: 92902:pFWGOQ
server: 2.hublink.pro
type: ssr
- cipher: aes-256-cfb
name: "❓_\U0001F1F8\U0001F1EC_\U0001F4BC_github.com/Ruk1ng001_6338613761323736"
password: amazonskr05
port: 443
server: 13.229.127.74
type: ss
- cipher: chacha20-ietf-poly1305
client-fingerprint: chrome
name: github.com/Ruk1ng001_6530626335363230
password: b7e92acc-70e2-4945-9625-c909251ca5ee
port: 30001
server: gdgs.tarioblink.me
tfo: false
type: ss
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_6635313439363036"
obfs: plain
password: amazonskr05
port: 443
protocol: origin
server: 34.220.174.155
type: ssr
- cipher: rc4-md5
name: github.com/Ruk1ng001_3732656138386162
obfs: plain
obfs-param: cd2b692902.6602b8463464108506.microsoft.com
password: ENZ52K
port: 40210
protocol: auth_aes128_md5
protocol-param: 92902:pFWGOQ
server: 2.hublink.pro
type: ssr
- cipher: aes-256-gcm
name: github.com/Ruk1ng001_3934623565363635
password: Y2U58S90E3GST1AQ
port: 21001
server: 113.99.142.171
type: ss
- cipher: aes-256-gcm
name: github.com/Ruk1ng001_6164613034663635
password: YMB3QL85L7F1KJR7
port: 18013
server: 8tv68qhq.slashdevslashnetslashtun.net
type: ss
- auth: 96b00404-b5de-46fe-b58e-b16dc64667ef
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_6534343464396435
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 96b00404-b5de-46fe-b58e-b16dc64667ef
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- cipher: chacha20
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4BC_github.com/Ruk1ng001_3430623561633638"
password: nUthZ7z3VmyV
port: 9001
server: 14.18.253.178
type: ss
- auth: 253e4783-2870-4134-adaf-82c49950de21
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_6138313737303066"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 253e4783-2870-4134-adaf-82c49950de21
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: fa036080-ef7f-4407-b37d-4f3c0d9d78ab
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_6366353437393662
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: fa036080-ef7f-4407-b37d-4f3c0d9d78ab
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- alterId: 0
cipher: auto
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4F6_github.com/Ruk1ng001_3636613639343631"
port: 48919
server: 183.236.51.38
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: "\U0001F7E0_\U0001F1FA\U0001F1F8_\U0001F4BB_github.com/Ruk1ng001_3764623962333865"
network: ws
port: 80
server: 172.67.27.46
servername: cc.ailicf.us.kg
skip-cert-verify: true
type: vless
udp: true
uuid: b5cdabf0-e048-4fa2-90da-9379b1a4926e
ws-opts:
headers:
Host: cc.ailicf.us.kg
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
path: /b5cdabf0-e04
xudp: true
- auth: f531d87e-b27d-4ce5-85a7-5840913a8343
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3861396263356638
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: f531d87e-b27d-4ce5-85a7-5840913a8343
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 5d260606-f8a2-4455-9582-4f133e6a2bd7
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_3863353431613735
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 5d260606-f8a2-4455-9582-4f133e6a2bd7
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- alterId: 0
cipher: auto
client-fingerprint: chrome
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4F6_github.com/Ruk1ng001_33333337636635"
port: 59104
server: 183.236.51.38
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- auth: 999fe97a-5cd1-4f9f-9826-85db2b50a6ef
name: github.com/Ruk1ng001_3338383634383432
password: 999fe97a-5cd1-4f9f-9826-85db2b50a6ef
port: 8899
server: yingguo1.su8.lol
skip-cert-verify: false
sni: yingguo1.su8.lol
type: hysteria2
- alterId: 0
cipher: auto
name: github.com/Ruk1ng001_3433353961353834
network: ws
port: 8880
server: s4.cn-db.top
tls: false
type: vmess
uuid: 4b36625c-b9d9-3ea6-aed5-86d62c70e16d
ws-opts:
headers:
Host: 100-74-148-152.s4.cn-db.top
path: /dabai.in104.21.239.139
- alterId: 0
cipher: auto
name: github.com/Ruk1ng001_3932313130656265
port: 36602
server: 120.232.153.40
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- cipher: aes-256-cfb
name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BC_github.com/Ruk1ng001_6161356230613666"
password: amazonskr05
port: 443
server: 34.211.97.239
type: ss
- name: "\U0001F7E0_\U0001F1E7\U0001F1FF_\U0001F4BC_github.com/Ruk1ng001_6232366136383832"
network: ws
port: 2086
server: 45.131.5.58
skip-cert-verify: false
tls: false
type: vless
uuid: f366e744-abcd-4b5b-bd5e-2bd97b6443bf
ws-opts:
headers:
Host: fva64rbmjfkfznnptk6imz6sihrno35m4csom83admge5tfxniwduyuyt954fdh.ks3om.workers.Dev
path: /
- alterId: 0
cipher: auto
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4F6_github.com/Ruk1ng001_3233636263373337"
port: 30565
server: 120.198.71.214
tls: false
type: vmess
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- cipher: aes-256-gcm
client-fingerprint: chrome
name: github.com/Ruk1ng001_3734656262613162
password: LZQ0R9BL69GCC6FS
port: 15005
server: 8tv68qhq.slashdevslashnetslashtun.net
tfo: false
type: ss
- auth: 96b00404-b5de-46fe-b58e-b16dc64667ef
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_6232363131653164
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 96b00404-b5de-46fe-b58e-b16dc64667ef
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- auth: 54dbba1c-1351-4e33-935e-c25a2afc0c20
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6137373730376430
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 54dbba1c-1351-4e33-935e-c25a2afc0c20
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- auth: 272d78b6-b001-4c78-ba75-e2b16d5ca2aa
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_6433646335313338"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 272d78b6-b001-4c78-ba75-e2b16d5ca2aa
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- cipher: chacha20
name: "❓_\U0001F1E8\U0001F1F3_\U0001F4BC_github.com/Ruk1ng001_6532323632656538"
password: 3fn3CH5Swh2N
port: 8337
server: 14.18.253.178
type: ss
- name: "\U0001F7E1_\U0001F1FA\U0001F1F8_\U0001F4BB_github.com/Ruk1ng001_3930633431653461"
network: ws
port: 80
server: 141.101.120.47
servername: cc.ailicf.us.kg
tls: false
type: vless
udp: true
uuid: b5cdabf0-e048-4fa2-90da-9379b1a4926e
ws-opts:
headers:
Host: cc.ailicf.us.kg
path: /b5cdabf0-e04
- auth: 6250cac4-cdc4-4625-aceb-8f3a02f2ee3f
client-fingerprint: chrome
down: 50
name: github.com/Ruk1ng001_6538333162333736
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 6250cac4-cdc4-4625-aceb-8f3a02f2ee3f
port: 31651
server: 185.121.134.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 50
- auth: 1ca84db5-3916-40ab-90e4-baea4e9a2051
client-fingerprint: chrome
down: 100
name: github.com/Ruk1ng001_6633386536353462
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: 1ca84db5-3916-40ab-90e4-baea4e9a2051
port: 31651
server: 45.144.174.12
skip-cert-verify: true
type: hysteria2
udp: true
up: 100
- alterId: 0
cipher: chacha20-ietf-poly1305
name: "❓_\U0001F1E6\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_3137383739333434"
password: u17T3BvpYaaiuW2c
port: 443
server: 40.172.178.194
skip-cert-verify: true
tls: true
type: ss
- cipher: aes-256-gcm
client-fingerprint: chrome
name: github.com/Ruk1ng001_6139656333666436
password: MHZUEOX3KBXAV09K
port: 15007
server: 156.245.190.16
tfo: false
type: ss
- auth: c360a74a-7576-43ee-99d6-3371c08bb14a
client-fingerprint: chrome
down: 100
name: "❓_\U0001F1E9\U0001F1EA_\U0001F4BC_github.com/Ruk1ng001_6465343761303331"
obfs: salamander
obfs-password: M2UyNTc5OWUwYjkyM2Q2OQ==
password: c360a74a-7576-43ee-99d6-3371c08bb14a
port: 31651