mirror of
https://github.com/KaringX/karing-ruleset.git
synced 2025-06-08 05:34:14 +08:00
Released on
This commit is contained in:
commit
4a8c3a4f38
15
.github/dependabot.yml
vendored
Executable file
15
.github/dependabot.yml
vendored
Executable file
@ -0,0 +1,15 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
timezone: "Asia/Shanghai"
|
||||
time: "07:00"
|
||||
pull-request-branch-name:
|
||||
separator: "-"
|
16
.github/workflows/delete.yml
vendored
Executable file
16
.github/workflows/delete.yml
vendored
Executable file
@ -0,0 +1,16 @@
|
||||
name: Delete old workflow runs
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
# Run monthly, at 00:00 on the 1st day of month.
|
||||
|
||||
jobs:
|
||||
del_runs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Delete workflow runs
|
||||
uses: GitRML/delete-workflow-runs@main
|
||||
with:
|
||||
token: ${{ secrets.GH_TOKEN }}
|
||||
repository: ${{ github.repository }}
|
||||
retain_days: 7
|
142
.github/workflows/run.yml
vendored
Normal file
142
.github/workflows/run.yml
vendored
Normal file
@ -0,0 +1,142 @@
|
||||
name: Convert other rules to sing-box rule set
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "30 14 * * *" # 6:30 AM UTC+8
|
||||
push:
|
||||
branches:
|
||||
- workflow
|
||||
paths-ignore:
|
||||
- "**/README.md"
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout scripts
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: KaringX/karing-ruleset
|
||||
path: workflow
|
||||
ref: workflow
|
||||
|
||||
- name: Checkout ACL4SSR
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ACL4SSR/ACL4SSR
|
||||
path: ACL4SSR
|
||||
ref: master
|
||||
|
||||
- name: Convert json files
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
mkdir -p ./sing-rule/ACL4SSR/Ruleset
|
||||
cd sing-rule || exit 1
|
||||
python ../workflow/resouces/convert_json.py ../ACL4SSR/Clash ./ACL4SSR
|
||||
|
||||
- name: Convert json to srs
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
cd sing-rule || exit 1
|
||||
wget -q https://github.com/SagerNet/sing-box/releases/download/v1.10.7/sing-box-1.10.7-linux-amd64.tar.gz -O sing-box.tar.gz && tar zxvf sing-box.tar.gz && mv sing-box-1.10.7-linux-amd64/sing-box ./
|
||||
chmod 755 sing-box
|
||||
bash ../workflow/resouces/convert_srs.sh ./sing-box ./ACL4SSR
|
||||
cp ./ACL4SSR/Ruleset/*.srs ./ACL4SSR
|
||||
|
||||
- name: Checkout meta-rules-dat
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: MetaCubeX/meta-rules-dat
|
||||
path: meta-rules-dat
|
||||
ref: sing
|
||||
|
||||
- name: Checkout Iran-sing-box-rules
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: Chocolate4U/Iran-sing-box-rules
|
||||
path: Iran-sing-box-rules
|
||||
ref: rule-set
|
||||
|
||||
- name: Checkout hiddify-geo
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: hiddify/hiddify-geo
|
||||
path: hiddify-geo
|
||||
ref: rule-set
|
||||
|
||||
- name: IR copy geo rules
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
cd sing-rule || exit 1
|
||||
cp -r ../meta-rules-dat/geo ./
|
||||
bash ../workflow/resouces/merge_geo_ir.sh ./geo ../Iran-sing-box-rules/
|
||||
|
||||
- name: CN adblockfilters
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
bash workflow/resouces/cn_adblockfilters.sh ./sing-rule
|
||||
|
||||
- name: Checkout runetfreedom
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: runetfreedom/russia-v2ray-rules-dat
|
||||
path: runetfreedom
|
||||
ref: release
|
||||
|
||||
- name: RU antizapret
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
bash workflow/resouces/ru_antizapret.sh ./sing-rule
|
||||
|
||||
- name: maker karing built-in rule-set group
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
mkdir -p ./sing-rule/recommend
|
||||
python workflow/resouces/kr_builtin_ruleset.py ./sing-rule/
|
||||
|
||||
# - name: convert AdGuardSDNSFilter to srs
|
||||
# env:
|
||||
# NO_SKIP: true
|
||||
# run: |
|
||||
# python workflow/resouces/convert_adguard.py ./sing-rule/
|
||||
#
|
||||
- name: rm sing-box files
|
||||
env:
|
||||
NO_SKIP: true
|
||||
run: |
|
||||
cd sing-rule || exit 1
|
||||
rm -rf sing-box* LICENSE README.md
|
||||
|
||||
- name: Git push assets to "sing-rule" branch
|
||||
run: |
|
||||
cd sing-rule || exit 1
|
||||
cp ../workflow/README.md . && cp -r ../workflow/.github .
|
||||
git init
|
||||
git config --local user.name "github-actions[bot]"
|
||||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git checkout -b sing
|
||||
git add .
|
||||
git commit -m "Released on ${{ env.BUILDTIME }}"
|
||||
git remote add origin "https://${{ github.actor }}:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}"
|
||||
git push -f -u origin sing
|
||||
|
||||
- name: Purge jsdelivr CDN
|
||||
# find . -type f \( -name "*.json" -o -name "*.srs" \) -printf "%P\n" | while read file; do
|
||||
# curl -i -Ls "https://purge.jsdelivr.net/gh/${{ github.repository }}@sing/${file}"
|
||||
# echo -e "\t${file} PURGE...\n"
|
||||
# done
|
||||
run: |
|
||||
cd sing-rule/ || exit 1
|
||||
for file in $(ls); do
|
||||
curl -i "https://purge.jsdelivr.net/gh/${{ github.repository }}@sing/${file}"
|
||||
done
|
||||
curl -i -Ls "https://purge.jsdelivr.net/gh/KaringX/karing-ruleset@sing/ACL4SSR"
|
||||
curl -i -Ls "https://purge.jsdelivr.net/gh/KaringX/karing-ruleset@sing/ACL4SSR/Ruleset"
|
||||
curl -i -Ls "https://purge.jsdelivr.net/gh/KaringX/karing-ruleset@sing/geo/geoip"
|
||||
curl -i -Ls "https://purge.jsdelivr.net/gh/KaringX/karing-ruleset@sing/geo/geosite"
|
||||
|
BIN
ACL4SSR/360.srs
Normal file
BIN
ACL4SSR/360.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/4399.srs
Normal file
BIN
ACL4SSR/4399.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/58.srs
Normal file
BIN
ACL4SSR/58.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ABC.srs
Normal file
BIN
ACL4SSR/ABC.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AI.srs
Normal file
BIN
ACL4SSR/AI.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AbemaTV.srs
Normal file
BIN
ACL4SSR/AbemaTV.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AccelerateDirectSites.srs
Normal file
BIN
ACL4SSR/AccelerateDirectSites.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Adobe.srs
Normal file
BIN
ACL4SSR/Adobe.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Alibaba.srs
Normal file
BIN
ACL4SSR/Alibaba.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/All4.srs
Normal file
BIN
ACL4SSR/All4.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Amazon.srs
Normal file
BIN
ACL4SSR/Amazon.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AmazonIp.srs
Normal file
BIN
ACL4SSR/AmazonIp.srs
Normal file
Binary file not shown.
1
ACL4SSR/Apple.json
Normal file
1
ACL4SSR/Apple.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"domain": ["apple.comscoreresearch.com"], "domain_suffix": ["aaplimg.com", "akadns.net", "apple-cloudkit.com", "apple-dns.net", "apple-mapkit.com", "apple.co", "apple.com", "apple.com.cn", "apple.news", "appstore.com", "cdn-apple.com", "crashlytics.com", "icloud-content.com", "icloud.com", "icloud.com.cn", "itunes.com", "me.com", "mzstatic.com"], "ip_cidr": ["17.0.0.0/8", "63.92.224.0/19", "65.199.22.0/23", "139.178.128.0/18", "144.178.0.0/19", "144.178.36.0/22", "144.178.48.0/20", "192.35.50.0/24", "198.183.17.0/24", "205.180.175.0/24"]}]}
|
BIN
ACL4SSR/Apple.srs
Normal file
BIN
ACL4SSR/Apple.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AppleNews.srs
Normal file
BIN
ACL4SSR/AppleNews.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/AppleTV.srs
Normal file
BIN
ACL4SSR/AppleTV.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/BBC.srs
Normal file
BIN
ACL4SSR/BBC.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/BBCiPlayer.srs
Normal file
BIN
ACL4SSR/BBCiPlayer.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Bahamut.srs
Normal file
BIN
ACL4SSR/Bahamut.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Baidu.srs
Normal file
BIN
ACL4SSR/Baidu.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanAD.json
Normal file
1
ACL4SSR/BanAD.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/BanAD.srs
Normal file
BIN
ACL4SSR/BanAD.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanADCompany.json
Normal file
1
ACL4SSR/BanADCompany.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"domain_suffix": ["adtago.s3.amazonaws.com", "analyticsengine.s3.amazonaws.com", "analytics.s3.amazonaws.com", "advice-ads.s3.amazonaws.com", "pagead2.googlesyndication.com", "adservice.google.com", "pagead2.googleadservices.com", "afs.googlesyndication.com", "stats.g.doubleclick.net", "ad.doubleclick.net", "static.doubleclick.net", "m.doubleclick.net", "mediavisor.doubleclick.net", "ads30.adcolony.com", "adc3-launch.adcolony.com", "events3alt.adcolony.com", "wd.adcolony.com", "static.media.net", "media.net", "adservetx.media.net", "analytics.google.com", "click.googleanalytics.com", "google-analytics.com", "ssl.google-analytics.com", "adm.hotjar.com", "identify.hotjar.com", "insights.hotjar.com", "script.hotjar.com", "surveys.hotjar.com", "careers.hotjar.com", "events.hotjar.io", "mouseflow.com", "cdn.mouseflow.com", "o2.mouseflow.com", "gtm.mouseflow.com", "api.mouseflow.com", "tools.mouseflow.com", "cdn-test.mouseflow.com", "freshmarketer.com", "claritybt.freshmarketer.com", "fwtracks.freshmarketer.com", "luckyorange.com", "api.luckyorange.com", "realtime.luckyorange.com", "cdn.luckyorange.com", "w1.luckyorange.com", "upload.luckyorange.net", "cs.luckyorange.net", "settings.luckyorange.net", "stats.wp.com", "notify.bugsnag.com", "sessions.bugsnag.com", "api.bugsnag.com", "app.bugsnag.com", "browser.sentry-cdn.com", "app.getsentry.com", "pixel.facebook.com", "an.facebook.com", "static.ads-twitter.com", "ads-api.twitter.com", "ads.linkedin.com", "analytics.pointdrive.linkedin.com", "ads.pinterest.com", "log.pinterest.com", "analytics.pinterest.com", "trk.pinterest.com", "events.reddit.com", "events.redditmedia.com", "ads.youtube.com", "ads-api.tiktok.com", "analytics.tiktok.com", "ads-sg.tiktok.com", "analytics-sg.tiktok.com", "business-api.tiktok.com", "ads.tiktok.com", "log.byteoversea.com", "ads.yahoo.com", "analytics.yahoo.com", "geo.yahoo.com", "udc.yahoo.com", "udcm.yahoo.com", "analytics.query.yahoo.com", "partnerads.ysm.yahoo.com", "log.fc.yahoo.com", "gemini.yahoo.com", "adtech.yahooinc.com", "extmaps-api.yandex.net", "appmetrica.yandex.ru", "adfstat.yandex.ru", "metrika.yandex.ru", "offerwall.yandex.net", "adfox.yandex.ru", "auction.unityads.unity3d.com", "webview.unityads.unity3d.com", "config.unityads.unity3d.com", "adserver.unityads.unity3d.com", "iot-eu-logser.realme.com", "iot-logser.realme.com", "bdapi-ads.realmemobile.com", "bdapi-in-ads.realmemobile.com", "api.ad.xiaomi.com", "data.mistat.xiaomi.com", "data.mistat.india.xiaomi.com", "data.mistat.rus.xiaomi.com", "sdkconfig.ad.xiaomi.com", "sdkconfig.ad.intl.xiaomi.com", "tracking.rus.miui.com", "adsfs.oppomobile.com", "adx.ads.oppomobile.com", "ck.ads.oppomobile.com", "data.ads.oppomobile.com", "metrics.data.hicloud.com", "metrics2.data.hicloud.com", "grs.hicloud.com", "logservice.hicloud.com", "logservice1.hicloud.com", "logbak.hicloud.com", "click.oneplus.cn", "open.oneplus.net", "samsungads.com", "smetrics.samsung.com", "nmetrics.samsung.com", "samsung-com.112.2o7.net", "analytics-api.samsunghealthcn.com", "iadsdk.apple.com", "metrics.icloud.com", "metrics.mzstatic.com", "api-adservices.apple.com", "books-analytics-events.apple.com", "weather-analytics-events.apple.com", "notes-analytics-events.apple.com"]}]}
|
BIN
ACL4SSR/BanADCompany.srs
Normal file
BIN
ACL4SSR/BanADCompany.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanEasyList.json
Normal file
1
ACL4SSR/BanEasyList.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/BanEasyList.srs
Normal file
BIN
ACL4SSR/BanEasyList.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanEasyListChina.json
Normal file
1
ACL4SSR/BanEasyListChina.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/BanEasyListChina.srs
Normal file
BIN
ACL4SSR/BanEasyListChina.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanEasyPrivacy.json
Normal file
1
ACL4SSR/BanEasyPrivacy.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/BanEasyPrivacy.srs
Normal file
BIN
ACL4SSR/BanEasyPrivacy.srs
Normal file
Binary file not shown.
1
ACL4SSR/BanProgramAD.json
Normal file
1
ACL4SSR/BanProgramAD.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/BanProgramAD.srs
Normal file
BIN
ACL4SSR/BanProgramAD.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Bilibili.srs
Normal file
BIN
ACL4SSR/Bilibili.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/BilibiliHMT.srs
Normal file
BIN
ACL4SSR/BilibiliHMT.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Binance.srs
Normal file
BIN
ACL4SSR/Binance.srs
Normal file
Binary file not shown.
1
ACL4SSR/Bing.json
Normal file
1
ACL4SSR/Bing.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"domain_suffix": ["bing.com", "copilot.cloud.microsoft", "copilot.microsoft.com"]}]}
|
BIN
ACL4SSR/Bing.srs
Normal file
BIN
ACL4SSR/Bing.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Blizzard.srs
Normal file
BIN
ACL4SSR/Blizzard.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ByteDance.srs
Normal file
BIN
ACL4SSR/ByteDance.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/CCTV.srs
Normal file
BIN
ACL4SSR/CCTV.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/CN.srs
Normal file
BIN
ACL4SSR/CN.srs
Normal file
Binary file not shown.
1
ACL4SSR/ChinaCompanyIp.json
Normal file
1
ACL4SSR/ChinaCompanyIp.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"ip_cidr": ["8.128.0.0/10", "8.209.32.0/22", "8.209.40.0/21", "8.209.48.0/20", "8.210.0.0/16", "8.211.64.0/18", "8.211.128.0/20", "8.211.144.0/21", "8.211.152.0/22", "8.211.208.0/20", "8.211.224.0/19", "8.212.0.0/14", "8.216.0.0/13", "14.1.112.0/22", "45.112.212.0/22", "47.52.0.0/16", "47.56.0.0/15", "47.75.0.0/16", "47.89.0.0/18", "47.89.64.0/24", "47.89.82.0/23", "47.89.91.0/24", "47.89.100.0/23", "47.90.0.0/17", "47.91.128.0/17", "47.92.0.0/14", "47.240.0.0/16", "47.242.0.0/15", "47.244.0.0/16", "47.246.5.0/24", "47.246.16.0/24", "47.246.60.0/23", "47.246.65.0/24", "59.82.0.0/20", "59.82.240.0/21", "59.82.248.0/22", "103.52.76.0/22", "103.206.40.0/22", "110.76.21.0/24", "110.76.23.0/24", "112.125.0.0/17", "116.251.79.0/24", "116.251.80.0/22", "116.251.84.0/24", "116.251.88.0/22", "116.251.93.0/24", "116.251.94.0/23", "116.251.102.0/23", "116.251.104.0/21", "116.251.112.0/21", "116.251.124.0/22", "119.38.208.0/20", "119.38.224.0/20", "119.42.224.0/20", "140.205.1.0/24", "140.205.122.0/24", "149.129.64.0/18", "163.181.32.0/22", "163.181.40.0/24", "170.33.0.0/22", "198.11.141.0/24", "198.11.184.0/21", "205.204.104.0/23", "205.204.117.0/24", "205.204.122.0/23", "205.204.124.0/22", "45.40.192.0/19", "49.51.56.0/22", "49.51.60.0/23", "49.51.110.0/23", "49.51.112.0/20", "62.234.0.0/16", "94.191.0.0/17", "103.7.28.0/22", "109.244.0.0/16", "111.30.128.0/21", "111.30.136.0/24", "111.30.139.0/24", "111.30.140.0/23", "115.159.0.0/16", "119.28.0.0/18", "119.28.64.0/19", "119.28.124.0/23", "119.28.128.0/20", "119.28.164.0/22", "119.28.168.0/21", "119.28.176.0/20", "119.28.192.0/19", "119.28.224.0/21", "119.29.0.0/16", "121.51.0.0/16", "129.28.0.0/16", "129.204.0.0/16", "129.211.0.0/16", "132.232.0.0/16", "134.175.0.0/16", "146.56.192.0/18", "150.109.32.0/19", "150.109.64.0/20", "150.109.96.0/19", "152.136.0.0/16", "162.14.0.0/16", "182.254.0.0/16", "188.131.128.0/17", "203.195.128.0/17", "203.205.128.0/20", "203.205.144.0/21", "203.205.158.0/24", "203.205.180.0/22", "203.205.208.0/22", "203.205.212.0/23", "203.205.218.0/23", "203.205.220.0/22", "203.205.248.0/21", "212.64.0.0/17", "212.129.128.0/17", "45.113.194.0/23", "63.243.252.0/24", "103.235.44.0/22", "106.12.0.0/15", "114.28.224.0/20", "180.76.0.0/16", "182.61.0.0/16", "185.10.105.0/24", "202.46.48.0/20", "203.90.238.0/24", "43.254.0.0/22", "45.249.212.0/22", "49.4.0.0/17", "103.31.200.0/22", "103.218.216.0/22", "114.115.128.0/17", "114.116.0.0/16", "116.63.128.0/18", "116.66.184.0/22", "117.78.0.0/18", "119.3.0.0/16", "119.8.32.0/19", "121.36.0.0/17", "121.36.128.0/18", "121.37.0.0/17", "122.112.128.0/17", "139.9.0.0/18", "139.9.64.0/19", "139.9.100.0/22", "139.9.104.0/21", "139.9.112.0/20", "139.9.128.0/18", "139.9.192.0/19", "139.9.224.0/20", "139.9.240.0/21", "139.9.248.0/22", "139.159.128.0/19", "139.159.160.0/22", "139.159.164.0/23", "139.159.168.0/21", "139.159.176.0/20", "139.159.192.0/18", "159.138.0.0/18", "159.138.64.0/21", "159.138.79.0/24", "159.138.80.0/20", "159.138.96.0/20", "159.138.112.0/21", "159.138.125.0/24", "159.138.128.0/19", "42.186.0.0/16", "45.127.128.0/22", "45.195.24.0/24", "45.253.132.0/22", "45.253.240.0/22", "45.254.48.0/23", "59.111.0.0/20", "59.111.128.0/17", "103.71.120.0/21", "103.71.128.0/22", "103.71.196.0/22", "103.71.200.0/22", "103.72.12.0/22", "103.72.18.0/23", "103.72.24.0/22", "103.72.28.0/23", "103.72.38.0/23", "103.72.40.0/23", "103.72.44.0/22", "103.72.48.0/21", "103.72.128.0/21", "103.74.24.0/21", "103.74.48.0/22", "103.129.252.0/22", "103.131.252.0/22", "103.135.240.0/22", "103.196.64.0/22", "106.2.32.0/19", "106.2.64.0/18", "114.113.196.0/22", "114.113.200.0/22", "115.236.112.0/20", "115.238.76.0/22", "123.58.160.0/19", "223.252.192.0/19", "101.198.128.0/18", "101.198.192.0/24", "101.198.194.0/23", "101.198.196.0/22", "101.198.200.0/21", "101.198.208.0/20", "101.199.196.0/22"]}]}
|
BIN
ACL4SSR/ChinaCompanyIp.srs
Normal file
BIN
ACL4SSR/ChinaCompanyIp.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ChinaDNS.srs
Normal file
BIN
ACL4SSR/ChinaDNS.srs
Normal file
Binary file not shown.
1
ACL4SSR/ChinaDomain.json
Normal file
1
ACL4SSR/ChinaDomain.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/ChinaDomain.srs
Normal file
BIN
ACL4SSR/ChinaDomain.srs
Normal file
Binary file not shown.
1
ACL4SSR/ChinaIp.json
Normal file
1
ACL4SSR/ChinaIp.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/ChinaIp.srs
Normal file
BIN
ACL4SSR/ChinaIp.srs
Normal file
Binary file not shown.
1
ACL4SSR/ChinaIpV6.json
Normal file
1
ACL4SSR/ChinaIpV6.json
Normal file
File diff suppressed because one or more lines are too long
BIN
ACL4SSR/ChinaIpV6.srs
Normal file
BIN
ACL4SSR/ChinaIpV6.srs
Normal file
Binary file not shown.
1
ACL4SSR/ChinaMedia.json
Normal file
1
ACL4SSR/ChinaMedia.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"domain": ["apiintl.biliapi.net", "upos-hz-mirrorakam.akamaized.net", "intel-cache.m.iqiyi.com", "intel-cache.video.iqiyi.com", "intl-rcd.iqiyi.com", "intl-subscription.iqiyi.com"], "domain_suffix": ["acg.tv", "acgvideo.com", "b23.tv", "bigfun.cn", "bigfunapp.cn", "biliapi.com", "biliapi.net", "bilibili.com", "bilibili.tv", "biligame.com", "biligame.net", "bilivideo.cn", "bilivideo.com", "hdslb.com", "im9.com", "smtcdns.net", "inter.iqiyi.com", "inter.ptqy.gitv.tv", "intl.iqiyi.com", "iq.com", "api.mob.app.letv.com", "v.smtcdns.com", "vv.video.qq.com", "youku.com"], "ip_cidr": ["23.40.241.251/32", "23.40.242.10/32", "103.44.56.0/22", "118.26.32.0/23", "118.26.120.0/24", "223.119.62.225/28", "106.11.0.0/16"]}]}
|
BIN
ACL4SSR/ChinaMedia.srs
Normal file
BIN
ACL4SSR/ChinaMedia.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ChinaNet.srs
Normal file
BIN
ACL4SSR/ChinaNet.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ChinaOneKeyLogin.srs
Normal file
BIN
ACL4SSR/ChinaOneKeyLogin.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Claude.srs
Normal file
BIN
ACL4SSR/Claude.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ClaudeAI.srs
Normal file
BIN
ACL4SSR/ClaudeAI.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Crypto.srs
Normal file
BIN
ACL4SSR/Crypto.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/DAZN.srs
Normal file
BIN
ACL4SSR/DAZN.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Deezer.srs
Normal file
BIN
ACL4SSR/Deezer.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Developer.srs
Normal file
BIN
ACL4SSR/Developer.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/DiDi.srs
Normal file
BIN
ACL4SSR/DiDi.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Discord.srs
Normal file
BIN
ACL4SSR/Discord.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/DiscoveryPlus.srs
Normal file
BIN
ACL4SSR/DiscoveryPlus.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/DisneyPlus.srs
Normal file
BIN
ACL4SSR/DisneyPlus.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Dmm.srs
Normal file
BIN
ACL4SSR/Dmm.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Docker.srs
Normal file
BIN
ACL4SSR/Docker.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Douyu.srs
Normal file
BIN
ACL4SSR/Douyu.srs
Normal file
Binary file not shown.
1
ACL4SSR/Download.json
Normal file
1
ACL4SSR/Download.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"process_name": ["aria2c.exe", "fdm.exe", "Folx.exe", "NetTransport.exe", "Thunder.exe", "Transmission.exe", "uTorrent.exe", "WebTorrent.exe", "WebTorrent Helper.exe", "qbittorrent.exe", "DownloadService.exe", "Weiyun.exe", "baidunetdisk.exe"], "domain_suffix": ["smtp"], "domain_keyword": ["aria2"]}]}
|
BIN
ACL4SSR/Download.srs
Normal file
BIN
ACL4SSR/Download.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Dubox.srs
Normal file
BIN
ACL4SSR/Dubox.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/EHGallery.srs
Normal file
BIN
ACL4SSR/EHGallery.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/EncoreTVB.srs
Normal file
BIN
ACL4SSR/EncoreTVB.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Epic.srs
Normal file
BIN
ACL4SSR/Epic.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/F1.srs
Normal file
BIN
ACL4SSR/F1.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Facebook.srs
Normal file
BIN
ACL4SSR/Facebook.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/FoxNow.srs
Normal file
BIN
ACL4SSR/FoxNow.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/GameDownload.srs
Normal file
BIN
ACL4SSR/GameDownload.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Gemini.srs
Normal file
BIN
ACL4SSR/Gemini.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Github.srs
Normal file
BIN
ACL4SSR/Github.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Google.srs
Normal file
BIN
ACL4SSR/Google.srs
Normal file
Binary file not shown.
1
ACL4SSR/GoogleCN.json
Normal file
1
ACL4SSR/GoogleCN.json
Normal file
@ -0,0 +1 @@
|
||||
{"version": 1, "rules": [{"domain_suffix": ["265.com", "2mdn.net", "alt1-mtalk.google.com", "alt2-mtalk.google.com", "alt3-mtalk.google.com", "alt4-mtalk.google.com", "alt5-mtalk.google.com", "alt6-mtalk.google.com", "alt7-mtalk.google.com", "alt8-mtalk.google.com", "app-measurement.com", "cache.pack.google.com", "clickserve.dartsearch.net", "crl.pki.goog", "dl.google.com", "dl.l.google.com", "googletagmanager.com", "googletagservices.com", "gtm.oasisfeng.com", "mtalk.google.com", "ocsp.pki.goog", "recaptcha.net", "safebrowsing-cache.google.com", "settings.crashlytics.com", "ssl-google-analytics.l.google.com", "toolbarqueries.google.com", "tools.google.com", "tools.l.google.com", "www-googletagmanager.l.google.com"]}]}
|
BIN
ACL4SSR/GoogleCN.srs
Normal file
BIN
ACL4SSR/GoogleCN.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/GoogleCNProxyIP.srs
Normal file
BIN
ACL4SSR/GoogleCNProxyIP.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/GoogleEarth.srs
Normal file
BIN
ACL4SSR/GoogleEarth.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/GoogleFCM.srs
Normal file
BIN
ACL4SSR/GoogleFCM.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/HBO.srs
Normal file
BIN
ACL4SSR/HBO.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/HBO_GO_HKG.srs
Normal file
BIN
ACL4SSR/HBO_GO_HKG.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/HWTV.srs
Normal file
BIN
ACL4SSR/HWTV.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Heytap.srs
Normal file
BIN
ACL4SSR/Heytap.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/HuaWei.srs
Normal file
BIN
ACL4SSR/HuaWei.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Hulu.srs
Normal file
BIN
ACL4SSR/Hulu.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/HuluJapan.srs
Normal file
BIN
ACL4SSR/HuluJapan.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/ITV.srs
Normal file
BIN
ACL4SSR/ITV.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Iflytek.srs
Normal file
BIN
ACL4SSR/Iflytek.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Instagram.srs
Normal file
BIN
ACL4SSR/Instagram.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/Iqiyi.srs
Normal file
BIN
ACL4SSR/Iqiyi.srs
Normal file
Binary file not shown.
BIN
ACL4SSR/IqiyiHMT.srs
Normal file
BIN
ACL4SSR/IqiyiHMT.srs
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user