-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathclash.yaml
947 lines (947 loc) · 27.5 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
mixed-port: 7890
socks-port: 7891
allow-lan: true
bind-address: '*'
mode: rule
log-level: info
external-controller: 127.0.0.1:9090
external-ui: ui
external-ui-url: https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip
geox-url:
geoip: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geoip.dat
geosite: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geosite.dat
mmdb: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/country.mmdb
asn: https://github.com/xishang0128/geoip/releases/download/latest/GeoLite2-ASN.mmdb
geo-auto-update: true
geo-update-interval: 24
profile:
store-selected: true
store-fake-ip: true
find-process-mode: strict
global-client-fingerprint: chrome
tcp-concurrent: true
unified-delay: true
sniffer:
enable: true
parse-pure-ip: true
override-destination: true
sniff:
TLS:
ports:
- 443
- 8443
HTTP:
ports:
- 80
- 8080-8880
override-destination: true
QUIC:
ports:
- 443
- 8443
force-domain:
- +.v2ex.com
- www.google.com
- google.com
skip-domain:
- Mijia Cloud
- dlg.io.mi.com
- +.apple.com
tun:
enable: true
stack: mixed
strict_route: true
auto-route: true
auto-redirect: true
auto-detect-interface: true
dns-hijack:
- any:53
- tcp://any:53
dns:
enable: true
prefer-h3: true
ipv6: true
listen: 0.0.0.0:53
fake-ip-range: 198.18.0.1/16
enhanced-mode: fake-ip
fake-ip-filter:
- rule-set:fakeip-filter,private,cn
nameserver:
- https://223.5.5.5/dns-query
- https://doh.pub/dns-query
- https://dns.alidns.com/dns-query
proxies:
- down: '200'
name: 127.0.0.1_OpenAI_Claude1
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-nl-a-1.testred.xyz
sni: alipay-api-nl-a-1.testred.xyz
type: hysteria2
up: '200'
- down: '100'
name: 127.0.0.1_OpenAI_Claude2
password: ffd959d0-b3a7-4a13-a71f-45961107065e
port: 443
server: uk-001.xiaoxiaobujidao.xyz
sni: uk-001.xiaoxiaobujidao.xyz
type: hysteria2
up: '100'
- cipher: aes-256-gcm
name: 127.0.0.1_OpenAI_Claude3
password: pKEW8JPByTVTLtM
port: 443
server: 38.114.114.69
type: ss
- cipher: aes-256-cfb
name: 218.237.185.230_OpenAI_Claude
password: qwerREWQ@@
port: 31066
server: 218.237.185.230
type: ss
- cipher: aes-256-cfb
name: 221.139.79.20_OpenAI
password: qwerREWQ@@
port: 51199
server: 221.139.79.20
type: ss
- cipher: aes-256-cfb
name: 221.139.79.41_OpenAI_Claude
password: qwerREWQ@@
port: 6435
server: 221.139.79.41
type: ss
- flow: xtls-rprx-vision
name: DE_Düsseldorf_WIIT AG_OpenAI_Claude
network: tcp
port: 443
server: 45.134.50.233
servername: bingo.107421.xyz
tls: true
type: vless
udp: true
uuid: 8a681ef0-cb4b-4768-9553-49acb7b9a1ad
- down: '200'
name: DE_Nuremberg_DASABO OU_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-de-a-1.testred.xyz
sni: alipay-api-de-a-1.testred.xyz
type: hysteria2
up: '200'
- name: FR_Paris_Amazon Technologies Inc._OpenAI_Claude
network: tcp
password: telegram-id-privatevpns
port: 22222
server: 15.237.172.59
sni: trojan.burgerip.co.uk
type: trojan
- name: FR_Paris_Redheberg SAS_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-fr-a-1.testred.xyz
sni: alipay-api-fr-a-1.testred.xyz
type: hysteria2
- down: '100'
name: GB_London_BrainStorm Network, Inc_OpenAI_Claude
password: dbe19046-739b-4e39-997c-0da106412b3b
port: 443
server: uk-001.xiaoxiaobujidao.xyz
sni: uk-001.xiaoxiaobujidao.xyz
type: hysteria2
up: '100'
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude1
password: amazonskr05
port: 443
server: 18.181.199.99
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude2
password: amazonskr05
port: 443
server: 18.183.217.250
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude3
password: amazonskr05
port: 443
server: 52.68.33.227
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude4
password: amazonskr05
port: 443
server: 18.183.178.120
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude5
password: amazonskr05
port: 443
server: 52.195.182.124
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude6
password: amazonskr05
port: 443
server: 52.195.8.246
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude7
password: amazonskr05
port: 443
server: 52.194.218.0
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc_Claude
password: amazonskr05
port: 443
server: 13.113.219.226
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude1
password: amazonskr05
port: 443
server: 13.113.190.198
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude2
password: amazonskr05
port: 443
server: 13.112.239.190
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon.com, Inc._OpenAI_Claude
password: amazonskr05
port: 443
server: 43.206.222.22
type: ss
- name: JP_Tokyo_Kddi Corporation_OpenAI_Claude
network: tcp
port: 39353
server: 46.51.241.212
tls: false
type: vless
uuid: 94884860-51d0-40dc-8e37-8090249edc5f
- down: '100'
name: JP_Tokyo_Oracle Corporation_OpenAI_Claude
password: dbe19046-739b-4e39-997c-0da106412b3b
port: 443
server: tk-007.xiaoxiaobujidao.xyz
sni: tk-007.xiaoxiaobujidao.xyz
type: hysteria2
up: '100'
- name: KR_Chuncheon_Oracle Corporation_OpenAI_Claude
network: ws
port: 8080
server: 94.250.246.200
servername: a.mifeng.us.kg
tls: true
type: vless
udp: true
uuid: d342d11e-d424-4583-b36e-524ab1f0afa4
ws-opts:
headers:
Host: a.mifeng.us.kg
path: /?ed=2560
- cipher: aes-256-cfb
name: KR_Seoul_Amazon.com, Inc._OpenAI_Claude
password: amazonskr05
port: 443
server: 43.201.19.60
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude
password: oZIoA69Q8yhcQV8ka3Pa3A
port: 8080
server: 45.158.171.66
type: ss
- cipher: chacha20-ietf-poly1305
name: NO_Lorenskog_Microsoft Corporation_OpenAI_Claude1
password: M7x1mGNOwhPiRB9jSxZJNy
port: 6870
server: 51.13.182.236
type: ss
- cipher: chacha20-ietf-poly1305
name: NO_Lorenskog_Microsoft Corporation_OpenAI_Claude2
password: J0lgxy4mb52CIJ8UUcEgts
port: 3089
server: 51.13.182.231
type: ss
- cipher: aes-256-gcm
name: RU_Moscow_LLC Baxet1
password: 76f22412bc0dbdf6
port: 16112
server: 185.22.153.14
type: ss
- cipher: aes-256-gcm
name: RU_Moscow_LLC Baxet2
password: 4194ce5b1f36f660
port: 16112
server: 185.22.152.13
type: ss
- name: SE_Stockholm_Aeza International LTD_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-au-a-1.testred.xyz
sni: alipay-api-au-a-1.testred.xyz
type: hysteria2
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude1
password: amazonskr05
port: 443
server: 18.142.51.90
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude2
password: amazonskr05
port: 443
server: 13.229.99.83
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude3
password: amazonskr05
port: 443
server: 13.229.248.183
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude4
password: amazonskr05
port: 443
server: 13.229.55.99
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude5
password: amazonskr05
port: 443
server: 13.229.216.218
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon Technologies Inc._OpenAI_Claude6
password: amazonskr05
port: 443
server: 18.136.123.141
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon.com, Inc._OpenAI_Claude1
password: amazonskr05
port: 443
server: 13.250.30.129
type: ss
- cipher: aes-256-cfb
name: SG_Singapore_Amazon.com, Inc._OpenAI_Claude2
password: amazonskr05
port: 443
server: 18.141.235.81
type: ss
- down: '200'
name: US_Las Vegas_Hostodo_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-us-a-3.testred.xyz
sni: alipay-api-us-a-3.testred.xyz
type: hysteria2
up: '200'
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude1
password: PCnnH6SQSnfoS27
port: 8090
server: 38.114.114.69
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude2
password: RexnBgU7EV5ADxG
port: 7002
server: 38.114.114.69
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude3
password: zDNVedRFPQexG9v
port: 6379
server: 38.114.114.69
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude4
password: FoOiGlkAA9yPEGP
port: 7306
server: 38.114.114.69
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude5
password: KixLvKzwjekG00rm
port: 8080
server: 38.114.114.69
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude6
password: KixLvKzwjekG00rm
port: 5500
server: 38.114.114.69
type: ss
- name: US_Los Angeles_HostPapa_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-us-a-2.testred.xyz
sni: alipay-api-us-a-2.testred.xyz
type: hysteria2
- alterId: 0
cipher: auto
name: US_Los Angeles_Multacom Corporation_OpenAI_Claude
network: ws
port: 8443
server: ff.kncc2.top
skip-cert-verify: true
tls: true
type: vmess
udp: true
uuid: 89c344f2-096c-445c-b629-9b15152f38e7
ws-opts:
headers:
Host: ff.kncc2.top
path: /89c344f2
- alterId: 0
cipher: auto
name: US_New York_Cloudflare, Inc._OpenAI_Claude
network: ws
port: 8880
server: yx1.changyouVPN.top
skip-cert-verify: true
tls: false
type: vmess
uuid: 85c7eba1-dfba-4f3e-9f7a-833fa729dc19
ws-opts:
headers:
Host: yg.changyouVPN.top
path: /?ed=2048
- name: US_North Bergen_ReadyDedis, LLC_OpenAI_Claude
password: 5fcc5cce-b0f1-41cc-a4be-63805d2fe7b5
port: 443
server: alipay-api-us-a-1.testred.xyz
sni: alipay-api-us-a-1.testred.xyz
type: hysteria2
- down: '100'
name: US_Phoenix_Oracle Corporation_OpenAI_Claude
password: dbe19046-739b-4e39-997c-0da106412b3b
port: 443
server: px-001.xiaoxiaobujidao.xyz
sni: px-001.xiaoxiaobujidao.xyz
type: hysteria2
up: '100'
- cipher: aes-256-cfb
name: US_Portland_Amazon.com, Inc._OpenAI_Claude1
password: amazonskr05
port: 443
server: 18.236.85.108
type: ss
- cipher: aes-256-cfb
name: US_Portland_Amazon.com, Inc._OpenAI_Claude2
password: amazonskr05
port: 443
server: 52.27.15.25
type: ss
- cipher: aes-256-cfb
name: US_Portland_Amazon.com, Inc._OpenAI_Claude3
password: amazonskr05
port: 443
server: 52.41.3.89
type: ss
- name: US_The Dalles_Google LLC_OpenAI_Claude
network: ws
port: 443
server: 198.41.192.239
servername: usb.warpo.me
tls: true
type: vless
uuid: e7934134-5395-47a7-bd90-f68a467e3971
ws-opts:
headers:
Host: usb.warpo.me
path: /bing
- alterId: 0
cipher: auto
name: github.com/Ruk1ng001_1
network: ws
port: 8880
server: s1.cn-db.top
tls: false
type: vmess
uuid: 4b36625c-b9d9-3ea6-aed5-86d62c70e16d
ws-opts:
headers:
Host: 100-1-101-250.s1.cn-db.top
path: /dabai.in172.67.97.168
- name: github.com/Ruk1ng001_2
network: ws
port: 443
server: bestcf.liuli3wan2.me
servername: orsj1.1541241.xyz
tls: true
type: vless
uuid: e042ac3d-6de5-49c6-984c-beaf976f8242
ws-opts:
headers:
Host: orsj1.1541241.xyz
path: /ymmzws
- name: github.com/Ruk1ng001_3
network: ws
port: 443
server: cdncdncdn.aikunapp.com
servername: r-RzxbHQ5ZFUFxEAZj.sm-node.com
tls: true
type: vless
udp: true
uuid: 96cad374-7573-4463-8804-4665c2c3d932
ws-opts:
headers:
Host: cdn-us.sm-node.com
path: /vless_ws/smjc/index?ed=8192
- name: ❓_🇺🇸_💻_github.com/Ruk1ng001_1
network: ws
port: 80
server: 167.82.1.136
servername: teleirani.ir
tls: false
type: vless
uuid: 253ef561-9e57-4336-befd-878ddd30df01
ws-opts:
headers:
Host: teleirani.ir
path: /?ed=2048
- name: ❓_🇺🇸_💻_github.com/Ruk1ng001_2
network: ws
port: 80
server: 167.82.1.111
servername: teleirani.ir
tls: false
type: vless
uuid: 253ef561-9e57-4336-befd-878ddd30df01
ws-opts:
headers:
Host: teleirani.ir
path: /?ed=2048
- name: ❓_🇺🇸_💻_github.com/Ruk1ng001_3
network: ws
port: 80
server: 151.101.3.8
servername: 49.org
tls: false
type: vless
uuid: 7233f65b-8ec1-46cd-8e87-1986948d0326
ws-opts:
headers:
Host: 49.org
path: /telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee,telegram-v2safee?ed=2095
proxy-groups:
- name: PROXY
type: select
proxies:
- Fallback
- Select
- HK
- TW
- JP
- SG
- US
- OpenAI
- Claude
- name: Select
type: select
filter: .*
proxies:
- 127.0.0.1_OpenAI_Claude1
- 127.0.0.1_OpenAI_Claude2
- 127.0.0.1_OpenAI_Claude3
- 218.237.185.230_OpenAI_Claude
- 221.139.79.20_OpenAI
- 221.139.79.41_OpenAI_Claude
- DE_Düsseldorf_WIIT AG_OpenAI_Claude
- DE_Nuremberg_DASABO OU_OpenAI_Claude
- FR_Paris_Amazon Technologies Inc._OpenAI_Claude
- FR_Paris_Redheberg SAS_OpenAI_Claude
- GB_London_BrainStorm Network, Inc_OpenAI_Claude
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude2
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude3
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude4
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude5
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude6
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude7
- JP_Tokyo_Amazon Technologies Inc_Claude
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude2
- JP_Tokyo_Amazon.com, Inc._OpenAI_Claude
- JP_Tokyo_Kddi Corporation_OpenAI_Claude
- JP_Tokyo_Oracle Corporation_OpenAI_Claude
- KR_Chuncheon_Oracle Corporation_OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- NL_Amsterdam_Greenhost BV_OpenAI_Claude
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude1
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude2
- RU_Moscow_LLC Baxet1
- RU_Moscow_LLC Baxet2
- SE_Stockholm_Aeza International LTD_OpenAI_Claude
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude1
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude2
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude3
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude4
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude5
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude6
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude1
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude2
- US_Las Vegas_Hostodo_OpenAI_Claude
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_GTHost_OpenAI_Claude4
- US_Los Angeles_GTHost_OpenAI_Claude5
- US_Los Angeles_GTHost_OpenAI_Claude6
- US_Los Angeles_HostPapa_OpenAI_Claude
- US_Los Angeles_Multacom Corporation_OpenAI_Claude
- US_New York_Cloudflare, Inc._OpenAI_Claude
- US_North Bergen_ReadyDedis, LLC_OpenAI_Claude
- US_Phoenix_Oracle Corporation_OpenAI_Claude
- US_Portland_Amazon.com, Inc._OpenAI_Claude1
- US_Portland_Amazon.com, Inc._OpenAI_Claude2
- US_Portland_Amazon.com, Inc._OpenAI_Claude3
- US_The Dalles_Google LLC_OpenAI_Claude
- github.com/Ruk1ng001_1
- github.com/Ruk1ng001_2
- github.com/Ruk1ng001_3
- ❓_🇺🇸_💻_github.com/Ruk1ng001_1
- ❓_🇺🇸_💻_github.com/Ruk1ng001_2
- ❓_🇺🇸_💻_github.com/Ruk1ng001_3
- name: Fallback
type: fallback
url: http://www.google.com/generate_204
interval: 600
proxies:
- HK
- TW
- JP
- SG
- US
- name: HK
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- DIRECT
filter: (?i)港|HK|HongKong|hong kong
- name: TW
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- DIRECT
filter: 台湾|TW|Tw|Taiwan|新北|彰化|CHT|HINET
- name: JP
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude2
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude3
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude4
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude5
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude6
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude7
- JP_Tokyo_Amazon Technologies Inc_Claude
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude2
- JP_Tokyo_Amazon.com, Inc._OpenAI_Claude
- JP_Tokyo_Kddi Corporation_OpenAI_Claude
- JP_Tokyo_Oracle Corporation_OpenAI_Claude
filter: (?i)日|东京|大阪|JP|Japan|Tokyo|Osaka|Saitama
- name: SG
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude1
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude2
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude3
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude4
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude5
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude6
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude1
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude2
filter: (?i)新|狮城|SG|Singapore
- name: US
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- US_Las Vegas_Hostodo_OpenAI_Claude
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_GTHost_OpenAI_Claude4
- US_Los Angeles_GTHost_OpenAI_Claude5
- US_Los Angeles_GTHost_OpenAI_Claude6
- US_Los Angeles_HostPapa_OpenAI_Claude
- US_Los Angeles_Multacom Corporation_OpenAI_Claude
- US_New York_Cloudflare, Inc._OpenAI_Claude
- US_North Bergen_ReadyDedis, LLC_OpenAI_Claude
- US_Phoenix_Oracle Corporation_OpenAI_Claude
- US_Portland_Amazon.com, Inc._OpenAI_Claude1
- US_Portland_Amazon.com, Inc._OpenAI_Claude2
- US_Portland_Amazon.com, Inc._OpenAI_Claude3
- US_The Dalles_Google LLC_OpenAI_Claude
filter: (?i)美|洛杉矶|芝加哥|西雅图|America|US|United.*?States
- name: OpenAI
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- 127.0.0.1_OpenAI_Claude1
- 127.0.0.1_OpenAI_Claude2
- 127.0.0.1_OpenAI_Claude3
- 218.237.185.230_OpenAI_Claude
- 221.139.79.20_OpenAI
- 221.139.79.41_OpenAI_Claude
- DE_Düsseldorf_WIIT AG_OpenAI_Claude
- DE_Nuremberg_DASABO OU_OpenAI_Claude
- FR_Paris_Amazon Technologies Inc._OpenAI_Claude
- FR_Paris_Redheberg SAS_OpenAI_Claude
- GB_London_BrainStorm Network, Inc_OpenAI_Claude
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude2
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude3
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude4
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude5
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude6
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude7
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude2
- JP_Tokyo_Amazon.com, Inc._OpenAI_Claude
- JP_Tokyo_Kddi Corporation_OpenAI_Claude
- JP_Tokyo_Oracle Corporation_OpenAI_Claude
- KR_Chuncheon_Oracle Corporation_OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- NL_Amsterdam_Greenhost BV_OpenAI_Claude
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude1
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude2
- SE_Stockholm_Aeza International LTD_OpenAI_Claude
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude1
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude2
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude3
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude4
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude5
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude6
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude1
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude2
- US_Las Vegas_Hostodo_OpenAI_Claude
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_GTHost_OpenAI_Claude4
- US_Los Angeles_GTHost_OpenAI_Claude5
- US_Los Angeles_GTHost_OpenAI_Claude6
- US_Los Angeles_HostPapa_OpenAI_Claude
- US_Los Angeles_Multacom Corporation_OpenAI_Claude
- US_New York_Cloudflare, Inc._OpenAI_Claude
- US_North Bergen_ReadyDedis, LLC_OpenAI_Claude
- US_Phoenix_Oracle Corporation_OpenAI_Claude
- US_Portland_Amazon.com, Inc._OpenAI_Claude1
- US_Portland_Amazon.com, Inc._OpenAI_Claude2
- US_Portland_Amazon.com, Inc._OpenAI_Claude3
- US_The Dalles_Google LLC_OpenAI_Claude
filter: (?i)OpenAI
- name: Claude
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- 127.0.0.1_OpenAI_Claude1
- 127.0.0.1_OpenAI_Claude2
- 127.0.0.1_OpenAI_Claude3
- 218.237.185.230_OpenAI_Claude
- 221.139.79.41_OpenAI_Claude
- DE_Düsseldorf_WIIT AG_OpenAI_Claude
- DE_Nuremberg_DASABO OU_OpenAI_Claude
- FR_Paris_Amazon Technologies Inc._OpenAI_Claude
- FR_Paris_Redheberg SAS_OpenAI_Claude
- GB_London_BrainStorm Network, Inc_OpenAI_Claude
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude2
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude3
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude4
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude5
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude6
- JP_Tokyo_Amazon Technologies Inc._OpenAI_Claude7
- JP_Tokyo_Amazon Technologies Inc_Claude
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude1
- JP_Tokyo_Amazon Technologies Inc_OpenAI_Claude2
- JP_Tokyo_Amazon.com, Inc._OpenAI_Claude
- JP_Tokyo_Kddi Corporation_OpenAI_Claude
- JP_Tokyo_Oracle Corporation_OpenAI_Claude
- KR_Chuncheon_Oracle Corporation_OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- NL_Amsterdam_Greenhost BV_OpenAI_Claude
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude1
- NO_Lorenskog_Microsoft Corporation_OpenAI_Claude2
- SE_Stockholm_Aeza International LTD_OpenAI_Claude
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude1
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude2
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude3
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude4
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude5
- SG_Singapore_Amazon Technologies Inc._OpenAI_Claude6
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude1
- SG_Singapore_Amazon.com, Inc._OpenAI_Claude2
- US_Las Vegas_Hostodo_OpenAI_Claude
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_GTHost_OpenAI_Claude4
- US_Los Angeles_GTHost_OpenAI_Claude5
- US_Los Angeles_GTHost_OpenAI_Claude6
- US_Los Angeles_HostPapa_OpenAI_Claude
- US_Los Angeles_Multacom Corporation_OpenAI_Claude
- US_New York_Cloudflare, Inc._OpenAI_Claude
- US_North Bergen_ReadyDedis, LLC_OpenAI_Claude
- US_Phoenix_Oracle Corporation_OpenAI_Claude
- US_Portland_Amazon.com, Inc._OpenAI_Claude1
- US_Portland_Amazon.com, Inc._OpenAI_Claude2
- US_Portland_Amazon.com, Inc._OpenAI_Claude3
- US_The Dalles_Google LLC_OpenAI_Claude
filter: (?i)Claude
rules:
- RULE-SET,ads,REJECT
- RULE-SET,applications,DIRECT
- RULE-SET,private,DIRECT
- RULE-SET,apple-cn,DIRECT
- RULE-SET,games-cn,DIRECT
- RULE-SET,google-cn,DIRECT
- RULE-SET,bilibili,DIRECT
- RULE-SET,cn,DIRECT
- RULE-SET,claude,Claude
- RULE-SET,ai,OpenAI
- RULE-SET,youtube,PROXY
- RULE-SET,telegramip,PROXY,no-resolve
- RULE-SET,privateip,DIRECT,no-resolve
- RULE-SET,cnip,DIRECT,no-resolve
- GEOIP,LAN,DIRECT,no-resolve
- GEOIP,CN,DIRECT,no-resolve
- MATCH,PROXY
rule-providers:
fakeip-filter:
type: http
behavior: domain
format: mrs
path: ./rules/fakeip-filter.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/fakeip-filter.mrs
interval: 86400
ads:
type: http
behavior: domain
format: mrs
path: ./rules/ads.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/ads.mrs
interval: 86400
applications:
type: http
behavior: classical
format: text
path: ./rules/applications.list
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/applications.list
interval: 86400
private:
type: http
behavior: domain
format: mrs
path: ./rules/private.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/private.mrs
interval: 86400
games-cn:
type: http
behavior: domain
format: mrs
path: ./rules/games-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/games-cn.mrs
interval: 86400
microsoft-cn:
type: http
behavior: domain
format: mrs
path: ./rules/microsoft-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/microsoft-cn.mrs
interval: 86400
apple-cn:
type: http
behavior: domain
format: mrs
path: ./rules/apple-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/apple-cn.mrs
interval: 86400
google-cn:
type: http
behavior: domain
format: mrs
path: ./rules/google-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/google-cn.mrs
interval: 86400
bilibili:
type: http
behavior: domain
format: mrs
path: ./rules/bilibili.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/bilibili.mrs
interval: 86400
ai:
type: http
behavior: domain
format: mrs
path: ./rules/ai.mrs
url: https://github.com/ReaJason/Clash-Butler/raw/refs/heads/master/rules/ai/ai.mrs
interval: 86400
claude:
type: http
behavior: domain
format: mrs
path: ./rules/claude.mrs
url: https://github.com/ReaJason/Clash-Butler/raw/refs/heads/master/rules/claude/claude.mrs
interval: 86400
youtube:
type: http
behavior: domain
format: mrs
path: ./rules/youtube.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/youtube.mrs
interval: 86400
cn:
type: http
behavior: domain
format: mrs
path: ./rules/cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/cn.mrs
interval: 86400
telegramip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/telegramip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/telegramip.mrs
interval: 86400
privateip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/privateip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/privateip.mrs
interval: 86400
cnip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/cnip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/cnip.mrs
interval: 86400