Compare commits
No commits in common. 'main' and 'automation' have entirely different histories.
main
...
automation
@ -0,0 +1,71 @@
|
|||||||
|
name: Build geosite.dat
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "30 21 * * *"
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- automation
|
||||||
|
paths-ignore:
|
||||||
|
- "**/README.md"
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# - name: Compare latest tags and set variables
|
||||||
|
# run: |
|
||||||
|
# upstreamLatestTag=$(curl -sSL --connect-timeout 5 --retry 5 -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/v2fly/domain-list-community/releases/latest | grep "tag_name" | cut -d\" -f4)
|
||||||
|
# thisLatestTag=$(curl -sSL --connect-timeout 5 --retry 5 -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ github.repository }}/releases/latest | grep "tag_name" | cut -d\" -f4)
|
||||||
|
# if [[ $upstreamLatestTag != $thisLatestTag ]]; then
|
||||||
|
# echo "NeedToSync=true" >> $GITHUB_ENV
|
||||||
|
# fi
|
||||||
|
# echo "RELEASE_NAME=$upstreamLatestTag" >> $GITHUB_ENV
|
||||||
|
# echo "TAG_NAME=$upstreamLatestTag" >> $GITHUB_ENV
|
||||||
|
# shell: bash
|
||||||
|
|
||||||
|
- name: Checkout codebase
|
||||||
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
|
||||||
|
- name: Checkout v2fly/domain-list-community
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
with:
|
||||||
|
repository: 'v2fly/domain-list-community'
|
||||||
|
path: 'domain-list-community'
|
||||||
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
|
github-server-url: 'https://github.com'
|
||||||
|
|
||||||
|
- name: Append attribute rules
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
run: |
|
||||||
|
echo "include:bahamut" >> ./domain-list-community/data/streaming
|
||||||
|
echo "include:cbs" >> ./domain-list-community/data/streaming
|
||||||
|
echo "include:disney" >> ./domain-list-community/data/streaming
|
||||||
|
echo "include:netflix" >> ./domain-list-community/data/streaming
|
||||||
|
|
||||||
|
- name: Setup Go
|
||||||
|
uses: https://github.com/actions/setup-go@v4
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
with:
|
||||||
|
go-version-file: ./go.mod
|
||||||
|
|
||||||
|
- name: Set variables
|
||||||
|
run: |
|
||||||
|
echo "RELEASE_NAME=$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
|
||||||
|
# echo "TAG_NAME=$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Get dependencies and run
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
run: |
|
||||||
|
go run ./ --datapath=./domain-list-community/data --exportlists=streaming
|
||||||
|
|
||||||
|
- name: Git push assets to "release" branch
|
||||||
|
# if: ${{ env.NeedToSync }}
|
||||||
|
run: |
|
||||||
|
git config --local user.name "gitea-actions[bot]"
|
||||||
|
git config --local user.email "gitea-actions[bot]@moon.re"
|
||||||
|
git add *.txt
|
||||||
|
git commit -m "${{ env.RELEASE_NAME }}"
|
||||||
|
git push
|
@ -0,0 +1,42 @@
|
|||||||
|
name: Generate RULE-SET for Premium Edition of Clash
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "30 22 * * *"
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- automation
|
||||||
|
paths-ignore:
|
||||||
|
- "**/README.md"
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout codebase
|
||||||
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: main
|
||||||
|
|
||||||
|
- name: Make directory
|
||||||
|
run: |
|
||||||
|
mkdir -p Clash/RuleSet/StreamingMedia
|
||||||
|
|
||||||
|
- name: Set variables
|
||||||
|
run: |
|
||||||
|
echo "RELEASE_NAME=$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
|
||||||
|
echo "streaming=https://git.moon.re/MOOn/Profiles/raw/branch/automation/streaming.txt" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Generate streaming.yaml file
|
||||||
|
run: |
|
||||||
|
echo "payload:" > Clash/RuleSet/StreamingMedia/streaming.yaml
|
||||||
|
curl -sSL ${streaming} | awk -F ':' '/^full:/ {printf " - |%s|\n", $2}' | sed "s/|/'/g" >> Clash/RuleSet/StreamingMedia/streaming.yaml
|
||||||
|
curl -sSL ${streaming} | awk -F ':' '/^domain:/ {printf " - |+.%s|\n", $2}' | sed "s/|/'/g" >> Clash/RuleSet/StreamingMedia/streaming.yaml
|
||||||
|
|
||||||
|
- name: Git push
|
||||||
|
run: |
|
||||||
|
git config --local user.name "gitea-actions[bot]"
|
||||||
|
git config --local user.email "gitea-actions[bot]@moon.re"
|
||||||
|
git add Clash
|
||||||
|
git commit -m "${{ env.RELEASE_NAME }}"
|
||||||
|
git push
|
@ -1,566 +0,0 @@
|
|||||||
# Port of HTTP(S) proxy server on the local end
|
|
||||||
port: 7890
|
|
||||||
|
|
||||||
# Port of SOCKS5 proxy server on the local end
|
|
||||||
socks-port: 7891
|
|
||||||
|
|
||||||
# Transparent proxy server port for Linux and macOS (Redirect TCP and TProxy UDP)
|
|
||||||
# redir-port: 7892
|
|
||||||
|
|
||||||
# Transparent proxy server port for Linux (TProxy TCP and TProxy UDP)
|
|
||||||
# tproxy-port: 7893
|
|
||||||
|
|
||||||
# HTTP(S) and SOCKS4(A)/SOCKS5 server on the same port
|
|
||||||
# mixed-port: 7890
|
|
||||||
|
|
||||||
# authentication of local SOCKS5/HTTP(S) server
|
|
||||||
# authentication:
|
|
||||||
# - "user1:pass1"
|
|
||||||
# - "user2:pass2"
|
|
||||||
|
|
||||||
# Set to true to allow connections to the local-end server from
|
|
||||||
# other LAN IP addresses
|
|
||||||
# allow-lan: false
|
|
||||||
|
|
||||||
# This is only applicable when `allow-lan` is `true`
|
|
||||||
# '*': bind all IP addresses
|
|
||||||
# 192.168.122.11: bind a single IPv4 address
|
|
||||||
# "[aaaa::a8aa:ff:fe09:57d8]": bind a single IPv6 address
|
|
||||||
# bind-address: '*'
|
|
||||||
|
|
||||||
# Clash router working mode
|
|
||||||
# rule: rule-based packet routing
|
|
||||||
# global: all packets will be forwarded to a single endpoint
|
|
||||||
# direct: directly forward the packets to the Internet
|
|
||||||
mode: rule
|
|
||||||
|
|
||||||
# Clash by default prints logs to STDOUT
|
|
||||||
# info / warning / error / debug / silent
|
|
||||||
# log-level: info
|
|
||||||
|
|
||||||
# When set to false, resolver won't translate hostnames to IPv6 addresses
|
|
||||||
# ipv6: false
|
|
||||||
|
|
||||||
# RESTful web API listening address
|
|
||||||
external-controller: 127.0.0.1:9090
|
|
||||||
|
|
||||||
# A relative path to the configuration directory or an absolute path to a
|
|
||||||
# directory in which you put some static web resource. Clash core will then
|
|
||||||
# serve it at `http://{{external-controller}}/ui`.
|
|
||||||
# external-ui: folder
|
|
||||||
|
|
||||||
# Secret for the RESTful API (optional)
|
|
||||||
# Authenticate by spedifying HTTP header `Authorization: Bearer ${secret}`
|
|
||||||
# ALWAYS set a secret if RESTful API is listening on 0.0.0.0
|
|
||||||
# secret: ""
|
|
||||||
|
|
||||||
# Outbound interface name
|
|
||||||
# interface-name: en0
|
|
||||||
|
|
||||||
# fwmark on Linux only
|
|
||||||
# routing-mark: 6666
|
|
||||||
|
|
||||||
# Static hosts for DNS server and connection establishment (like /etc/hosts)
|
|
||||||
#
|
|
||||||
# Wildcard hostnames are supported (e.g. *.clash.dev, *.foo.*.example.com)
|
|
||||||
# Non-wildcard domain names have a higher priority than wildcard domain names
|
|
||||||
# e.g. foo.example.com > *.example.com > .example.com
|
|
||||||
# P.S. +.foo.com equals to .foo.com and foo.com
|
|
||||||
hosts:
|
|
||||||
# '*.clash.dev': 127.0.0.1
|
|
||||||
# '.dev': 127.0.0.1
|
|
||||||
# 'alpha.clash.dev': '::1'
|
|
||||||
'avistaz.to': 162.159.45.84
|
|
||||||
'beyond-hd.me': 162.159.45.84
|
|
||||||
'chdbits.co': 162.159.45.84
|
|
||||||
'greatposterwall.com': 162.159.45.84
|
|
||||||
'www.hd.ai': 162.159.45.84
|
|
||||||
'www.hddolby.com': 162.159.45.84
|
|
||||||
'www.hdarea.co': 162.159.45.84
|
|
||||||
'hdatmos.club': 162.159.45.84
|
|
||||||
'hdhome.org': 162.159.45.84
|
|
||||||
'lemonhd.org': 162.159.45.84
|
|
||||||
'hdsky.me': 162.159.45.84
|
|
||||||
'pt.msg.vg': 162.159.45.84
|
|
||||||
'kp.m-team.cc': 162.159.45.84
|
|
||||||
'www.nicept.net': 162.159.45.84
|
|
||||||
'open.cd': 162.159.45.84
|
|
||||||
'ourbits.club': 162.159.45.84
|
|
||||||
'pt.keepfrds.com': 162.159.45.84
|
|
||||||
'pterclub.com': 162.159.45.84
|
|
||||||
'www.tjupt.org': 162.159.45.84
|
|
||||||
'springsunday.net': 162.159.45.84
|
|
||||||
'www.beitai.pt': 162.159.45.84
|
|
||||||
'club.hares.top': 162.159.45.84
|
|
||||||
'hdtime.org': 162.159.45.84
|
|
||||||
|
|
||||||
profile:
|
|
||||||
# Store the `select` results in $HOME/.config/clash/.cache
|
|
||||||
# set false If you don't want this behavior
|
|
||||||
# when two different configurations have groups with the same name, the selected values are shared
|
|
||||||
store-selected: false
|
|
||||||
|
|
||||||
# persistence fakeip
|
|
||||||
store-fake-ip: true
|
|
||||||
|
|
||||||
# DNS server settings
|
|
||||||
# This section is optional. When not present, the DNS server will be disabled.
|
|
||||||
dns:
|
|
||||||
enable: true
|
|
||||||
listen: 0.0.0.0:53
|
|
||||||
ipv6: false # when the false, response to AAAA questions will be empty
|
|
||||||
|
|
||||||
# These nameservers are used to resolve the DNS nameserver hostnames below.
|
|
||||||
# Specify IP addresses only
|
|
||||||
default-nameserver:
|
|
||||||
- 114.114.114.114
|
|
||||||
- 8.8.8.8
|
|
||||||
enhanced-mode: fake-ip # or redir-host (not recommended)
|
|
||||||
fake-ip-range: 198.18.0.1/16 # Fake IP addresses pool CIDR
|
|
||||||
# use-hosts: true # lookup hosts and return IP record
|
|
||||||
|
|
||||||
# Hostnames in this list will not be resolved with fake IPs
|
|
||||||
# i.e. questions to these domain names will always be answered with their
|
|
||||||
# real IP addresses
|
|
||||||
# https://raw.githubusercontent.com/vernesong/OpenClash/master/luci-app-openclash/root/etc/openclash/custom/openclash_custom_fake_filter.list
|
|
||||||
fake-ip-filter:
|
|
||||||
#LAN
|
|
||||||
- '*.lan'
|
|
||||||
- '*.localdomain'
|
|
||||||
- '*.example'
|
|
||||||
- '*.invalid'
|
|
||||||
- '*.localhost'
|
|
||||||
- '*.test'
|
|
||||||
- '*.local'
|
|
||||||
- '*.home.arpa'
|
|
||||||
#放行NTP服务
|
|
||||||
- 'time.*.com'
|
|
||||||
- 'time.*.gov'
|
|
||||||
- 'time.*.edu.cn'
|
|
||||||
- 'time.*.apple.com'
|
|
||||||
- 'time-ios.apple.com'
|
|
||||||
- 'time1.*.com'
|
|
||||||
- 'time2.*.com'
|
|
||||||
- 'time3.*.com'
|
|
||||||
- 'time4.*.com'
|
|
||||||
- 'time5.*.com'
|
|
||||||
- 'time6.*.com'
|
|
||||||
- 'time7.*.com'
|
|
||||||
- 'ntp.*.com'
|
|
||||||
- 'ntp1.*.com'
|
|
||||||
- 'ntp2.*.com'
|
|
||||||
- 'ntp3.*.com'
|
|
||||||
- 'ntp4.*.com'
|
|
||||||
- 'ntp5.*.com'
|
|
||||||
- 'ntp6.*.com'
|
|
||||||
- 'ntp7.*.com'
|
|
||||||
- '*.time.edu.cn'
|
|
||||||
- '*.ntp.org.cn'
|
|
||||||
- '+.pool.ntp.org'
|
|
||||||
- 'time1.cloud.tencent.com'
|
|
||||||
#放行网易云音乐
|
|
||||||
- 'music.163.com'
|
|
||||||
- '*.music.163.com'
|
|
||||||
- '*.126.net'
|
|
||||||
#百度音乐
|
|
||||||
- 'musicapi.taihe.com'
|
|
||||||
- 'music.taihe.com'
|
|
||||||
#酷狗音乐
|
|
||||||
- 'songsearch.kugou.com'
|
|
||||||
- 'trackercdn.kugou.com'
|
|
||||||
#酷我音乐
|
|
||||||
- '*.kuwo.cn'
|
|
||||||
#JOOX音乐
|
|
||||||
- 'api-jooxtt.sanook.com'
|
|
||||||
- 'api.joox.com'
|
|
||||||
- 'joox.com'
|
|
||||||
#QQ音乐
|
|
||||||
- 'y.qq.com'
|
|
||||||
- '*.y.qq.com'
|
|
||||||
- 'streamoc.music.tc.qq.com'
|
|
||||||
- 'mobileoc.music.tc.qq.com'
|
|
||||||
- 'isure.stream.qqmusic.qq.com'
|
|
||||||
- 'dl.stream.qqmusic.qq.com'
|
|
||||||
- 'aqqmusic.tc.qq.com'
|
|
||||||
- 'amobile.music.tc.qq.com'
|
|
||||||
#虾米音乐
|
|
||||||
- '*.xiami.com'
|
|
||||||
#咪咕音乐
|
|
||||||
- '*.music.migu.cn'
|
|
||||||
- 'music.migu.cn'
|
|
||||||
#win10本地连接检测
|
|
||||||
- '+.msftconnecttest.com'
|
|
||||||
- '+.msftncsi.com'
|
|
||||||
#QQ登录
|
|
||||||
- 'localhost.ptlogin2.qq.com'
|
|
||||||
- 'localhost.sec.qq.com'
|
|
||||||
- '+.qq.com'
|
|
||||||
- '+.tencent.com'
|
|
||||||
#Game
|
|
||||||
#Nintendo Switch
|
|
||||||
- '+.srv.nintendo.net'
|
|
||||||
- '*.n.n.srv.nintendo.net'
|
|
||||||
#Sony PlayStation
|
|
||||||
- '+.stun.playstation.net'
|
|
||||||
#Microsoft Xbox
|
|
||||||
- 'xbox.*.*.microsoft.com'
|
|
||||||
- '*.*.xboxlive.com'
|
|
||||||
- 'xbox.*.microsoft.com'
|
|
||||||
- 'xnotify.xboxlive.com'
|
|
||||||
#Wotgame
|
|
||||||
- '+.battlenet.com.cn'
|
|
||||||
- '+.wotgame.cn'
|
|
||||||
- '+.wggames.cn'
|
|
||||||
- '+.wowsgame.cn'
|
|
||||||
- '+.wargaming.net'
|
|
||||||
#Golang
|
|
||||||
- 'proxy.golang.org'
|
|
||||||
#STUN
|
|
||||||
- 'stun.*.*'
|
|
||||||
- 'stun.*.*.*'
|
|
||||||
- '+.stun.*.*'
|
|
||||||
- '+.stun.*.*.*'
|
|
||||||
- '+.stun.*.*.*.*'
|
|
||||||
- '+.stun.*.*.*.*.*'
|
|
||||||
#Linksys Router
|
|
||||||
- 'heartbeat.belkin.com'
|
|
||||||
- '*.linksys.com'
|
|
||||||
- '*.linksyssmartwifi.com'
|
|
||||||
#ASUS Router
|
|
||||||
- '*.router.asus.com'
|
|
||||||
#Apple Software Update Service
|
|
||||||
- 'mesu.apple.com'
|
|
||||||
- 'swscan.apple.com'
|
|
||||||
- 'swquery.apple.com'
|
|
||||||
- 'swdownload.apple.com'
|
|
||||||
- 'swcdn.apple.com'
|
|
||||||
- 'swdist.apple.com'
|
|
||||||
#Google
|
|
||||||
- 'lens.l.google.com'
|
|
||||||
- 'stun.l.google.com'
|
|
||||||
#Netflix
|
|
||||||
- '+.nflxvideo.net'
|
|
||||||
#FinalFantasy XIV Worldwide Server & CN Server
|
|
||||||
- '*.square-enix.com'
|
|
||||||
- '*.finalfantasyxiv.com'
|
|
||||||
- '*.ffxiv.com'
|
|
||||||
- '*.ff14.sdo.com'
|
|
||||||
- 'ff.dorado.sdo.com'
|
|
||||||
#Bilibili
|
|
||||||
- '*.mcdn.bilivideo.cn'
|
|
||||||
#Disney Plus
|
|
||||||
- '+.media.dssott.com'
|
|
||||||
#shark007 Codecs
|
|
||||||
- 'shark007.net'
|
|
||||||
#Mijia
|
|
||||||
- 'Mijia Cloud'
|
|
||||||
#招商银行
|
|
||||||
- '+.cmbchina.com'
|
|
||||||
- '+.cmbimg.com'
|
|
||||||
#AdGuard
|
|
||||||
- 'local.adguard.org'
|
|
||||||
#迅雷
|
|
||||||
- '+.sandai.net'
|
|
||||||
- '+.n0808.com'
|
|
||||||
|
|
||||||
# Supports UDP, TCP, DoT, DoH. You can specify the port to connect to.
|
|
||||||
# All DNS questions are sent directly to the nameserver, without proxies
|
|
||||||
# involved. Clash answers the DNS question with the first result gathered.
|
|
||||||
nameserver:
|
|
||||||
# - 114.114.114.114 # default value
|
|
||||||
# - 8.8.8.8 # default value
|
|
||||||
- tls://dns.rubyfish.cn:853 # DNS over TLS
|
|
||||||
- https://1.1.1.1/dns-query # DNS over HTTPS
|
|
||||||
- https://dns.alidns.com/dns-query
|
|
||||||
- tls://dns.alidns.com
|
|
||||||
# - dhcp://en0 # dns from dhcp
|
|
||||||
# - '8.8.8.8#en0'
|
|
||||||
|
|
||||||
# When `fallback` is present, the DNS server will send concurrent requests
|
|
||||||
# to the servers in this section along with servers in `nameservers`.
|
|
||||||
# The answers from fallback servers are used when the GEOIP country
|
|
||||||
# is not `CN`.
|
|
||||||
# fallback:
|
|
||||||
# - tcp://1.1.1.1
|
|
||||||
# - 'tcp://1.1.1.1#en0'
|
|
||||||
|
|
||||||
# If IP addresses resolved with servers in `nameservers` are in the specified
|
|
||||||
# subnets below, they are considered invalid and results from `fallback`
|
|
||||||
# servers are used instead.
|
|
||||||
#
|
|
||||||
# IP address resolved with servers in `nameserver` is used when
|
|
||||||
# `fallback-filter.geoip` is true and when GEOIP of the IP address is `CN`.
|
|
||||||
#
|
|
||||||
# If `fallback-filter.geoip` is false, results from `nameserver` nameservers
|
|
||||||
# are always used if not match `fallback-filter.ipcidr`.
|
|
||||||
#
|
|
||||||
# This is a countermeasure against DNS pollution attacks.
|
|
||||||
# fallback-filter:
|
|
||||||
# geoip: true
|
|
||||||
# geoip-code: CN
|
|
||||||
# ipcidr:
|
|
||||||
# - 240.0.0.0/4
|
|
||||||
# domain:
|
|
||||||
# - '+.google.com'
|
|
||||||
# - '+.facebook.com'
|
|
||||||
# - '+.youtube.com'
|
|
||||||
|
|
||||||
# Lookup domains via specific nameservers
|
|
||||||
# nameserver-policy:
|
|
||||||
# 'www.baidu.com': '114.114.114.114'
|
|
||||||
# '+.internal.crop.com': '10.0.0.1'
|
|
||||||
nameserver-policy:
|
|
||||||
'+.taobao.com': '223.5.5.5'
|
|
||||||
'+.qq.com': '119.29.29.29'
|
|
||||||
|
|
||||||
proxy-groups:
|
|
||||||
- name: "ALL Servers"
|
|
||||||
type: select # 亦可使用 fallback 或 load-balance
|
|
||||||
use: # 注意此处是「use」
|
|
||||||
- ProxyList # 这是上面「proxy-providers」的名称
|
|
||||||
|
|
||||||
- name: "ALL Servers Auto"
|
|
||||||
type: url-test # 亦可使用 fallback 或 load-balance
|
|
||||||
use: # 注意此处是「use」
|
|
||||||
- ProxyList # 这是上面「proxy-providers」的名称
|
|
||||||
url: 'http://www.gstatic.com/generate_204'
|
|
||||||
interval: 300
|
|
||||||
|
|
||||||
- name: "BWConsuming"
|
|
||||||
type: select
|
|
||||||
use:
|
|
||||||
- BWConsuming
|
|
||||||
|
|
||||||
- name: "US"
|
|
||||||
type: select
|
|
||||||
use:
|
|
||||||
- USIP
|
|
||||||
|
|
||||||
- name: "Switch"
|
|
||||||
type: select
|
|
||||||
use:
|
|
||||||
- Switch
|
|
||||||
|
|
||||||
# 代理节点选择
|
|
||||||
- name: "PROXY"
|
|
||||||
type: select
|
|
||||||
proxies:
|
|
||||||
- "ALL Servers" # 嵌套使用订阅节点策略组
|
|
||||||
- "ALL Servers Auto"
|
|
||||||
|
|
||||||
# 白名单模式 PROXY, 黑名单模式 DIRECT, 不知道别动
|
|
||||||
- name: "MATCH"
|
|
||||||
type: select
|
|
||||||
proxies:
|
|
||||||
- PROXY
|
|
||||||
- DIRECT
|
|
||||||
|
|
||||||
# 国际流媒体服务
|
|
||||||
- name: "Streaming"
|
|
||||||
type: select
|
|
||||||
use:
|
|
||||||
- StreamingList
|
|
||||||
|
|
||||||
proxy-providers:
|
|
||||||
ProxyList:
|
|
||||||
type: file
|
|
||||||
path: ./ProxyList/servers.yaml
|
|
||||||
health-check:
|
|
||||||
enable: true
|
|
||||||
interval: 36000
|
|
||||||
url: http://www.gstatic.com/generate_204
|
|
||||||
|
|
||||||
StreamingList:
|
|
||||||
type: file
|
|
||||||
path: ./ProxyList/streaming.yaml
|
|
||||||
health-check:
|
|
||||||
enable: true
|
|
||||||
interval: 36000
|
|
||||||
url: http://www.gstatic.com/generate_204
|
|
||||||
|
|
||||||
USIP:
|
|
||||||
type: file
|
|
||||||
path: ./ProxyList/usip.yaml
|
|
||||||
health-check:
|
|
||||||
enable: true
|
|
||||||
interval: 36000
|
|
||||||
url: http://www.gstatic.com/generate_204
|
|
||||||
|
|
||||||
BWConsuming:
|
|
||||||
type: file
|
|
||||||
path: ./ProxyList/BWConsuming.yaml
|
|
||||||
health-check:
|
|
||||||
enable: true
|
|
||||||
interval: 36000
|
|
||||||
url: http://www.gstatic.com/generate_204
|
|
||||||
|
|
||||||
Switch:
|
|
||||||
type: file
|
|
||||||
path: ./ProxyList/servers.yaml
|
|
||||||
health-check:
|
|
||||||
enable: true
|
|
||||||
interval: 36000
|
|
||||||
url: http://www.gstatic.com/generate_204
|
|
||||||
|
|
||||||
rule-providers:
|
|
||||||
reject:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt"
|
|
||||||
path: ./RuleSet/reject.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
icloud:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/icloud.txt"
|
|
||||||
path: ./RuleSet/icloud.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
apple:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt"
|
|
||||||
path: ./RuleSet/apple.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
google:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/google.txt"
|
|
||||||
path: ./RuleSet/google.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
proxy:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/proxy.txt"
|
|
||||||
path: ./RuleSet/proxy.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
direct:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/direct.txt"
|
|
||||||
path: ./RuleSet/direct.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
private:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/private.txt"
|
|
||||||
path: ./RuleSet/private.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
gfw:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/gfw.txt"
|
|
||||||
path: ./RuleSet/gfw.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
greatfire:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/greatfire.txt"
|
|
||||||
path: ./RuleSet/greatfire.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
tld-not-cn:
|
|
||||||
type: http
|
|
||||||
behavior: domain
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/tld-not-cn.txt"
|
|
||||||
path: ./RuleSet/tld-not-cn.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
telegramcidr:
|
|
||||||
type: http
|
|
||||||
behavior: ipcidr
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/telegramcidr.txt"
|
|
||||||
path: ./RuleSet/telegramcidr.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
cncidr:
|
|
||||||
type: http
|
|
||||||
behavior: ipcidr
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/cncidr.txt"
|
|
||||||
path: ./RuleSet/cncidr.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
lancidr:
|
|
||||||
type: http
|
|
||||||
behavior: ipcidr
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/lancidr.txt"
|
|
||||||
path: ./RuleSet/lancidr.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
applications:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/applications.txt"
|
|
||||||
path: ./RuleSet/applications.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
# custom ruleset
|
|
||||||
|
|
||||||
US:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
path: ./RuleSet/Custom/US.yaml
|
|
||||||
url: https://git.moon.re/MOOn/Profiles/raw/branch/main/Clash/RuleSet/Custom/US.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
StreamingCustom:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
path: ./RuleSet/Custom/StreamingCustom.yaml
|
|
||||||
url: https://git.moon.re/MOOn/Profiles/raw/branch/main/Clash/RuleSet/Custom/StreamingCustom.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
BWConsuming:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
path: ./RuleSet/Custom/BWConsuming.yaml
|
|
||||||
url: https://git.moon.re/MOOn/Profiles/raw/branch/main/Clash/RuleSet/Custom/BWConsuming.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
DirectAccess:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
path: ./RuleSet/Custom/DirectAccess.yaml
|
|
||||||
url: https://git.moon.re/MOOn/Profiles/raw/branch/main/Clash/RuleSet/Custom/DirectAccess.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
GoogleDrive:
|
|
||||||
type: http
|
|
||||||
behavior: classical
|
|
||||||
path: ./RuleSet/Extra/Google/GoogleDrive.yaml
|
|
||||||
url: https://raw.githubusercontent.com/DivineEngine/Profiles/master/Clash/RuleSet/Extra/Google/GoogleDrive.yaml
|
|
||||||
interval: 86400
|
|
||||||
|
|
||||||
rules:
|
|
||||||
|
|
||||||
# Custom Below
|
|
||||||
- RULE-SET,StreamingCustom,Streaming
|
|
||||||
- RULE-SET,BWConsuming,BWConsuming
|
|
||||||
- RULE-SET,GoogleDrive,BWConsuming
|
|
||||||
- RULE-SET,US,US
|
|
||||||
- SRC-IP-CIDR,10.77.1.243/32,Switch
|
|
||||||
# Custom Above
|
|
||||||
|
|
||||||
- RULE-SET,applications,DIRECT
|
|
||||||
- DOMAIN,clash.razord.top,DIRECT
|
|
||||||
- DOMAIN,yacd.haishan.me,DIRECT
|
|
||||||
- RULE-SET,private,DIRECT
|
|
||||||
- RULE-SET,reject,REJECT
|
|
||||||
- RULE-SET,icloud,DIRECT
|
|
||||||
- RULE-SET,apple,DIRECT
|
|
||||||
# - RULE-SET,google,DIRECT
|
|
||||||
- RULE-SET,proxy,PROXY
|
|
||||||
- RULE-SET,direct,DIRECT
|
|
||||||
- RULE-SET,lancidr,DIRECT
|
|
||||||
- RULE-SET,cncidr,DIRECT
|
|
||||||
- RULE-SET,telegramcidr,BWConsuming
|
|
||||||
- GEOIP,LAN,DIRECT
|
|
||||||
- GEOIP,CN,DIRECT
|
|
||||||
- MATCH,MATCH
|
|
@ -1,3 +0,0 @@
|
|||||||
payload:
|
|
||||||
# > Placeholder
|
|
||||||
- DOMAIN-SUFFIX,rapidgator.net
|
|
@ -1,93 +0,0 @@
|
|||||||
payload:
|
|
||||||
|
|
||||||
# Private Trackers
|
|
||||||
- DOMAIN-SUFFIX,52pt.site
|
|
||||||
- DOMAIN-SUFFIX,animebytes.tv
|
|
||||||
- DOMAIN-SUFFIX,avistaz.to
|
|
||||||
- DOMAIN-SUFFIX,beyond-hd.me
|
|
||||||
- DOMAIN-SUFFIX,brokenstones.is
|
|
||||||
- DOMAIN,pt.btschool.club
|
|
||||||
- DOMAIN-SUFFIX,chdbits.co
|
|
||||||
- DOMAIN-SUFFIX,discfan.net
|
|
||||||
- DOMAIN-SUFFIX,exoticaz.to
|
|
||||||
- DOMAIN-SUFFIX,filelist.io
|
|
||||||
# - DOMAIN-SUFFIX,gaytorrent.ru
|
|
||||||
- DOMAIN-SUFFIX,gazellegames.net
|
|
||||||
- DOMAIN-SUFFIX,greatposterwall.com
|
|
||||||
- DOMAIN-SUFFIX,haidan.video
|
|
||||||
- DOMAIN,www.hddolby.com
|
|
||||||
- DOMAIN,www.hd.ai
|
|
||||||
- DOMAIN,www.hdarea.co
|
|
||||||
- DOMAIN-SUFFIX,hdatmos.club
|
|
||||||
- DOMAIN-SUFFIX,hdchina.org
|
|
||||||
- DOMAIN-SUFFIX,hdfans.org
|
|
||||||
- DOMAIN-SUFFIX,hdhome.org
|
|
||||||
- DOMAIN,pt.hdpost.top
|
|
||||||
- DOMAIN-SUFFIX,hdsky.me
|
|
||||||
- DOMAIN-SUFFIX,hdtime.org
|
|
||||||
- DOMAIN-SUFFIX,hdzone.me
|
|
||||||
- DOMAIN-SUFFIX,jpopsuki.eu
|
|
||||||
- DOMAIN-SUFFIX,lemonhd.org
|
|
||||||
- DOMAIN-SUFFIX,kp.m-team.cc
|
|
||||||
- DOMAIN,www.myanonamouse.net
|
|
||||||
# - DOMAIN,www.nicept.net #Block
|
|
||||||
- DOMAIN-SUFFIX,open.cd
|
|
||||||
- DOMAIN-SUFFIX,orpheus.network
|
|
||||||
- DOMAIN-SUFFIX,ourbits.club
|
|
||||||
- DOMAIN,pt.keepfrds.com
|
|
||||||
- DOMAIN-SUFFIX,pterclub.com
|
|
||||||
- DOMAIN-SUFFIX,pthome.net
|
|
||||||
- DOMAIN,pt.msg.vg
|
|
||||||
# - DOMAIN,www.pttime.org #Block
|
|
||||||
- DOMAIN-SUFFIX,redacted.ch
|
|
||||||
- DOMAIN-SUFFIX,springsunday.net
|
|
||||||
- DOMAIN-SUFFIX,thegeeks.click
|
|
||||||
- DOMAIN-SUFFIX,totheglory.im
|
|
||||||
# - DOMAIN,u2.dmhy.org
|
|
||||||
# - DOMAIN,www.tjupt.org #Block
|
|
||||||
# - DOMAIN,www.beitai.pt #Block
|
|
||||||
- DOMAIN-SUFFIX,hdmayi.com
|
|
||||||
- DOMAIN,www.htpt.cc
|
|
||||||
- DOMAIN-SUFFIX,ptsbao.club
|
|
||||||
- DOMAIN,club.hares.top
|
|
||||||
- DOMAIN,pt.soulvoice.club
|
|
||||||
|
|
||||||
- DOMAIN-SUFFIX,leaguehd.com
|
|
||||||
- DOMAIN-SUFFIX,revolutiontt.me
|
|
||||||
- DOMAIN-SUFFIX,dicmusic.club
|
|
||||||
|
|
||||||
# Photo holder
|
|
||||||
- DOMAIN-SUFFIX,imgtu.com
|
|
||||||
|
|
||||||
# Microsoft
|
|
||||||
- DOMAIN-SUFFIX,sharepoint.com
|
|
||||||
|
|
||||||
# Publisher
|
|
||||||
- DOMAIN-SUFFIX,tandfonline.com
|
|
||||||
- DOMAIN-SUFFIX,sciencedirect.com
|
|
||||||
# - DOMAIN-SUFFIX,ieee.org
|
|
||||||
- DOMAIN-SUFFIX,springer.com
|
|
||||||
- DOMAIN-SUFFIX,taylorfrancis.com
|
|
||||||
|
|
||||||
# Cloudflare
|
|
||||||
# - DOMAIN,gd.moon.re
|
|
||||||
# - DOMAIN,alistdl.moon.re
|
|
||||||
# - DOMAIN,alist.moont.cf
|
|
||||||
|
|
||||||
- DOMAIN-SUFFIX,moon.re
|
|
||||||
|
|
||||||
# PH
|
|
||||||
# - DOMAIN-SUFFIX,brazzers.com # BLOCK
|
|
||||||
- DOMAIN-SUFFIX,project1content.com
|
|
||||||
- DOMAIN-SUFFIX,project1service.com
|
|
||||||
|
|
||||||
# Madou
|
|
||||||
# - DOMAIN-SUFFIX,madou.club
|
|
||||||
|
|
||||||
# BuyVM
|
|
||||||
- DOMAIN,my.frantech.ca
|
|
||||||
|
|
||||||
# US VISA
|
|
||||||
|
|
||||||
- DOMAIN,portal.ustraveldocs.com
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
payload:
|
|
||||||
- DOMAIN-SUFFIX,jable.tv
|
|
||||||
- DOMAIN-SUFFIX,cdnlab.live
|
|
||||||
- DOMAIN-SUFFIX,contentdef.com
|
|
||||||
# - DOMAIN-SUFFIX,project1content.com
|
|
||||||
- DOMAIN-SUFFIX,portalcdn.com
|
|
||||||
# - DOMAIN-SUFFIX,brazzers.com
|
|
@ -1,22 +0,0 @@
|
|||||||
payload:
|
|
||||||
# > PayPal
|
|
||||||
- DOMAIN-SUFFIX,paypal.com
|
|
||||||
- DOMAIN-SUFFIX,paypal.me
|
|
||||||
- DOMAIN-SUFFIX,paypalobjects.com
|
|
||||||
|
|
||||||
# > Apple-News
|
|
||||||
- DOMAIN-SUFFIX,ls.apple.com
|
|
||||||
- PROCESS-NAME,News
|
|
||||||
- DOMAIN,apple.comscoreresearch.com
|
|
||||||
|
|
||||||
# > Openai
|
|
||||||
|
|
||||||
- DOMAIN-SUFFIX,ai.com
|
|
||||||
- DOMAIN-SUFFIX,openai.com
|
|
||||||
|
|
||||||
# CDN & API
|
|
||||||
- DOMAIN,chat.openai.com.cdn.cloudflare.net
|
|
||||||
- DOMAIN,openaiapi-site.azureedge.net
|
|
||||||
- DOMAIN,openaicom-api-bdcpf8c6d2e9atf6.z01.azurefd.net
|
|
||||||
- DOMAIN,openaicomproductionae4b.blob.core.windows.net
|
|
||||||
- DOMAIN,production-openaicom-storage.azureedge.net
|
|
@ -1,221 +0,0 @@
|
|||||||
payload:
|
|
||||||
- 'gamer2-cds.cdn.hinet.net'
|
|
||||||
- 'gamer-cds.cdn.hinet.net'
|
|
||||||
- 'cbsi.live.ott.irdeto.com'
|
|
||||||
- 'cbsplaylistserver.aws.syncbak.com'
|
|
||||||
- 'cbsservice.aws.syncbak.com'
|
|
||||||
- 'link.theplatform.com'
|
|
||||||
- 'espn.api.edge.bamgrid.com'
|
|
||||||
- 'espn.hb.omtrdc.net'
|
|
||||||
- 'espndotcom.tt.omtrdc.net'
|
|
||||||
- 'netflix.com.edgesuite.net'
|
|
||||||
- '+.bahamut.akamaized.net'
|
|
||||||
- '+.bahamut.com.tw'
|
|
||||||
- '+.gamer.com.tw'
|
|
||||||
- '+.cbs'
|
|
||||||
- '+.showtime'
|
|
||||||
- '+.cbs.com'
|
|
||||||
- '+.cbscorporation.com'
|
|
||||||
- '+.cbsi.com'
|
|
||||||
- '+.cbsi.video'
|
|
||||||
- '+.cbsiam.com'
|
|
||||||
- '+.cbsig.net'
|
|
||||||
- '+.cbsimg.net'
|
|
||||||
- '+.cbsinteractive.com'
|
|
||||||
- '+.cbsistatic.com'
|
|
||||||
- '+.cbsivideo.com'
|
|
||||||
- '+.cbsnews.com'
|
|
||||||
- '+.cbspressexpress.com'
|
|
||||||
- '+.cbssports.com'
|
|
||||||
- '+.cbsstatic.com'
|
|
||||||
- '+.cbssvideo.com'
|
|
||||||
- '+.viacbs.com'
|
|
||||||
- '+.viacom.com'
|
|
||||||
- '+.viacomcbs.com'
|
|
||||||
- '+.viacomcbspressexpress.com'
|
|
||||||
- '+.paramount.com'
|
|
||||||
- '+.amlg.io'
|
|
||||||
- '+.cbsaavideo.com'
|
|
||||||
- '+.mtvnservices.com'
|
|
||||||
- '+.paramountplus.com'
|
|
||||||
- '+.pplusstatic.com'
|
|
||||||
- '+.abc-studios.com'
|
|
||||||
- '+.abc.com'
|
|
||||||
- '+.edgedatg.com'
|
|
||||||
- '+.bamgrid.com'
|
|
||||||
- '+.dmed.technology'
|
|
||||||
- '+.dtci.co'
|
|
||||||
- '+.dtci.technology'
|
|
||||||
- '+.espn.co.uk'
|
|
||||||
- '+.espn.com'
|
|
||||||
- '+.espn.net'
|
|
||||||
- '+.espncdn.com'
|
|
||||||
- '+.espnqa.com'
|
|
||||||
- '+.watchespn.com'
|
|
||||||
- '+.hotstar.com'
|
|
||||||
- '+.hotstar-cdn.net'
|
|
||||||
- '+.hotstar-labs.com'
|
|
||||||
- '+.hotstarext.com'
|
|
||||||
- '+.hsprepack.akamaized.net'
|
|
||||||
- '+.marvel.com'
|
|
||||||
- '+.marvel10thanniversary.com'
|
|
||||||
- '+.marveldimensionofheroes.com'
|
|
||||||
- '+.marvelparty.net'
|
|
||||||
- '+.marvelpinball.com'
|
|
||||||
- '+.marvelsdoubleagent.com'
|
|
||||||
- '+.marvelspotlightplays.com'
|
|
||||||
- '+.marvelsuperheroseptember.com'
|
|
||||||
- '+.marvelsuperwar.com'
|
|
||||||
- '+.themarvelexperiencetour.com'
|
|
||||||
- '+.natgeomaps.com'
|
|
||||||
- '+.nationalgeographic.com'
|
|
||||||
- '+.nationalgeographicpartners.com'
|
|
||||||
- '+.ngeo.com'
|
|
||||||
- '+.starott.com'
|
|
||||||
- '+.starplus.com'
|
|
||||||
- '+.star.api.edge.bamgrid.com'
|
|
||||||
- '+.star.connections.edge.bamgrid.com'
|
|
||||||
- '+.star.content.edge.bamgrid.com'
|
|
||||||
- '+.star.playback.edge.bamgrid.com'
|
|
||||||
- '+.disney.asia'
|
|
||||||
- '+.disney.be'
|
|
||||||
- '+.disney.bg'
|
|
||||||
- '+.disney.ca'
|
|
||||||
- '+.disney.ch'
|
|
||||||
- '+.disney.co.il'
|
|
||||||
- '+.disney.co.jp'
|
|
||||||
- '+.disney.co.kr'
|
|
||||||
- '+.disney.co.th'
|
|
||||||
- '+.disney.co.uk'
|
|
||||||
- '+.disney.co.za'
|
|
||||||
- '+.disney.com'
|
|
||||||
- '+.disney.com.au'
|
|
||||||
- '+.disney.com.br'
|
|
||||||
- '+.disney.com.hk'
|
|
||||||
- '+.disney.com.tw'
|
|
||||||
- '+.disney.cz'
|
|
||||||
- '+.disney.de'
|
|
||||||
- '+.disney.dk'
|
|
||||||
- '+.disney.es'
|
|
||||||
- '+.disney.fi'
|
|
||||||
- '+.disney.fr'
|
|
||||||
- '+.disney.gr'
|
|
||||||
- '+.disney.hu'
|
|
||||||
- '+.disney.id'
|
|
||||||
- '+.disney.in'
|
|
||||||
- '+.disney.io'
|
|
||||||
- '+.disney.it'
|
|
||||||
- '+.disney.my'
|
|
||||||
- '+.disney.nl'
|
|
||||||
- '+.disney.no'
|
|
||||||
- '+.disney.ph'
|
|
||||||
- '+.disney.pl'
|
|
||||||
- '+.disney.pt'
|
|
||||||
- '+.disney.ro'
|
|
||||||
- '+.disney.ru'
|
|
||||||
- '+.disney.se'
|
|
||||||
- '+.disney.sg'
|
|
||||||
- '+.20thcenturystudios.com.au'
|
|
||||||
- '+.20thcenturystudios.com.br'
|
|
||||||
- '+.20thcenturystudios.jp'
|
|
||||||
- '+.adventuresbydisney.com'
|
|
||||||
- '+.babble.com'
|
|
||||||
- '+.babyzone.com'
|
|
||||||
- '+.bamgrid.com'
|
|
||||||
- '+.beautyandthebeastmusical.co.uk'
|
|
||||||
- '+.dilcdn.com'
|
|
||||||
- '+.disney-asia.com'
|
|
||||||
- '+.disney-discount.com'
|
|
||||||
- '+.disney-plus.net'
|
|
||||||
- '+.disney-portal.my.onetrust.com'
|
|
||||||
- '+.disney-studio.com'
|
|
||||||
- '+.disney-studio.net'
|
|
||||||
- '+.disney.my.sentry.io'
|
|
||||||
- '+.disneyadsales.com'
|
|
||||||
- '+.disneyarena.com'
|
|
||||||
- '+.disneyaulani.com'
|
|
||||||
- '+.disneybaby.com'
|
|
||||||
- '+.disneycareers.com'
|
|
||||||
- '+.disneychannelonstage.com'
|
|
||||||
- '+.disneychannelroadtrip.com'
|
|
||||||
- '+.disneycruisebrasil.com'
|
|
||||||
- '+.disneyenconcert.com'
|
|
||||||
- '+.disneyiejobs.com'
|
|
||||||
- '+.disneyinflight.com'
|
|
||||||
- '+.disneyinternational.com'
|
|
||||||
- '+.disneyinternationalhd.com'
|
|
||||||
- '+.disneyjunior.com'
|
|
||||||
- '+.disneyjuniortreataday.com'
|
|
||||||
- '+.disneylatino.com'
|
|
||||||
- '+.disneymagicmoments.co.il'
|
|
||||||
- '+.disneymagicmoments.co.uk'
|
|
||||||
- '+.disneymagicmoments.co.za'
|
|
||||||
- '+.disneymagicmoments.de'
|
|
||||||
- '+.disneymagicmoments.es'
|
|
||||||
- '+.disneymagicmoments.fr'
|
|
||||||
- '+.disneymagicmoments.gen.tr'
|
|
||||||
- '+.disneymagicmoments.gr'
|
|
||||||
- '+.disneymagicmoments.it'
|
|
||||||
- '+.disneymagicmoments.pl'
|
|
||||||
- '+.disneymagicmomentsme.com'
|
|
||||||
- '+.disneyme.com'
|
|
||||||
- '+.disneymeetingsandevents.com'
|
|
||||||
- '+.disneymovieinsiders.com'
|
|
||||||
- '+.disneymusicpromotion.com'
|
|
||||||
- '+.disneynewseries.com'
|
|
||||||
- '+.disneynow.com'
|
|
||||||
- '+.disneypeoplesurveys.com'
|
|
||||||
- '+.disneyplus.bn5x.net'
|
|
||||||
- '+.disneyplus.com'
|
|
||||||
- '+.disneyplus.com.ssl.sc.omtrdc.net'
|
|
||||||
- '+.disneyredirects.com'
|
|
||||||
- '+.disneysrivieraresort.com'
|
|
||||||
- '+.disneystore.com'
|
|
||||||
- '+.disneystreaming.com'
|
|
||||||
- '+.disneysubscription.com'
|
|
||||||
- '+.disneytickets.co.uk'
|
|
||||||
- '+.disneyturkiye.com.tr'
|
|
||||||
- '+.disneytvajobs.com'
|
|
||||||
- '+.disneyworld-go.com'
|
|
||||||
- '+.dssott.com'
|
|
||||||
- '+.go-disneyworldgo.com'
|
|
||||||
- '+.go.com'
|
|
||||||
- '+.mickey.tv'
|
|
||||||
- '+.moviesanywhere.com'
|
|
||||||
- '+.nomadlandmovie.ch'
|
|
||||||
- '+.playmation.com'
|
|
||||||
- '+.shopdisney.com'
|
|
||||||
- '+.shops-disney.com'
|
|
||||||
- '+.sorcerersarena.com'
|
|
||||||
- '+.spaindisney.com'
|
|
||||||
- '+.star-brasil.com'
|
|
||||||
- '+.star-latam.com'
|
|
||||||
- '+.starwars.com'
|
|
||||||
- '+.starwarsgalacticstarcruiser.com'
|
|
||||||
- '+.starwarskids.com'
|
|
||||||
- '+.streamingdisney.net'
|
|
||||||
- '+.thestationbymaker.com'
|
|
||||||
- '+.thisispolaris.com'
|
|
||||||
- '+.watchdisneyfe.com'
|
|
||||||
- '+.fast.com'
|
|
||||||
- '+.netflix.ca'
|
|
||||||
- '+.netflix.com'
|
|
||||||
- '+.netflix.net'
|
|
||||||
- '+.netflixinvestor.com'
|
|
||||||
- '+.netflixtechblog.com'
|
|
||||||
- '+.nflxext.com'
|
|
||||||
- '+.nflximg.com'
|
|
||||||
- '+.nflximg.net'
|
|
||||||
- '+.nflxsearch.net'
|
|
||||||
- '+.nflxso.net'
|
|
||||||
- '+.nflxvideo.net'
|
|
||||||
- '+.netflixdnstest1.com'
|
|
||||||
- '+.netflixdnstest2.com'
|
|
||||||
- '+.netflixdnstest3.com'
|
|
||||||
- '+.netflixdnstest4.com'
|
|
||||||
- '+.netflixdnstest5.com'
|
|
||||||
- '+.netflixdnstest6.com'
|
|
||||||
- '+.netflixdnstest7.com'
|
|
||||||
- '+.netflixdnstest8.com'
|
|
||||||
- '+.netflixdnstest9.com'
|
|
||||||
- '+.netflixdnstest10.com'
|
|
@ -1 +0,0 @@
|
|||||||
IP-ASN,131495
|
|
@ -1,73 +0,0 @@
|
|||||||
# China Area Network
|
|
||||||
DOMAIN-SUFFIX,flyert.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,gandi.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,snapdrop.net,DIRECT
|
|
||||||
DOMAIN,download.jetbrains.com,DIRECT
|
|
||||||
DOMAIN,origin-a.akamaihd.ne,DIRECT
|
|
||||||
# ---(Microsoft)---
|
|
||||||
# > Outlook
|
|
||||||
DOMAIN,outlook.office365.com,DIRECT
|
|
||||||
DOMAIN,smtp-mail.outlook.com,DIRECT
|
|
||||||
DOMAIN,smtp.office365.com,DIRECT
|
|
||||||
# > Windows Server Update Services
|
|
||||||
DOMAIN-SUFFIX,dl.delivery.mp.microsoft.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,update.microsoft.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,windowsupdate.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,windowsupdate.microsoft.com,DIRECT
|
|
||||||
DOMAIN,download.microsoft.com,DIRECT
|
|
||||||
DOMAIN,wustat.windows.com,DIRECT
|
|
||||||
DOMAIN,ntservicepack.microsoft.com,DIRECT
|
|
||||||
# ------
|
|
||||||
# > PayPal
|
|
||||||
DOMAIN-SUFFIX,paypal.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,paypal.me,DIRECT
|
|
||||||
DOMAIN-SUFFIX,paypal-mktg.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,paypalobjects.com,DIRECT
|
|
||||||
# > Steam
|
|
||||||
DOMAIN-SUFFIX,cm.steampowered.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,steamserver.net,DIRECT
|
|
||||||
# > Tencent
|
|
||||||
IP-CIDR,182.254.116.0/24,DIRECT
|
|
||||||
IP-CIDR,203.205.238.0/23,DIRECT
|
|
||||||
IP-CIDR,203.205.254.0/23,DIRECT
|
|
||||||
# > IP Query
|
|
||||||
DOMAIN,ip.istatmenus.app,DIRECT
|
|
||||||
DOMAIN,sms.imagetasks.com,DIRECT
|
|
||||||
# > Speed Test
|
|
||||||
DOMAIN-SUFFIX,netspeedtestmaster.com,DIRECT
|
|
||||||
DOMAIN,speedtest.macpaw.com,DIRECT
|
|
||||||
# > Private Tracker
|
|
||||||
DOMAIN-SUFFIX,acg.rip,DIRECT
|
|
||||||
DOMAIN-SUFFIX,animebytes.tv,DIRECT
|
|
||||||
DOMAIN-SUFFIX,awesome-hd.me,DIRECT
|
|
||||||
DOMAIN-SUFFIX,broadcasthe.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,chdbits.co,DIRECT
|
|
||||||
DOMAIN-SUFFIX,classix-unlimited.co.uk,DIRECT
|
|
||||||
DOMAIN-SUFFIX,comicat.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,empornium.me,DIRECT
|
|
||||||
DOMAIN-SUFFIX,gazellegames.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,hdbits.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,hdchina.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,hddolby.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,hdhome.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,hdsky.me,DIRECT
|
|
||||||
DOMAIN-SUFFIX,icetorrent.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,jpopsuki.eu,DIRECT
|
|
||||||
DOMAIN-SUFFIX,keepfrds.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,madsrevolution.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,morethan.tv,DIRECT
|
|
||||||
DOMAIN-SUFFIX,m-team.cc,DIRECT
|
|
||||||
DOMAIN-SUFFIX,myanonamouse.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,nanyangpt.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,ncore.cc,DIRECT
|
|
||||||
DOMAIN-SUFFIX,open.cd,DIRECT
|
|
||||||
DOMAIN-SUFFIX,ourbits.club,DIRECT
|
|
||||||
DOMAIN-SUFFIX,passthepopcorn.me,DIRECT
|
|
||||||
DOMAIN-SUFFIX,privatehd.to,DIRECT
|
|
||||||
DOMAIN-SUFFIX,pterclub.com,DIRECT
|
|
||||||
DOMAIN-SUFFIX,redacted.ch,DIRECT
|
|
||||||
DOMAIN-SUFFIX,springsunday.net,DIRECT
|
|
||||||
DOMAIN-SUFFIX,tjupt.org,DIRECT
|
|
||||||
DOMAIN-SUFFIX,totheglory.im,DIRECT
|
|
||||||
|
|
||||||
GEOIP,CN,DIRECT
|
|
@ -1,7 +0,0 @@
|
|||||||
# App Store
|
|
||||||
# Store content such as apps, books, and music
|
|
||||||
DOMAIN-SUFFIX,apps.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,itunes.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,itunes-apple.com.akadns.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,mzstatic.com,PROXY
|
|
||||||
DOMAIN,ppq.apple.com,PROXY
|
|
@ -1,4 +0,0 @@
|
|||||||
# > App Store Connect
|
|
||||||
DOMAIN,appstoreconnect.apple.com,PROXY
|
|
||||||
DOMAIN,iosapps-ssl.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,itcmobile.itunes.apple.com,PROXY
|
|
@ -1,21 +0,0 @@
|
|||||||
# Apple
|
|
||||||
DOMAIN-SUFFIX,aaplimg.com,Apple
|
|
||||||
DOMAIN-SUFFIX,apple.co,Apple
|
|
||||||
DOMAIN-SUFFIX,apple.com,Apple
|
|
||||||
DOMAIN-SUFFIX,apple.com.cn,Apple
|
|
||||||
DOMAIN-SUFFIX,apple-cloudkit.com,Apple
|
|
||||||
DOMAIN-SUFFIX,apple-livephotoskit.com,Apple
|
|
||||||
DOMAIN-SUFFIX,apple-mapkit.com,Apple
|
|
||||||
DOMAIN-SUFFIX,applemusic.com,Apple
|
|
||||||
DOMAIN-SUFFIX,appstore.com,Apple
|
|
||||||
DOMAIN-SUFFIX,apzones.com,Apple
|
|
||||||
DOMAIN-SUFFIX,cdn-apple.com,Apple
|
|
||||||
DOMAIN-SUFFIX,icloud.com,Apple
|
|
||||||
DOMAIN-SUFFIX,icloud.com.cn,Apple
|
|
||||||
DOMAIN-SUFFIX,icloud-content.com,Apple
|
|
||||||
DOMAIN-SUFFIX,me.com,Apple
|
|
||||||
DOMAIN-SUFFIX,mzstatic.com,Apple
|
|
||||||
DOMAIN-KEYWORD,apple.com.akadns.net,Apple
|
|
||||||
DOMAIN-KEYWORD,apple.com.edgekey.net,Apple
|
|
||||||
DOMAIN-KEYWORD,apple-support.akadns.net,Apple
|
|
||||||
DOMAIN-KEYWORD,icloud.com.akadns.net,Apple
|
|
@ -1,5 +0,0 @@
|
|||||||
# Block iOS Update
|
|
||||||
DOMAIN,mesu.apple.com,REJECT
|
|
||||||
DOMAIN,gdmf.apple.com,REJECT
|
|
||||||
DOMAIN,updates-http.cdn-apple.com,REJECT
|
|
||||||
DOMAIN,xp.apple.com,REJECT
|
|
@ -1,6 +0,0 @@
|
|||||||
# Apple Books
|
|
||||||
DOMAIN,buy.itunes.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,books.apple.com,PROXY
|
|
||||||
DOMAIN,books.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,bookkeeper.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,books-analytics-events.apple.com,PROXY
|
|
@ -1,3 +0,0 @@
|
|||||||
# Fitness+
|
|
||||||
DOMAIN,hls-svod.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,amp-api.fitness.apple.com,PROXY
|
|
@ -1,3 +0,0 @@
|
|||||||
# > iCloud email
|
|
||||||
DOMAIN-SUFFIX,mail.icloud.com.cn,iCloudMail
|
|
||||||
DOMAIN-SUFFIX,mail.me.com,iCloudMail
|
|
@ -1,11 +0,0 @@
|
|||||||
# > Apple Music
|
|
||||||
USER-AGENT,Music*,PROXY
|
|
||||||
DOMAIN-SUFFIX,applemusic.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,music.apple.com,PROXY
|
|
||||||
DOMAIN,aod.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,aod-ssl.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,audio.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,audio-ssl.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,mvod.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,streamingaudio.itunes.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,blobstore.apple.com,PROXY
|
|
@ -1,17 +0,0 @@
|
|||||||
## 说明
|
|
||||||
|
|
||||||
对于 Apple 的一些被动或主动屏蔽的服务如 Web Preview、Moveis Trailers、Dictionary 的维基百科查询均已收录于 `Global.list` 进行代理。
|
|
||||||
|
|
||||||
该目录只是**一时兴起**想做一些关于 Apple 各子域名具体作用的收录,所以一些分流文件如 `TestFlight.list`、`FindMy.list` 并没有实际意义。
|
|
||||||
|
|
||||||
另外,个人**主观认为**鉴于 Apple 在国内大体良好的 CDN 部署个人不建议对其进行代理,当然既然进到了这个目录可能 Apple 的某些服务在你所在地区堪忧,相比以前对于 Apple 整体域名全部代理,该目录收录的一些细分分流文件如 App Store 应用下载、系统更新的专项代理应该更适合你。
|
|
||||||
|
|
||||||
### 分流文件说明
|
|
||||||
|
|
||||||
**Apple.list**
|
|
||||||
|
|
||||||
是 Apple 服务的总体整理,如想对 Apple 服务均进行代理可以使用该分流文件,需要注意的是建议放置于 `Global.list` 之后,因 `Global.list` 有 Apple 对于中国大陆不可用服务的代理行为,如您的 Apple 策略经常在使用直连时会导致 `Global.list` 中的规则失效。
|
|
||||||
|
|
||||||
**其他**
|
|
||||||
|
|
||||||
`Apple.list` 以外的分流文件基本用于代理策略,文件名极其内容已说明其主要作用。
|
|
@ -1,26 +0,0 @@
|
|||||||
# Software Update
|
|
||||||
# > macOS updates
|
|
||||||
DOMAIN,configuration.apple.com,PROXY
|
|
||||||
DOMAIN,gnf-mdn.apple.com,PROXY
|
|
||||||
DOMAIN,gnf-mr.apple.com,PROXY
|
|
||||||
DOMAIN,gs.apple.com,PROXY
|
|
||||||
DOMAIN,ig.apple.com,PROXY
|
|
||||||
DOMAIN,skl.apple.com,PROXY
|
|
||||||
DOMAIN,swcdn.apple.com,PROXY
|
|
||||||
DOMAIN,swdist.apple.com,PROXY
|
|
||||||
DOMAIN,swdownload.apple.com,PROXY
|
|
||||||
DOMAIN,swpost.apple.com,PROXY
|
|
||||||
DOMAIN,swscan.apple.com,PROXY
|
|
||||||
# > macOS Recovery
|
|
||||||
DOMAIN,oscdn.apple.com,PROXY
|
|
||||||
DOMAIN,osrecovery.apple.com,PROXY
|
|
||||||
# > iOS, iPadOS, and watchOS updates
|
|
||||||
DOMAIN,appldnld.apple.com,PROXY
|
|
||||||
DOMAIN,ns.itunes.apple.com,PROXY
|
|
||||||
# > iOS, iPadOS, tvOS, watchOS, and macOS updates
|
|
||||||
DOMAIN,gg.apple.com,PROXY
|
|
||||||
DOMAIN,gdmf.apple.com,PROXY
|
|
||||||
DOMAIN,mesu.apple.com,PROXY
|
|
||||||
DOMAIN,updates.cdn-apple.com,PROXY
|
|
||||||
DOMAIN,updates-http.cdn-apple.com,PROXY
|
|
||||||
DOMAIN,xp.apple.com,PROXY
|
|
@ -1,9 +0,0 @@
|
|||||||
# TV
|
|
||||||
USER-AGENT,AppleTV*,PROXY
|
|
||||||
USER-AGENT,com.apple.tv*,PROXY
|
|
||||||
DOMAIN-SUFFIX,tv.apple.com,PROXY
|
|
||||||
DOMAIN,hls.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,hls-amt.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,play-edge.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,tv.applemusic.com,PROXY
|
|
||||||
DOMAIN,uts-api.itunes.apple.com,PROXY
|
|
@ -1,12 +0,0 @@
|
|||||||
# iCloud
|
|
||||||
DOMAIN-SUFFIX,apple-cloudkit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,apple-livephotoskit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,apzones.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,cdn-apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gc.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,icloud.apple.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,icloud.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,icloud.com.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,icloud-content.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,iwork.apple.com,PROXY
|
|
||||||
DOMAIN-KEYWORD,icloud.com.akadns.net,PROXY
|
|
File diff suppressed because it is too large
Load Diff
@ -1,54 +0,0 @@
|
|||||||
# Forum
|
|
||||||
DOMAIN-SUFFIX,bitcointalk.org,Crypto
|
|
||||||
|
|
||||||
# Wallet
|
|
||||||
DOMAIN-SUFFIX,debank.com,Crypto
|
|
||||||
|
|
||||||
# Exchange
|
|
||||||
DOMAIN-SUFFIX,aex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bibox.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bitfinex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bithumb.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bitmex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bitstamp.net,Crypto
|
|
||||||
DOMAIN-SUFFIX,bittrex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bybit.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,coinbase.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,coincheck.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,coinone.co.kr,Crypto
|
|
||||||
DOMAIN-SUFFIX,ftx.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,gate.io,Crypto
|
|
||||||
DOMAIN-SUFFIX,gemini.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,huobi.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,korbit.co.kr,Crypto
|
|
||||||
DOMAIN-SUFFIX,kraken.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,kucoin.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,liquid.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,pancakeswap.finance,Crypto
|
|
||||||
DOMAIN-SUFFIX,poloniex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,sushi.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,uniswap.org,Crypto
|
|
||||||
DOMAIN-SUFFIX,zb.com,Crypto
|
|
||||||
# > Binance
|
|
||||||
DOMAIN-SUFFIX,binance.cc,Crypto
|
|
||||||
DOMAIN-SUFFIX,binance.cloud,Crypto
|
|
||||||
DOMAIN-SUFFIX,binance.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,binance.im,Crypto
|
|
||||||
DOMAIN-SUFFIX,binance.me,Crypto
|
|
||||||
DOMAIN-SUFFIX,binance.us,Crypto
|
|
||||||
DOMAIN-SUFFIX,bnappzh.co,Crypto
|
|
||||||
DOMAIN-SUFFIX,bnappzh.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bnbstatic.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,bntrace.com,Crypto
|
|
||||||
# > OKX
|
|
||||||
DOMAIN-SUFFIX,okex.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,okx.com,Crypto
|
|
||||||
|
|
||||||
# Explorer
|
|
||||||
DOMAIN-SUFFIX,etherscan.io,Crypto
|
|
||||||
|
|
||||||
# Analysis
|
|
||||||
DOMAIN-SUFFIX,aicoin.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,aimoon.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,coingecko.com,Crypto
|
|
||||||
DOMAIN-SUFFIX,coinmarketcap.com,Crypto
|
|
@ -1,2 +0,0 @@
|
|||||||
# > Chromecast with Google TV
|
|
||||||
DOMAIN-KEYWORD,pa.google,Chromecast
|
|
@ -1,9 +0,0 @@
|
|||||||
# > Google Drive
|
|
||||||
USER-AGENT,%E4%BA%91%E7%AB%AF%E7%A1%AC%E7%9B%98*,GoogleDrive
|
|
||||||
USER-AGENT,Google.Drive*,GoogleDrive
|
|
||||||
USER-AGENT,*com.google.Drive*,GoogleDrive
|
|
||||||
DOMAIN-SUFFIX,docs.google.com,GoogleDrive
|
|
||||||
DOMAIN-SUFFIX,drive.google.com,GoogleDrive
|
|
||||||
DOMAIN-SUFFIX,googledrive.com,GoogleDrive
|
|
||||||
DOMAIN-SUFFIX,googleusercontent.com,GoogleDrive
|
|
||||||
DOMAIN,www.googleapis.com,GoogleDrive
|
|
@ -1,2 +0,0 @@
|
|||||||
# > Google Search
|
|
||||||
DOMAIN-KEYWORD,www.google.,GoogleSearch
|
|
@ -1,5 +0,0 @@
|
|||||||
# OneDrive
|
|
||||||
DOMAIN-SUFFIX,1drv.com,OneDrive
|
|
||||||
DOMAIN-SUFFIX,onedrive.com,OneDrive
|
|
||||||
DOMAIN-SUFFIX,storage.live.com,OneDrive
|
|
||||||
DOMAIN,oneclient.sfx.ms,OneDrive
|
|
@ -1,6 +0,0 @@
|
|||||||
# Microsoft Teams
|
|
||||||
DOMAIN-SUFFIX,teams.cdn.live.net,Teams
|
|
||||||
DOMAIN-SUFFIX,teams.live.com,Teams
|
|
||||||
DOMAIN-SUFFIX,teams.microsoft.com,Teams
|
|
||||||
DOMAIN,teams.events.data.microsoft.com,Teams
|
|
||||||
# DOMAIN,statics.teams.cdn.office.net,Teams
|
|
@ -1,6 +0,0 @@
|
|||||||
# > PayPal
|
|
||||||
USER-AGENT,PayPal*,PayPal
|
|
||||||
DOMAIN-SUFFIX,paypal.com,PayPal
|
|
||||||
DOMAIN-SUFFIX,paypal.me,PayPal
|
|
||||||
DOMAIN-SUFFIX,paypal-mktg.com,PayPal
|
|
||||||
DOMAIN-SUFFIX,paypalobjects.com,PayPal
|
|
@ -1,67 +0,0 @@
|
|||||||
# > Scholar
|
|
||||||
DOMAIN-SUFFIX,acm.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,acs.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,aip.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,ams.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,annualreviews.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,aps.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,ascelibrary.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,asm.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,asme.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,astm.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,bmj.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,cambridge.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,cas.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,cell.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,clarivate.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,csiro.au,Scholar
|
|
||||||
DOMAIN-SUFFIX,ebscohost.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,elsevier.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,emerald.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,endnote.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,engineeringvillage.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,icevirtuallibrary.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,ieee.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,imf.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,iop.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,jamanetwork.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,jbc.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,jhu.edu,Scholar
|
|
||||||
DOMAIN-SUFFIX,jstor.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,karger.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,libguides.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,madsrevolution.net,Scholar
|
|
||||||
DOMAIN-SUFFIX,mdpi.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,mpg.de,Scholar
|
|
||||||
DOMAIN-SUFFIX,myilibrary.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,nature.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,ncbi.nlm.nih.gov,Scholar
|
|
||||||
DOMAIN-SUFFIX,oecd-ilibrary.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,osapublishing.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,oup.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,ovid.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,oxfordartonline.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,oxfordbibliographies.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,oxfordmusiconline.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,pnas.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,proquest.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,rsc.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,sagepub.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,science.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,sciencedirect.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,sciencemag.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,scitation.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,sci-hub.tw,Scholar
|
|
||||||
DOMAIN-SUFFIX,scopus.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,siam.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,spiedigitallibrary.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,springer.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,springerlink.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,tandfonline.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,un.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,uni-bielefeld.de,Scholar
|
|
||||||
DOMAIN-SUFFIX,webofknowledge.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,westlaw.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,wiley.com,Scholar
|
|
||||||
DOMAIN-SUFFIX,worldbank.org,Scholar
|
|
||||||
DOMAIN-SUFFIX,worldscientific.com,Scholar
|
|
@ -1,21 +0,0 @@
|
|||||||
# Telegram
|
|
||||||
DOMAIN-SUFFIX,t.me,Telegram
|
|
||||||
DOMAIN-SUFFIX,tdesktop.com,Telegram
|
|
||||||
DOMAIN-SUFFIX,telegra.ph,Telegram
|
|
||||||
DOMAIN-SUFFIX,telegram.me,Telegram
|
|
||||||
DOMAIN-SUFFIX,telegram.org,Telegram
|
|
||||||
DOMAIN-SUFFIX,telesco.pe,Telegram
|
|
||||||
IP-CIDR,91.108.4.0/22,Telegram
|
|
||||||
IP-CIDR,91.108.8.0/22,Telegram
|
|
||||||
IP-CIDR,91.108.12.0/22,Telegram
|
|
||||||
IP-CIDR,91.108.16.0/22,Telegram
|
|
||||||
IP-CIDR,91.108.20.0/22,Telegram
|
|
||||||
IP-CIDR,91.108.56.0/22,Telegram
|
|
||||||
IP-CIDR,91.105.192.0/23,Telegram
|
|
||||||
IP-CIDR,149.154.160.0/20,Telegram
|
|
||||||
IP-CIDR,185.76.151.0/24,Telegram
|
|
||||||
IP6-CIDR,2001:b28:f23d::/48,Telegram
|
|
||||||
IP6-CIDR,2001:b28:f23f::/48,Telegram
|
|
||||||
IP6-CIDR,2001:67c:4e8::/48,Telegram
|
|
||||||
IP6-CIDR,2001:b28:f23c::/48,Telegram
|
|
||||||
IP6-CIDR,2a0a:f280::/32,Telegram
|
|
@ -1,6 +0,0 @@
|
|||||||
# Telegram NL
|
|
||||||
IP-CIDR,91.108.4.0/22,TelegramNL
|
|
||||||
IP-CIDR,91.108.8.0/22,TelegramNL
|
|
||||||
IP-CIDR,149.154.160.0/20,TelegramNL
|
|
||||||
IP6-CIDR,2001:67c:4e8::/48,TelegramNL
|
|
||||||
IP6-CIDR,2001:b28:f23c::/48,TelegramNL
|
|
@ -1,4 +0,0 @@
|
|||||||
# Telegram SG
|
|
||||||
IP-CIDR,91.108.16.0/22,TelegramSG
|
|
||||||
IP-CIDR,91.108.56.0/22,TelegramSG
|
|
||||||
IP6-CIDR,2001:b28:f23f::/48,TelegramSG
|
|
@ -1,3 +0,0 @@
|
|||||||
# Telegram US
|
|
||||||
IP-CIDR,91.108.12.0/22,TelegramUS
|
|
||||||
IP6-CIDR,2001:b28:f23d::/48,TelegramUS
|
|
@ -1,10 +0,0 @@
|
|||||||
# > Twitter
|
|
||||||
DOMAIN-SUFFIX,pscp.tv,Twitter
|
|
||||||
DOMAIN-SUFFIX,periscope.tv,Twitter
|
|
||||||
DOMAIN-SUFFIX,t.co,Twitter
|
|
||||||
DOMAIN-SUFFIX,twimg.co,Twitter
|
|
||||||
DOMAIN-SUFFIX,twimg.com,Twitter
|
|
||||||
DOMAIN-SUFFIX,twitpic.com,Twitter
|
|
||||||
DOMAIN-SUFFIX,twitter.com,Twitter
|
|
||||||
DOMAIN-SUFFIX,twitter.jp,Twitter
|
|
||||||
DOMAIN-SUFFIX,vine.co,Twitter
|
|
@ -1,474 +0,0 @@
|
|||||||
# (D.C.S.G?)
|
|
||||||
DOMAIN-SUFFIX,9cache.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,9gag.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,abc.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,anchor.fm,PROXY
|
|
||||||
DOMAIN-SUFFIX,archive.fo,PROXY
|
|
||||||
DOMAIN-SUFFIX,archive.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,archive.ph,PROXY
|
|
||||||
DOMAIN-SUFFIX,archiveofourown.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,artstation.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ask.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,avg.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,axios.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bandcamp.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bandwagonhost.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bbc.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,behance.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,bit.ly,PROXY
|
|
||||||
DOMAIN-SUFFIX,bloglovin.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,blubrry.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,box.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,brave.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bullguard.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,castbox.fm,PROXY
|
|
||||||
DOMAIN-SUFFIX,change.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,cloudcone.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,clyp.it,PROXY
|
|
||||||
DOMAIN-SUFFIX,cna.com.tw,PROXY
|
|
||||||
DOMAIN-SUFFIX,conoha.jp,PROXY
|
|
||||||
DOMAIN-SUFFIX,coursehero.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,c-span.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,dailymotion.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,daum.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,deadline.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,depositphotos.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,deviantart.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,deviantart.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,disconnect.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,disqus.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,dlive.tv,PROXY
|
|
||||||
DOMAIN-SUFFIX,dowjones.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,duckduckgo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,earthcam.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,edx-cdn.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,encyclopedia.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,feeder.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,feedly.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,flickr.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,flipboard.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,flitto.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,foreignaffairs.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,foreignpolicy.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ft.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ftchinese.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ftimg.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,genius.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,getsync.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gfw.report,PROXY
|
|
||||||
DOMAIN-SUFFIX,git.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,githack.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,graphql.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,hackmd.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,heroku.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,hket.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,huffpost.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,i-cable.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,imgur.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,independent.co.uk,PROXY
|
|
||||||
DOMAIN-SUFFIX,inoreader.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,is.gd,PROXY
|
|
||||||
DOMAIN-SUFFIX,issuu.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,istockphoto.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,justpaste.it,PROXY
|
|
||||||
DOMAIN-SUFFIX,kakao.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,kobo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,listennotes.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,livestream.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,mailchimp.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,matrix.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,medibang.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,medium.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,mega.co.nz,PROXY
|
|
||||||
DOMAIN-SUFFIX,mega.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,mega.nz,PROXY
|
|
||||||
DOMAIN-SUFFIX,mixlr.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,moon.fm,PROXY
|
|
||||||
DOMAIN-SUFFIX,mubi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,myspace.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,myspacecdn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nbcnews.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,neowin.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,newstatesman.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,newsweek.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,newyorker.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,now.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ok.ru,PROXY
|
|
||||||
DOMAIN-SUFFIX,omny.fm,PROXY
|
|
||||||
DOMAIN-SUFFIX,openvpn.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,owltail.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,oxfordscholarship.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,parsevideo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,paste.ee,PROXY
|
|
||||||
DOMAIN-SUFFIX,pastie.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,pcloud.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,peing.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,player.fm,PROXY
|
|
||||||
DOMAIN-SUFFIX,podbean.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,prism-break.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,privoxy.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,proxifier.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,quora.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,quoracdn.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,qz.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,radioline.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,reabble.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,redditlist.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,resilio.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,rsshub.app,PROXY
|
|
||||||
DOMAIN-SUFFIX,rthk.hk,PROXY
|
|
||||||
DOMAIN-SUFFIX,scmp.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,scribd.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,search.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,shutterstock.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,signal.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,sketchappsources.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,slideshare.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,smartmailcloud.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,smh.com.au,PROXY
|
|
||||||
DOMAIN-SUFFIX,speakerdeck.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,spideroak.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,spiegel.de,PROXY
|
|
||||||
DOMAIN-SUFFIX,startpage.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,steemit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,straitstimes.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,streamable.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,substack.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,swissinfo.ch,PROXY
|
|
||||||
DOMAIN-SUFFIX,tapatalk.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,techspot.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,textnow.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,theage.com.au,PROXY
|
|
||||||
DOMAIN-SUFFIX,theatlantic.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,theaustralian.com.au,PROXY
|
|
||||||
DOMAIN-SUFFIX,theconversation.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,thediplomat.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,theguardian.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,theinitium.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,themoviedb.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,thetvdb.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,time.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tineye.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tiny.cc,PROXY
|
|
||||||
DOMAIN-SUFFIX,torproject.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,tradingview.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,turbobit.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,tutanota.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,urbandictionary.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ustream.tv,PROXY
|
|
||||||
DOMAIN-SUFFIX,v2ex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,venturebeat.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,viber.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,vimeo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,voxer.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,vzw.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,washingtonpost.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wattpad.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,welt.de,PROXY
|
|
||||||
DOMAIN-SUFFIX,whoer.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikimapia.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikiwand.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wire.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wireguard.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,worldcat.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wsj.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wsj.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,x.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,yandex.ru,PROXY
|
|
||||||
DOMAIN-SUFFIX,you-get.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,zaobao.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,zello.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,zeronet.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,z-lib.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,zophar.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,zyxel.com,PROXY
|
|
||||||
DOMAIN,lab.skk.moe,PROXY
|
|
||||||
DOMAIN,ocsp.int-x3.letsencrypt.org,PROXY
|
|
||||||
# > Akamai
|
|
||||||
DOMAIN,a248.e.akamai.net,PROXY
|
|
||||||
DOMAIN,a771.dscq.akamai.net,PROXY
|
|
||||||
# > Amazon
|
|
||||||
DOMAIN-SUFFIX,amazon.co.jp,PROXY
|
|
||||||
DOMAIN,d3c33hcgiwev3.cloudfront.net,PROXY
|
|
||||||
DOMAIN,payments-jp.amazon.com,PROXY
|
|
||||||
DOMAIN,s3-ap-northeast-1.amazonaws.com,PROXY
|
|
||||||
DOMAIN,s3-ap-southeast-2.amazonaws.com,PROXY
|
|
||||||
# > Alphabet
|
|
||||||
DOMAIN-SUFFIX,abc.xyz,PROXY
|
|
||||||
DOMAIN-SUFFIX,admob.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,adsense.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,advertisercommunity.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ampproject.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,android.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,androidify.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,androidtv.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,api.ai,PROXY
|
|
||||||
DOMAIN-SUFFIX,apigee.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,appspot.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,blogblog.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,blogger.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,chrome.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,chromium.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,debug.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,dialogflow.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,feedburner.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,firebaseio.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,g.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,getoutline.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,ggpht.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gmail.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gmodules.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gvt0.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gvt1.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gvt3.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,itasoftware.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,on2.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,recaptcha.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,schema.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,tensorflow.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,tenor.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tfhub.dev,PROXY
|
|
||||||
DOMAIN-SUFFIX,tiltbrush.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,waymo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,web.dev,PROXY
|
|
||||||
DOMAIN-SUFFIX,webmproject.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,webrtc.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,widevine.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,xn--ngstr-lra8j.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,zynamics.com,PROXY
|
|
||||||
DOMAIN-KEYWORD,google,PROXY
|
|
||||||
DOMAIN-KEYWORD,.blogspot.,PROXY
|
|
||||||
DOMAIN-SUFFIX,goog,PROXY
|
|
||||||
# > Apple
|
|
||||||
DOMAIN,testflight.apple.com,PROXY
|
|
||||||
# > Automattic
|
|
||||||
DOMAIN-SUFFIX,gravatar.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tumblr.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,videopress.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,wordpress.com,PROXY
|
|
||||||
# > Bloomberg
|
|
||||||
DOMAIN-SUFFIX,bloomberg.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,bloomberg.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bloomberg.de,PROXY
|
|
||||||
DOMAIN-SUFFIX,bloombergview.com,PROXY
|
|
||||||
# > Clubhouse
|
|
||||||
DOMAIN-SUFFIX,clubhouseapi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,joinclubhouse.com,PROXY
|
|
||||||
DOMAIN,clubhouse.pubnubapi.com,PROXY
|
|
||||||
# > Crypto
|
|
||||||
DOMAIN-SUFFIX,aex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bibox.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,binance.cc,PROXY
|
|
||||||
DOMAIN-SUFFIX,binance.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,binance.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,binance.us,PROXY
|
|
||||||
DOMAIN-SUFFIX,bitcointalk.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,bitfinex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bithumb.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bitmex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bitstamp.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,bittrex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bybit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,coinbase.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,coincheck.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,coingecko.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,coinmarketcap.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,coinone.co.kr,PROXY
|
|
||||||
DOMAIN-SUFFIX,etherscan.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,ftx.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,gate.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,gemini.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,huobi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,korbit.co.kr,PROXY
|
|
||||||
DOMAIN-SUFFIX,kraken.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,kucoin.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,liquid.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,okex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,okx.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,poloniex.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,sushi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,uniswap.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,zb.com,PROXY
|
|
||||||
# > Discord
|
|
||||||
DOMAIN-SUFFIX,discord.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,discordapp.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,discordapp.net,PROXY
|
|
||||||
# > Dropbox
|
|
||||||
DOMAIN-SUFFIX,dropbox.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,dropboxapi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,dropboxusercontent.com,PROXY
|
|
||||||
# > Fastly
|
|
||||||
DOMAIN-SUFFIX,freetls.fastly.net,PROXY
|
|
||||||
DOMAIN,cloud-cdn-digitalocean-com.global.ssl.fastly.net,PROXY
|
|
||||||
DOMAIN,github.global.ssl.fastly.net,PROXY
|
|
||||||
DOMAIN,nytimes.map.fastly.net,PROXY
|
|
||||||
# > Line
|
|
||||||
DOMAIN-SUFFIX,line.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,line-apps.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,line-scdn.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,naver.jp,PROXY
|
|
||||||
IP-CIDR,103.2.30.0/23,PROXY
|
|
||||||
IP-CIDR,125.209.208.0/20,PROXY
|
|
||||||
IP-CIDR,147.92.128.0/17,PROXY
|
|
||||||
IP-CIDR,203.104.144.0/21,PROXY
|
|
||||||
# > Meta
|
|
||||||
DOMAIN-SUFFIX,accountkit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,cdninstagram.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,f8.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,facebookmail.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,fb.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,fb.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,fb.watch,PROXY
|
|
||||||
DOMAIN-SUFFIX,fbaddins.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,fbcdn.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,fbsbx.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,fbworkmail.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,instagram.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,m.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,messenger.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,oculus.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,oculuscdn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,readyatdawn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,rocksdb.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,whatsapp.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,whatsapp.net,PROXY
|
|
||||||
DOMAIN-KEYWORD,.facebook.,PROXY
|
|
||||||
# > Microsoft
|
|
||||||
DOMAIN-SUFFIX,aka.ms,PROXY
|
|
||||||
DOMAIN-SUFFIX,github.blog,PROXY
|
|
||||||
DOMAIN-SUFFIX,github.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,github.io,PROXY
|
|
||||||
DOMAIN-SUFFIX,githubassets.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,githubusercontent.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,onedrive.live.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,streaming.mediaservices.windows.net,PROXY
|
|
||||||
DOMAIN,assets1.xboxlive.com,PROXY
|
|
||||||
DOMAIN,assets2.xboxlive.com,PROXY
|
|
||||||
DOMAIN,az416426.vo.msecnd.net,PROXY
|
|
||||||
DOMAIN,az668014.vo.msecnd.net,PROXY
|
|
||||||
# > Pinterest
|
|
||||||
DOMAIN-SUFFIX,pinimg.com,PROXY
|
|
||||||
DOMAIN-KEYWORD,.pinterest.,PROXY
|
|
||||||
# > pixiv
|
|
||||||
DOMAIN-SUFFIX,pixiv.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,pixiv.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,pximg.net,PROXY
|
|
||||||
# > Reddit
|
|
||||||
DOMAIN-SUFFIX,redd.it,PROXY
|
|
||||||
DOMAIN-SUFFIX,reddit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,redditmedia.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,redditstatic.com,PROXY
|
|
||||||
# > Reuters
|
|
||||||
DOMAIN-SUFFIX,reuters.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,reutersmedia.net,PROXY
|
|
||||||
# > Steam
|
|
||||||
DOMAIN-SUFFIX,steamcommunity.com,PROXY
|
|
||||||
# DOMAIN,store.steampowered.com,PROXY
|
|
||||||
# > Telegram
|
|
||||||
DOMAIN-SUFFIX,legra.ph,PROXY
|
|
||||||
DOMAIN-SUFFIX,t.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,tdesktop.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,telegra.ph,PROXY
|
|
||||||
DOMAIN-SUFFIX,telegram.me,PROXY
|
|
||||||
DOMAIN-SUFFIX,telegram.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,telesco.pe,PROXY
|
|
||||||
IP-CIDR,91.108.4.0/22,PROXY
|
|
||||||
IP-CIDR,91.108.8.0/22,PROXY
|
|
||||||
IP-CIDR,91.108.12.0/22,PROXY
|
|
||||||
IP-CIDR,91.108.16.0/22,PROXY
|
|
||||||
IP-CIDR,91.108.20.0/22,PROXY
|
|
||||||
IP-CIDR,91.108.56.0/22,PROXY
|
|
||||||
IP-CIDR,91.105.192.0/23,PROXY
|
|
||||||
IP-CIDR,149.154.160.0/20,PROXY
|
|
||||||
IP-CIDR,185.76.151.0/24,PROXY
|
|
||||||
IP6-CIDR,2001:b28:f23d::/48,PROXY
|
|
||||||
IP6-CIDR,2001:b28:f23f::/48,PROXY
|
|
||||||
IP6-CIDR,2001:67c:4e8::/48,PROXY
|
|
||||||
IP6-CIDR,2001:b28:f23c::/48,PROXY
|
|
||||||
IP6-CIDR,2a0a:f280::/32,PROXY
|
|
||||||
# > The Economist
|
|
||||||
DOMAIN-SUFFIX,economist.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,static-economist.com,PROXY
|
|
||||||
# > The New York Times
|
|
||||||
DOMAIN-SUFFIX,newyorktimes.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nyt.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nytco.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nytimes.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nytimg.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nytlog.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,nytstyle.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tmagazine.com,PROXY
|
|
||||||
# > Twitter
|
|
||||||
DOMAIN-SUFFIX,periscope.tv,PROXY
|
|
||||||
DOMAIN-SUFFIX,pscp.tv,PROXY
|
|
||||||
DOMAIN-SUFFIX,t.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,tweetdeck.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,twimg.co,PROXY
|
|
||||||
DOMAIN-SUFFIX,twimg.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,twitpic.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,twitter.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,twitter.jp,PROXY
|
|
||||||
DOMAIN-SUFFIX,vine.co,PROXY
|
|
||||||
# > Wikimedia Foundation
|
|
||||||
DOMAIN-SUFFIX,mediawiki.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikibooks.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikidata.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikileaks.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikimedia.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikimediafoundation.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikinews.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikipedia.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikiquote.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikisource.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikiversity.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wikivoyage.org,PROXY
|
|
||||||
DOMAIN-SUFFIX,wiktionary.org,PROXY
|
|
||||||
# > Yahoo
|
|
||||||
DOMAIN-SUFFIX,yahoo.com,PROXY
|
|
||||||
DOMAIN,search.yahoo.co.jp,PROXY
|
|
||||||
# > Yandex
|
|
||||||
DOMAIN-SUFFIX,yadi.sk,PROXY
|
|
||||||
DOMAIN,disk.yandex.com,PROXY
|
|
||||||
|
|
||||||
# (Region-Restricted Access Denied)
|
|
||||||
DOMAIN-SUFFIX,aicoin.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,aimoon.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,engadget.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ifixit.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,terabox.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,zaobao.com.sg,PROXY
|
|
||||||
DOMAIN,addons.mozilla.org,PROXY
|
|
||||||
DOMAIN,wego.here.com,PROXY
|
|
||||||
# > Alphabet
|
|
||||||
DOMAIN-SUFFIX,go.dev,PROXY
|
|
||||||
DOMAIN-SUFFIX,golang.org,PROXY
|
|
||||||
# ---(Apple)---
|
|
||||||
DOMAIN-SUFFIX,appsto.re,PROXY
|
|
||||||
DOMAIN-SUFFIX,smoot.apple.com,PROXY
|
|
||||||
DOMAIN,amp-api.podcasts.apple.com,PROXY
|
|
||||||
DOMAIN,beta.music.apple.com,PROXY
|
|
||||||
DOMAIN,books.itunes.apple.com,PROXY
|
|
||||||
DOMAIN,lookup-api.apple.com,PROXY
|
|
||||||
DOMAIN,radio.itunes.apple.com,PROXY
|
|
||||||
# > Web Preview
|
|
||||||
DOMAIN,apps.apple.com,PROXY
|
|
||||||
DOMAIN,books.apple.com,PROXY
|
|
||||||
DOMAIN,itunes.apple.com,PROXY
|
|
||||||
DOMAIN,tv.apple.com,PROXY
|
|
||||||
# > News
|
|
||||||
DOMAIN,gateway.icloud.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,apple.news,PROXY
|
|
||||||
DOMAIN,news-assets.apple.com,PROXY
|
|
||||||
DOMAIN,news-client.apple.com,PROXY
|
|
||||||
DOMAIN,news-client-search.apple.com,PROXY
|
|
||||||
DOMAIN,news-edge.apple.com,PROXY
|
|
||||||
DOMAIN,news-events.apple.com,PROXY
|
|
||||||
DOMAIN,apple.comscoreresearch.com,PROXY
|
|
||||||
# ------
|
|
||||||
# > Microsoft
|
|
||||||
DOMAIN-SUFFIX,bing.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,linkedin.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,licdn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,msn.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,skype.com,PROXY
|
|
@ -1,246 +0,0 @@
|
|||||||
# Internet Service Providers Hijacking
|
|
||||||
DOMAIN-SUFFIX,17gouwuba.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,186078.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,189key.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,189zj.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,285680.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,3721zh.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,4336wang.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,51chumoping.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,51mld.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,51mypc.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,58mingri.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,58mingtian.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,5vl58stm.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,6d63d3.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,7gg.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,91veg.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,9s6q.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,adsame.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,akuai.top,REJECT
|
|
||||||
DOMAIN-SUFFIX,atplay.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,baiwanchuangyi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,beerto.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,beilamusi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,benshiw.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,bianxianmao.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,bkyhq.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,bryonypie.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,cishantao.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,cszlks.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,cudaojia.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,dafapromo.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,daitdai.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,dsaeerf.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,dugesheying.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,dv8c1t.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,echatu.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,erdoscs.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,fan-yong.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,feih.com.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,fjlqqc.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,fkku194.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,freedrive.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,gclick.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,goufanli100.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,goupaoerdai.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,gouwubang.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,gscxs.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,gzxnlk.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,haoshengtoys.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,hbssjd.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,hyunke.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ichaosheng.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ishop789.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,jdkic.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,jiubuhua.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,jsncke.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,junkucm.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,jwg365.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,kawo77.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,kualianyingxiao.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,kumihua.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ltheanine.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,lvehaisen.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,maipinshangmao.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,minisplat.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mkitgfs.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,mlnbike.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,mobjump.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,nbkbgd.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,newapi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,pinzhitmall.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,poppyta.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,qianchuanghr.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,qichexin.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,qinchugudao.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,quanliyouxi.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,qutaobi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ry51w.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sg536.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifubo.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuce.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuda.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifufu.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuge.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifugu.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuhe.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuhu.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuji.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,sifuka.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,smgru.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,taoggou.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tcxshop.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tjqonline.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,topitme.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tt114.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,tt3sm4.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,tuia.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,tuipenguin.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tuitiger.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,urlaw.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,urlet.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,websd8.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,wsgblw.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,wx16999.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,xchmai.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,xiaohuau.xyz,REJECT
|
|
||||||
DOMAIN-SUFFIX,ygyzx.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,yinmong.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,yitaopt.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,yjqiqi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,yukhj.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zhaozecheng.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,zhenxinet.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zlne800.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zmlled.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,zunmi.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,zzd6.com,REJECT
|
|
||||||
IP-CIDR,39.107.15.115/32,REJECT
|
|
||||||
IP-CIDR,47.89.59.182/32,REJECT
|
|
||||||
IP-CIDR,103.49.209.27/32,REJECT
|
|
||||||
IP-CIDR,123.56.152.96/32,REJECT
|
|
||||||
# > ChinaTelecom
|
|
||||||
IP-CIDR,61.160.200.223/32,REJECT
|
|
||||||
IP-CIDR,61.160.200.242/32,REJECT
|
|
||||||
IP-CIDR,61.160.200.252/32,REJECT
|
|
||||||
IP-CIDR,61.174.50.214/32,REJECT
|
|
||||||
IP-CIDR,111.175.220.163/32,REJECT
|
|
||||||
IP-CIDR,111.175.220.164/32,REJECT
|
|
||||||
IP-CIDR,122.229.8.47/32,REJECT
|
|
||||||
IP-CIDR,122.229.29.89/32,REJECT
|
|
||||||
IP-CIDR,124.232.160.178/32,REJECT
|
|
||||||
IP-CIDR,175.6.223.15/32,REJECT
|
|
||||||
IP-CIDR,183.59.53.237/32,REJECT
|
|
||||||
IP-CIDR,218.93.127.37/32,REJECT
|
|
||||||
IP-CIDR,221.228.17.152/32,REJECT
|
|
||||||
IP-CIDR,221.231.6.79/32,REJECT
|
|
||||||
IP-CIDR,222.186.61.91/32,REJECT
|
|
||||||
IP-CIDR,222.186.61.95/32,REJECT
|
|
||||||
IP-CIDR,222.186.61.96/32,REJECT
|
|
||||||
IP-CIDR,222.186.61.97/32,REJECT
|
|
||||||
# > ChinaUnicom
|
|
||||||
IP-CIDR,106.75.231.48/32,REJECT
|
|
||||||
IP-CIDR,119.4.249.166/32,REJECT
|
|
||||||
IP-CIDR,220.196.52.141/32,REJECT
|
|
||||||
IP-CIDR,221.6.4.148/32,REJECT
|
|
||||||
# > ChinaMobile
|
|
||||||
IP-CIDR,114.247.28.96/32,REJECT
|
|
||||||
IP-CIDR,120.240.95.37/32,REJECT
|
|
||||||
IP-CIDR,221.179.131.72/32,REJECT
|
|
||||||
IP-CIDR,221.179.140.145/32,REJECT
|
|
||||||
# > Dr.Peng
|
|
||||||
# IP-CIDR,10.72.25.0/24,REJECT
|
|
||||||
IP-CIDR,115.182.16.79/32,REJECT
|
|
||||||
IP-CIDR,118.144.88.126/32,REJECT
|
|
||||||
IP-CIDR,118.144.88.215/32,REJECT
|
|
||||||
IP-CIDR,118.144.88.216/32,REJECT
|
|
||||||
IP-CIDR,120.76.189.132/32,REJECT
|
|
||||||
IP-CIDR,124.14.21.147/32,REJECT
|
|
||||||
IP-CIDR,124.14.21.151/32,REJECT
|
|
||||||
IP-CIDR,180.166.52.24/32,REJECT
|
|
||||||
IP-CIDR,211.161.101.106/32,REJECT
|
|
||||||
IP-CIDR,211.161.101.110/32,REJECT
|
|
||||||
IP-CIDR,220.115.251.25/32,REJECT
|
|
||||||
IP-CIDR,222.73.156.235/32,REJECT
|
|
||||||
|
|
||||||
# Malware
|
|
||||||
# > Huawei AspiegelBot
|
|
||||||
IP-CIDR,114.119.160.0/21,REJECT
|
|
||||||
# > KuaiZip
|
|
||||||
# https://zhuanlan.zhihu.com/p/39534279
|
|
||||||
DOMAIN-SUFFIX,kuaizip.com,REJECT
|
|
||||||
# > MacKeeper
|
|
||||||
# https://www.lizhi.io/blog/40002904
|
|
||||||
DOMAIN-SUFFIX,mackeeper.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zryydi.com,REJECT
|
|
||||||
# > Adobe Flash China Special Edition
|
|
||||||
# https://www.zhihu.com/question/281163698/answer/441388130
|
|
||||||
DOMAIN-SUFFIX,flash.cn,REJECT
|
|
||||||
DOMAIN,geo2.adobe.com,REJECT
|
|
||||||
# > C&J Marketing
|
|
||||||
# https://www.zhihu.com/question/46746200
|
|
||||||
DOMAIN-SUFFIX,4009997658.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,abbyychina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,alienskins.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,anydeskchina.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,bartender.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,betterzip.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,betterzipcn.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,beyondcompare.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,bingdianhuanyuan.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,chemdraw.com.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,cjmakeding.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,cjmkt.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,codesoftchina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,coreldrawchina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,crossoverchina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,dongmansoft.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,earmasterchina.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,easyrecoverychina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ediuschina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,flstudiochina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,folxchina.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,formysql.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,guitarpro.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,huishenghuiying.com.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,hypeapp.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,hypersnap.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,iconworkshop.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,idmchina.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,imazingchina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,imindmap.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,jihehuaban.com.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,keyshot.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,kingdeecn.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,logoshejishi.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,luping.net.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mairuan.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mairuan.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,mairuan.com.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mairuan.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,mairuanwang.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,makeding.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,mathtype.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mindmanager.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,mindmanager.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,mindmapper.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,mycleanmymac.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,nicelabel.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,ntfsformac.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,ntfsformac.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,officesoftcn.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,overturechina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,passwordrecovery.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,pdfexpert.cc,REJECT
|
|
||||||
DOMAIN-SUFFIX,photozoomchina.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,shankejingling.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,ultraiso.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,vegaschina.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,xitongqingli.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,xmindchina.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,xshellcn.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,yihuifu.cn,REJECT
|
|
||||||
DOMAIN-SUFFIX,yuanchengxiezuo.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zbrushcn.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,zhzzx.com,REJECT
|
|
@ -1,54 +0,0 @@
|
|||||||
# Privacy
|
|
||||||
DOMAIN-SUFFIX,adjust.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,cpatrk.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,kochava.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,marketo.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,mobileapptracking.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,rtbasia.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,scorecardresearch.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,sumologic.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,survicate.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tagcommander.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tailtarget.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,talkingdata.net,REJECT
|
|
||||||
DOMAIN-SUFFIX,tapad.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tapfiliate.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tapinfluence.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tapstream.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tealiumiq.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tend.io,REJECT
|
|
||||||
DOMAIN-SUFFIX,tpctrust.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,trackingio.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,tremormedia.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,woopra.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,wootric.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,wowanalytics.co.uk,REJECT
|
|
||||||
DOMAIN-SUFFIX,zoomanalytics.co,REJECT
|
|
||||||
|
|
||||||
DOMAIN,track.tenjin.com,REJECT
|
|
||||||
DOMAIN,track.tenjin.io,REJECT
|
|
||||||
DOMAIN,api.talkingdata.com,REJECT
|
|
||||||
DOMAIN,track.tiara.daum.net,REJECT
|
|
||||||
DOMAIN,track.tiara.kakao.com,REJECT
|
|
||||||
DOMAIN,zgsdk.zhugeio.com,REJECT
|
|
||||||
|
|
||||||
# > 51.LA
|
|
||||||
DOMAIN,js.users.51.la,REJECT
|
|
||||||
DOMAIN,mc.51.la,REJECT
|
|
||||||
DOMAIN,wc.51.la,REJECT
|
|
||||||
# > 58
|
|
||||||
DOMAIN,track.58.com,REJECT
|
|
||||||
DOMAIN,tracklog.58.com,REJECT
|
|
||||||
# > Baidu
|
|
||||||
DOMAIN,hm.baidu.com,REJECT
|
|
||||||
DOMAIN,hmma.baidu.com,REJECT
|
|
||||||
# > Google
|
|
||||||
DOMAIN-SUFFIX,googletagmanager.com,REJECT
|
|
||||||
DOMAIN-SUFFIX,google-analytics.com,REJECT
|
|
||||||
DOMAIN,safebrowsing.googleapis.com,REJECT
|
|
||||||
# > MI
|
|
||||||
DOMAIN-SUFFIX,tracking.miui.com,REJECT
|
|
||||||
DOMAIN,data.mistat.xiaomi.com,REJECT
|
|
||||||
DOMAIN,tracking.intl.miui.com,REJECT
|
|
||||||
# > Tencent
|
|
||||||
DOMAIN,safebrowsing.urlsec.qq.com,REJECT
|
|
@ -1,3 +0,0 @@
|
|||||||
## 说明
|
|
||||||
|
|
||||||
该目录下的内容将来将不再维护甚至移除。
|
|
@ -1,7 +0,0 @@
|
|||||||
# > Twitch
|
|
||||||
DOMAIN-SUFFIX,ext-twitch.tv,Twitch
|
|
||||||
DOMAIN-SUFFIX,jtvnw.net,Twitch
|
|
||||||
DOMAIN-SUFFIX,ttvnw.net,Twitch
|
|
||||||
DOMAIN-SUFFIX,twitch.tv,Twitch
|
|
||||||
DOMAIN-SUFFIX,twitchcdn.net,Twitch
|
|
||||||
DOMAIN-SUFFIX,twitch-ext.rootonline.de,Twitch
|
|
@ -1,4 +0,0 @@
|
|||||||
# > Deezer
|
|
||||||
USER-AGENT,Deezer*,Deezer
|
|
||||||
DOMAIN-SUFFIX,deezer.com,Deezer
|
|
||||||
DOMAIN-SUFFIX,dzcdn.net,Deezer
|
|
@ -1,3 +0,0 @@
|
|||||||
# > Instagram Music
|
|
||||||
DOMAIN-SUFFIX,cdninstagram.com,Instagram
|
|
||||||
DOMAIN-SUFFIX,instagram.com,Instagram
|
|
@ -1,5 +0,0 @@
|
|||||||
# > JOOX
|
|
||||||
USER-AGENT,JOOX*,JOOX
|
|
||||||
USER-AGENT,WeMusic*,JOOX
|
|
||||||
DOMAIN-SUFFIX,joox.com,JOOX
|
|
||||||
DOMAIN-KEYWORD,jooxweb-api,JOOX
|
|
@ -1,4 +0,0 @@
|
|||||||
# > KKBOX
|
|
||||||
DOMAIN-SUFFIX,kkbox.com,KKBOX
|
|
||||||
DOMAIN-SUFFIX,kkbox.com.tw,KKBOX
|
|
||||||
DOMAIN-SUFFIX,kfs.io,KKBOX
|
|
@ -1,3 +0,0 @@
|
|||||||
# > Pandora
|
|
||||||
USER-AGENT,Pandora*,Pandora
|
|
||||||
DOMAIN-SUFFIX,pandora.com,Pandora
|
|
@ -1,5 +0,0 @@
|
|||||||
# > SoundCloud
|
|
||||||
USER-AGENT,SoundCloud*,SoundCloud
|
|
||||||
DOMAIN-SUFFIX,p-cdn.us,SoundCloud
|
|
||||||
DOMAIN-SUFFIX,sndcdn.com,SoundCloud
|
|
||||||
DOMAIN-SUFFIX,soundcloud.com,SoundCloud
|
|
@ -1,8 +0,0 @@
|
|||||||
# > Spotify
|
|
||||||
USER-AGENT,Spotify*,Spotify
|
|
||||||
DOMAIN-SUFFIX,pscdn.co,Spotify
|
|
||||||
DOMAIN-SUFFIX,scdn.co,Spotify
|
|
||||||
DOMAIN-SUFFIX,spotify.com,Spotify
|
|
||||||
DOMAIN-SUFFIX,spoti.fi,Spotify
|
|
||||||
DOMAIN-KEYWORD,spotify.com,Spotify
|
|
||||||
DOMAIN-KEYWORD,-spotify-com,Spotify
|
|
@ -1,3 +0,0 @@
|
|||||||
# > TIDAL
|
|
||||||
USER-AGENT,TIDAL*,TIDAL
|
|
||||||
DOMAIN-SUFFIX,tidal.com,TIDAL
|
|
@ -1,3 +0,0 @@
|
|||||||
# > Himalaya
|
|
||||||
USER-AGENT,Himalaya*,Himalaya
|
|
||||||
DOMAIN-SUFFIX,himalaya.com,Himalaya
|
|
@ -1,339 +0,0 @@
|
|||||||
# Streaming Media
|
|
||||||
|
|
||||||
# (Live)
|
|
||||||
# > Twitch
|
|
||||||
DOMAIN-SUFFIX,ext-twitch.tv,Streaming
|
|
||||||
DOMAIN-SUFFIX,jtvnw.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,ttvnw.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,twitch.tv,Streaming
|
|
||||||
DOMAIN-SUFFIX,twitchcdn.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,twitch-ext.rootonline.de,Streaming
|
|
||||||
|
|
||||||
# (Music)
|
|
||||||
# > Deezer
|
|
||||||
USER-AGENT,Deezer*,Streaming
|
|
||||||
DOMAIN-SUFFIX,deezer.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,dzcdn.net,Streaming
|
|
||||||
# > JOOX
|
|
||||||
USER-AGENT,JOOX*,Streaming
|
|
||||||
USER-AGENT,WeMusic*,Streaming
|
|
||||||
DOMAIN-SUFFIX,joox.com,Streaming
|
|
||||||
DOMAIN-KEYWORD,jooxweb-api,Streaming
|
|
||||||
# > KKBOX
|
|
||||||
DOMAIN-SUFFIX,kkbox.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,kkbox.com.tw,Streaming
|
|
||||||
DOMAIN-SUFFIX,kfs.io,Streaming
|
|
||||||
# > Pandora
|
|
||||||
USER-AGENT,Pandora*,Streaming
|
|
||||||
DOMAIN-SUFFIX,pandora.com,Streaming
|
|
||||||
# > SoundCloud
|
|
||||||
USER-AGENT,SoundCloud*,Streaming
|
|
||||||
DOMAIN-SUFFIX,p-cdn.us,Streaming
|
|
||||||
DOMAIN-SUFFIX,sndcdn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,soundcloud.com,Streaming
|
|
||||||
# > Spotify
|
|
||||||
USER-AGENT,Spotify*,Streaming
|
|
||||||
DOMAIN-SUFFIX,pscdn.co,Streaming
|
|
||||||
DOMAIN-SUFFIX,scdn.co,Streaming
|
|
||||||
DOMAIN-SUFFIX,spotify.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,spoti.fi,Streaming
|
|
||||||
DOMAIN-KEYWORD,spotify.com,Streaming
|
|
||||||
DOMAIN-KEYWORD,-spotify-com,Streaming
|
|
||||||
# > TIDAL
|
|
||||||
USER-AGENT,TIDAL*,Streaming
|
|
||||||
DOMAIN-SUFFIX,tidal.com,Streaming
|
|
||||||
# > YouTubeMusic
|
|
||||||
USER-AGENT,com.google.ios.youtubemusic*,Streaming
|
|
||||||
USER-AGENT,YouTubeMusic*,Streaming
|
|
||||||
|
|
||||||
# (Podcast)
|
|
||||||
# > Himalaya
|
|
||||||
USER-AGENT,Himalaya*,Streaming
|
|
||||||
DOMAIN-SUFFIX,himalaya.com,Streaming
|
|
||||||
# > Overcast
|
|
||||||
USER-AGENT,Overcast*,Streaming
|
|
||||||
DOMAIN-SUFFIX,overcast.fm,Streaming
|
|
||||||
|
|
||||||
# (Video)
|
|
||||||
# > AbemaTV
|
|
||||||
USER-AGENT,AbemaTV*,Streaming
|
|
||||||
DOMAIN-SUFFIX,abema.io,Streaming
|
|
||||||
DOMAIN-SUFFIX,abema.tv,Streaming
|
|
||||||
DOMAIN-SUFFIX,abema-tv.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,ameba.jp,Streaming
|
|
||||||
DOMAIN-SUFFIX,hayabusa.io,Streaming
|
|
||||||
DOMAIN-SUFFIX,hayabusa.media,Streaming
|
|
||||||
DOMAIN,api-abematv.bucketeer.jp,Streaming
|
|
||||||
DOMAIN-KEYWORD,abematv.akamaized.net,Streaming
|
|
||||||
# > All 4
|
|
||||||
USER-AGENT,All4*,Streaming
|
|
||||||
DOMAIN-SUFFIX,c4assets.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,channel4.com,Streaming
|
|
||||||
# > Amazon Prime Video
|
|
||||||
USER-AGENT,InstantVideo.US*,Streaming
|
|
||||||
USER-AGENT,Prime%20Video*,Streaming
|
|
||||||
DOMAIN-SUFFIX,aiv-cdn.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,aiv-delivery.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,amazonvideo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,media-amazon.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,primevideo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,pv-cdn.net,Streaming
|
|
||||||
DOMAIN,atv-ps.amazon.com,Streaming
|
|
||||||
DOMAIN,fls-na.amazon.com,Streaming
|
|
||||||
DOMAIN,avodmp4s3ww-a.akamaihd.net,Streaming
|
|
||||||
DOMAIN,d25xi40x97liuc.cloudfront.net,Streaming
|
|
||||||
DOMAIN,dmqdd6hw24ucf.cloudfront.net,Streaming
|
|
||||||
DOMAIN,dmqdd6hw24ucf.cloudfront.net,Streaming
|
|
||||||
DOMAIN,d22qjgkvxw22r6.cloudfront.net,Streaming
|
|
||||||
DOMAIN,d1v5ir2lpwr8os.cloudfront.net,Streaming
|
|
||||||
DOMAIN,d27xxe7juh1us6.cloudfront.net,Streaming
|
|
||||||
# DOMAIN,www.amazon.com,Streaming
|
|
||||||
DOMAIN-KEYWORD,avoddashs,Streaming
|
|
||||||
# > Apple Music TV
|
|
||||||
DOMAIN,tv.applemusic.com,Streaming
|
|
||||||
# > Apple TV
|
|
||||||
DOMAIN,linear.tv.apple.com,Streaming
|
|
||||||
DOMAIN,play-edge.itunes.apple.com,Streaming
|
|
||||||
DOMAIN,uts-api.itunes.apple.com,Streaming
|
|
||||||
# > Bahamut
|
|
||||||
USER-AGENT,Anime*,Streaming
|
|
||||||
DOMAIN-SUFFIX,bahamut.com.tw,Streaming
|
|
||||||
DOMAIN-SUFFIX,gamer.com.tw,Streaming
|
|
||||||
DOMAIN,bahamut.akamaized.net,Streaming
|
|
||||||
DOMAIN,gamer-cds.cdn.hinet.net,Streaming
|
|
||||||
DOMAIN,gamer2-cds.cdn.hinet.net,Streaming
|
|
||||||
# > BBC iPlayer
|
|
||||||
USER-AGENT,BBCiPlayer*,Streaming
|
|
||||||
DOMAIN-SUFFIX,bbc.co.uk,Streaming
|
|
||||||
DOMAIN-SUFFIX,bbci.co.uk,Streaming
|
|
||||||
DOMAIN-KEYWORD,bbcfmt,Streaming
|
|
||||||
DOMAIN-KEYWORD,uk-live,Streaming
|
|
||||||
# > bilibili Intl
|
|
||||||
DOMAIN-SUFFIX,biliintl.com,Streaming
|
|
||||||
DOMAIN,apm-misaka.biliapi.net,Streaming
|
|
||||||
DOMAIN,p.bstarstatic.com,Streaming
|
|
||||||
DOMAIN,p-bstarstatic.akamaized.net,Streaming
|
|
||||||
DOMAIN,upos-bstar-mirrorakam.akamaized.net,Streaming
|
|
||||||
DOMAIN,upos-bstar1-mirrorakam.akamaized.net,Streaming
|
|
||||||
# > DAZN
|
|
||||||
USER-AGENT,DAZN*,Streaming
|
|
||||||
DOMAIN-SUFFIX,dazn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,dazn-api.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,dazndn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,indazn.com,Streaming
|
|
||||||
DOMAIN,d151l6v8er5bdm.cloudfront.net,Streaming
|
|
||||||
DOMAIN-KEYWORD,voddazn,Streaming
|
|
||||||
# > discovery+
|
|
||||||
USER-AGENT,DPlus*,Streaming
|
|
||||||
USER-AGENT,discovery+*,Streaming
|
|
||||||
DOMAIN-SUFFIX,disco-api.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.co.uk,Streaming
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.in,Streaming
|
|
||||||
DOMAIN-SUFFIX,dnitv.com,Streaming
|
|
||||||
# DOMAIN,go-prod-vz.akamaized.net,Streaming
|
|
||||||
DOMAIN,x-default-stgec.uplynk.com,Streaming
|
|
||||||
DOMAIN-KEYWORD,discovery.uplynk.com,Streaming
|
|
||||||
# > Disney+
|
|
||||||
USER-AGENT,Disney+*,Streaming
|
|
||||||
DOMAIN-SUFFIX,bamgrid.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,disneyplus.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,disney-plus.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,disneystreaming.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,dssott.com,Streaming
|
|
||||||
DOMAIN,cdn.registerdisney.go.com,Streaming
|
|
||||||
# > DMM
|
|
||||||
DOMAIN-SUFFIX,dmm.co.jp,Streaming
|
|
||||||
DOMAIN-SUFFIX,dmm.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,dmm-extension.com,Streaming
|
|
||||||
# > encoreTVB
|
|
||||||
USER-AGENT,encoreTVB*,Streaming
|
|
||||||
DOMAIN-SUFFIX,encoretvb.com,Streaming
|
|
||||||
DOMAIN,edge.api.brightcove.com,Streaming
|
|
||||||
DOMAIN,bcbolt446c5271-a.akamaihd.net,Streaming
|
|
||||||
# > Hami Video
|
|
||||||
DOMAIN-SUFFIX,ott.hinet.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,hamivideo.hinet.net,Streaming
|
|
||||||
DOMAIN,hls-hichannel.cdn.hinet.net,Streaming
|
|
||||||
DOMAIN-KEYWORD,hamivideo.cdn.hinet.net,Streaming
|
|
||||||
# > HBO NOW & Max
|
|
||||||
USER-AGENT,HBO%20NOW*,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbogo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbonow.com,Streaming
|
|
||||||
USER-AGENT,HBOMAX*,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbomax.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbomaxcdn.com,Streaming
|
|
||||||
# > HBO Asia
|
|
||||||
USER-AGENT,HBO%20GO%20PROD*,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbogoasia.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,hbogoasia.hk,Streaming
|
|
||||||
DOMAIN-KEYWORD,.hbogoasia.,Streaming
|
|
||||||
DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com,Streaming
|
|
||||||
DOMAIN,bcbolthboa-a.akamaihd.net,Streaming
|
|
||||||
DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net,Streaming
|
|
||||||
DOMAIN,dai3fd1oh325y.cloudfront.net,Streaming
|
|
||||||
DOMAIN,hboasia1-i.akamaihd.net,Streaming
|
|
||||||
DOMAIN,hboasia2-i.akamaihd.net,Streaming
|
|
||||||
DOMAIN,hboasia3-i.akamaihd.net,Streaming
|
|
||||||
DOMAIN,hboasia4-i.akamaihd.net,Streaming
|
|
||||||
DOMAIN,hboasia5-i.akamaihd.net,Streaming
|
|
||||||
DOMAIN,hboasialive.akamaized.net,Streaming
|
|
||||||
DOMAIN,hbogoprod-vod.akamaized.net,Streaming
|
|
||||||
DOMAIN,hbolb.onwardsmg.com,Streaming
|
|
||||||
DOMAIN,hbounify-prod.evergent.com,Streaming
|
|
||||||
DOMAIN,players.brightcove.net,Streaming
|
|
||||||
DOMAIN,s3-ap-southeast-1.amazonaws.com,Streaming
|
|
||||||
# > 华文电视
|
|
||||||
USER-AGENT,HWTVMobile*,Streaming
|
|
||||||
DOMAIN-SUFFIX,5itv.tv,Streaming
|
|
||||||
DOMAIN-SUFFIX,ocnttv.com,Streaming
|
|
||||||
# > Hulu
|
|
||||||
DOMAIN-SUFFIX,hulu.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,huluim.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,hulustream.com,Streaming
|
|
||||||
# > Hulu / フールー
|
|
||||||
DOMAIN-SUFFIX,happyon.jp,Streaming
|
|
||||||
DOMAIN-SUFFIX,hjholdings.jp,Streaming
|
|
||||||
DOMAIN-SUFFIX,hulu.jp,Streaming
|
|
||||||
# > ITV
|
|
||||||
USER-AGENT,ITV_Player*,Streaming
|
|
||||||
DOMAIN-SUFFIX,itv.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,itvstatic.com,Streaming
|
|
||||||
DOMAIN,itvpnpmobile-a.akamaihd.net,Streaming
|
|
||||||
# > iQIYI
|
|
||||||
DOMAIN-SUFFIX,iq.com,Streaming
|
|
||||||
DOMAIN,intl.iqiyi.com,Streaming
|
|
||||||
DOMAIN,intl-rcd.iqiyi.com,Streaming
|
|
||||||
DOMAIN,intl-subscription.iqiyi.com,Streaming
|
|
||||||
IP-CIDR,23.53.32.88/32,Streaming
|
|
||||||
IP-CIDR,23.211.15.99/32,Streaming
|
|
||||||
IP-CIDR,103.5.34.153/32,Streaming
|
|
||||||
IP-CIDR,104.109.129.153/32,Streaming
|
|
||||||
IP-CIDR,110.238.107.47/32,Streaming
|
|
||||||
IP-CIDR,118.26.32.178/32,Streaming
|
|
||||||
IP-CIDR,203.74.95.131/32,Streaming
|
|
||||||
IP-CIDR,203.74.95.139/32,Streaming
|
|
||||||
IP-CIDR,203.74.95.153/32,Streaming
|
|
||||||
IP-CIDR,203.211.4.169/32,Streaming
|
|
||||||
IP-CIDR,203.211.4.193/32,Streaming
|
|
||||||
IP-CIDR,210.71.227.200/32,Streaming
|
|
||||||
IP-CIDR,210.71.227.202/32,Streaming
|
|
||||||
IP-CIDR,210.201.32.8/32,Streaming
|
|
||||||
IP-CIDR,210.201.32.11/32,Streaming
|
|
||||||
# > KKTV
|
|
||||||
USER-AGENT,KKTV*,Streaming
|
|
||||||
USER-AGENT,com.kktv.ios.kktv*,Streaming
|
|
||||||
DOMAIN-SUFFIX,kktv.com.tw,Streaming
|
|
||||||
DOMAIN-SUFFIX,kktv.me,Streaming
|
|
||||||
DOMAIN,kktv-theater.kk.stream,Streaming
|
|
||||||
# > LINE TV
|
|
||||||
USER-AGENT,LINE%20TV*,Streaming
|
|
||||||
DOMAIN-SUFFIX,linetv.tw,Streaming
|
|
||||||
DOMAIN,d3c7rimkq79yfu.cloudfront.net,Streaming
|
|
||||||
# > LiTV
|
|
||||||
DOMAIN-SUFFIX,litv.tv,Streaming
|
|
||||||
DOMAIN,litvfreemobile-hichannel.cdn.hinet.net,Streaming
|
|
||||||
# > My5
|
|
||||||
USER-AGENT,My5*,Streaming
|
|
||||||
DOMAIN-SUFFIX,channel5.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,my5.tv,Streaming
|
|
||||||
DOMAIN,d349g9zuie06uo.cloudfront.net,Streaming
|
|
||||||
# > myTV SUPER
|
|
||||||
USER-AGENT,mytv*,Streaming
|
|
||||||
DOMAIN-SUFFIX,mytvsuper.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,tvb.com,Streaming
|
|
||||||
# > Naver TV
|
|
||||||
USER-AGENT,Naver%20TV*,Streaming
|
|
||||||
DOMAIN-SUFFIX,naver.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,smartmediarep.com,Streaming
|
|
||||||
# > Netflix
|
|
||||||
USER-AGENT,Argo*,Streaming
|
|
||||||
DOMAIN-SUFFIX,netflix.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,netflix.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,nflxext.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,nflximg.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,nflximg.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,nflxso.net,Streaming
|
|
||||||
DOMAIN-SUFFIX,nflxvideo.net,Streaming
|
|
||||||
DOMAIN-KEYWORD,netflixdnstest,Streaming
|
|
||||||
DOMAIN-KEYWORD,apiproxy-device-prod-nlb-,Streaming
|
|
||||||
DOMAIN-KEYWORD,dualstack.apiproxy-,Streaming
|
|
||||||
# GEOIP,NETFLIX,Streaming
|
|
||||||
# > niconico
|
|
||||||
USER-AGENT,Niconico*,Streaming
|
|
||||||
DOMAIN-SUFFIX,dmc.nico,Streaming
|
|
||||||
DOMAIN-SUFFIX,nicovideo.jp,Streaming
|
|
||||||
DOMAIN-SUFFIX,nimg.jp,Streaming
|
|
||||||
# > Now E
|
|
||||||
DOMAIN-SUFFIX,nowe.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,nowestatic.com,Streaming
|
|
||||||
# > Paramount+
|
|
||||||
USER-AGENT,PPlus*,Streaming
|
|
||||||
DOMAIN-SUFFIX,cbsi.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,cbsaavideo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,cbsivideo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,paramountplus.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,pplusstatic.com,Streaming
|
|
||||||
DOMAIN,cbsi.live.ott.irdeto.com,Streaming
|
|
||||||
DOMAIN,cbsplaylistserver.aws.syncbak.com,Streaming
|
|
||||||
DOMAIN,cbsservice.aws.syncbak.com,Streaming
|
|
||||||
DOMAIN,link.theplatform.com,Streaming
|
|
||||||
# > PBS
|
|
||||||
USER-AGENT,PBS*,Streaming
|
|
||||||
DOMAIN-SUFFIX,pbs.org,Streaming
|
|
||||||
# > Peacock
|
|
||||||
USER-AGENT,PeacockMobile*,Streaming
|
|
||||||
DOMAIN-SUFFIX,peacocktv.com,Streaming
|
|
||||||
# > Pornhub
|
|
||||||
DOMAIN-SUFFIX,phncdn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,phprcdn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,pornhub.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,pornhubpremium.com,Streaming
|
|
||||||
# > 台湾好
|
|
||||||
USER-AGENT,TaiwanGood*,Streaming
|
|
||||||
DOMAIN-SUFFIX,skyking.com.tw,Streaming
|
|
||||||
DOMAIN,hamifans.emome.net,Streaming
|
|
||||||
# > TikTok
|
|
||||||
USER-AGENT,TikTok*,Streaming
|
|
||||||
DOMAIN-SUFFIX,byteoversea.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,ibytedtos.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,muscdn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,musical.ly,Streaming
|
|
||||||
DOMAIN-SUFFIX,tiktok.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,tik-tokapi.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,tiktokcdn.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,tiktokv.com,Streaming
|
|
||||||
DOMAIN-KEYWORD,tiktokcdn-,Streaming
|
|
||||||
# > TVer
|
|
||||||
USER-AGENT,TVer-Release*,Streaming
|
|
||||||
DOMAIN-SUFFIX,tver.jp,Streaming
|
|
||||||
DOMAIN,edge.api.brightcove.com,Streaming
|
|
||||||
# > ViuTV
|
|
||||||
USER-AGENT,Viu*,Streaming
|
|
||||||
DOMAIN-SUFFIX,viu.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,viu.tv,Streaming
|
|
||||||
DOMAIN,api.viu.now.com,Streaming
|
|
||||||
DOMAIN,d1k2us671qcoau.cloudfront.net,Streaming
|
|
||||||
DOMAIN,d2anahhhmp1ffz.cloudfront.net,Streaming
|
|
||||||
DOMAIN,dfp6rglgjqszk.cloudfront.net,Streaming
|
|
||||||
# > WeTV
|
|
||||||
USER-AGENT,WeTV*,Streaming
|
|
||||||
DOMAIN-SUFFIX,wetv.vip,Streaming
|
|
||||||
DOMAIN-SUFFIX,wetvinfo.com,Streaming
|
|
||||||
IP-CIDR,150.109.28.51/32,Streaming
|
|
||||||
# > YouTube
|
|
||||||
USER-AGENT,com.google.ios.youtube*,Streaming
|
|
||||||
USER-AGENT,YouTube*,Streaming
|
|
||||||
DOMAIN-SUFFIX,googlevideo.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,withyoutube.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtu.be,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtube.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtubeeducation.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtubegaming.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtubekids.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,youtube-nocookie.com,Streaming
|
|
||||||
DOMAIN-SUFFIX,yt.be,Streaming
|
|
||||||
DOMAIN-SUFFIX,ytimg.com,Streaming
|
|
||||||
DOMAIN,youtubei.googleapis.com,Streaming
|
|
||||||
DOMAIN,yt3.ggpht.com,Streaming
|
|
@ -1,65 +0,0 @@
|
|||||||
# (Video)
|
|
||||||
# > Acfun
|
|
||||||
DOMAIN-SUFFIX,acfun.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,aixifan.com,PROXY
|
|
||||||
# > bilibili
|
|
||||||
DOMAIN-SUFFIX,biliapi.net,PROXY
|
|
||||||
DOMAIN-SUFFIX,bilibili.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,bilivideo.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,hdslb.com,PROXY
|
|
||||||
# > Tencent Video
|
|
||||||
DOMAIN-SUFFIX,video.qq.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,i.qq.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,v.qq.com,PROXY
|
|
||||||
# > iQiyi
|
|
||||||
DOMAIN-SUFFIX,iqiyi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,71edge.com,PROXY
|
|
||||||
# > Youku
|
|
||||||
DOMAIN-SUFFIX,soku.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,youku.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,ykimg.com,PROXY
|
|
||||||
# > XiGua
|
|
||||||
DOMAIN-SUFFIX,ixigua.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,snssdk.com,PROXY
|
|
||||||
# > HunanTV
|
|
||||||
DOMAIN-SUFFIX,hitv.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,hunantv.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,mgtv.com,PROXY
|
|
||||||
# > Le
|
|
||||||
DOMAIN-SUFFIX,le.com,PROXY
|
|
||||||
# > PPLive
|
|
||||||
DOMAIN-SUFFIX,pplive.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,pptv.com,PROXY
|
|
||||||
# > Sohu Video
|
|
||||||
DOMAIN-SUFFIX,itc.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,sohu.com,PROXY
|
|
||||||
# > Migu Video
|
|
||||||
DOMAIN-SUFFIX,cmvideo.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,miguvideo.com,PROXY
|
|
||||||
|
|
||||||
# (Music)
|
|
||||||
# > QQ Music
|
|
||||||
DOMAIN-SUFFIX,music.qq.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,music.tc.qq.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,qqmusic.qq.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,tencentmusic.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,y.qq.com,PROXY
|
|
||||||
DOMAIN,aqqmusic.tc.qq.com,PROXY
|
|
||||||
DOMAIN,moo.qq.com,PROXY
|
|
||||||
# > China Music Corp
|
|
||||||
DOMAIN-SUFFIX,kuwo.cn,PROXY
|
|
||||||
DOMAIN-SUFFIX,kugou.com,PROXY
|
|
||||||
# > Netease Cloud Music
|
|
||||||
DOMAIN-SUFFIX,music.163.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,music.126.net,PROXY
|
|
||||||
DOMAIN,mam.netease.com,PROXY
|
|
||||||
DOMAIN,api.iplay.163.com,PROXY
|
|
||||||
# > Qianqian Music
|
|
||||||
DOMAIN-SUFFIX,qianqian.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,taihe.com,PROXY
|
|
||||||
# > Migu Music
|
|
||||||
DOMAIN-SUFFIX,migu.cn,PROXY
|
|
||||||
# > Xiaomi
|
|
||||||
DOMAIN-SUFFIX,ai.xiaomi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,music.xiaomi.com,PROXY
|
|
||||||
DOMAIN-SUFFIX,dmhmusic.com,PROXY
|
|
@ -1,19 +0,0 @@
|
|||||||
# > bilibili
|
|
||||||
DOMAIN,api.biliapi.com,StreamingSE
|
|
||||||
DOMAIN,api.biliapi.net,StreamingSE
|
|
||||||
DOMAIN,api.bilibili.com,StreamingSE
|
|
||||||
DOMAIN,app.biliapi.com,StreamingSE
|
|
||||||
DOMAIN,app.biliapi.net,StreamingSE
|
|
||||||
DOMAIN,app.bilibili.com,StreamingSE
|
|
||||||
DOMAIN,grpc.biliapi.net,StreamingSE
|
|
||||||
DOMAIN,m.bilibili.com,StreamingSE
|
|
||||||
DOMAIN,upos-hz-mirrorakam.akamaized.net,StreamingSE
|
|
||||||
DOMAIN,www.bilibili.com,StreamingSE
|
|
||||||
DOMAIN-KEYWORD,cn-hk-eq-bcache-,StreamingSE
|
|
||||||
# > 愛奇藝台灣站
|
|
||||||
DOMAIN,cache.video.iqiyi.com,StreamingSE
|
|
||||||
IP-CIDR,116.211.202.206/32,StreamingSE
|
|
||||||
IP-CIDR,116.211.202.216/32,StreamingSE
|
|
||||||
# > MangoTV(芒果TV国际)
|
|
||||||
DOMAIN-SUFFIX,api.mgtv.com,StreamingSE
|
|
||||||
DOMAIN,mobileso.bz.mgtv.com,StreamingSE
|
|
@ -1,10 +0,0 @@
|
|||||||
# > AbemaTV
|
|
||||||
USER-AGENT,AbemaTV*,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,abema.io,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,abema.tv,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,abema-tv.com,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,ameba.jp,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,hayabusa.io,AbemaTV
|
|
||||||
DOMAIN-SUFFIX,hayabusa.media,AbemaTV
|
|
||||||
DOMAIN,api-abematv.bucketeer.jp,AbemaTV
|
|
||||||
DOMAIN-KEYWORD,abematv.akamaized.net,AbemaTV
|
|
@ -1,4 +0,0 @@
|
|||||||
# > All 4
|
|
||||||
USER-AGENT,All4*,All 4
|
|
||||||
DOMAIN-SUFFIX,c4assets.com,All 4
|
|
||||||
DOMAIN-SUFFIX,channel4.com,All 4
|
|
@ -1,6 +0,0 @@
|
|||||||
# > BBC iPlayer
|
|
||||||
USER-AGENT,BBCiPlayer*,BBC iPlayer
|
|
||||||
DOMAIN-SUFFIX,bbc.co.uk,BBC iPlayer
|
|
||||||
DOMAIN-SUFFIX,bbci.co.uk,BBC iPlayer
|
|
||||||
DOMAIN-KEYWORD,bbcfmt,BBC iPlayer
|
|
||||||
DOMAIN-KEYWORD,uk-live,BBC iPlayer
|
|
@ -1,7 +0,0 @@
|
|||||||
# > Bahamut
|
|
||||||
USER-AGENT,Anime*,巴哈姆特動畫瘋
|
|
||||||
DOMAIN-SUFFIX,bahamut.com.tw,巴哈姆特動畫瘋
|
|
||||||
DOMAIN-SUFFIX,gamer.com.tw,巴哈姆特動畫瘋
|
|
||||||
DOMAIN,bahamut.akamaized.net,巴哈姆特動畫瘋
|
|
||||||
DOMAIN,gamer-cds.cdn.hinet.net,巴哈姆特動畫瘋
|
|
||||||
DOMAIN,gamer2-cds.cdn.hinet.net,巴哈姆特動畫瘋
|
|
@ -1,8 +0,0 @@
|
|||||||
# > DAZN
|
|
||||||
USER-AGENT,DAZN*,DAZN
|
|
||||||
DOMAIN-SUFFIX,dazn.com,DAZN
|
|
||||||
DOMAIN-SUFFIX,dazn-api.com,DAZN
|
|
||||||
DOMAIN-SUFFIX,dazndn.com,DAZN
|
|
||||||
DOMAIN-SUFFIX,indazn.com,DAZN
|
|
||||||
DOMAIN,d151l6v8er5bdm.cloudfront.net,DAZN
|
|
||||||
DOMAIN-KEYWORD,voddazn,DAZN
|
|
@ -1,4 +0,0 @@
|
|||||||
# > DMM
|
|
||||||
DOMAIN-SUFFIX,dmm.co.jp,DMM
|
|
||||||
DOMAIN-SUFFIX,dmm.com,DMM
|
|
||||||
DOMAIN-SUFFIX,dmm-extension.com,DMM
|
|
@ -1,8 +0,0 @@
|
|||||||
# > Disney+
|
|
||||||
USER-AGENT,Disney+*,Disney+
|
|
||||||
DOMAIN-SUFFIX,bamgrid.com,Disney+
|
|
||||||
DOMAIN-SUFFIX,disneyplus.com,Disney+
|
|
||||||
DOMAIN-SUFFIX,disney-plus.net,Disney+
|
|
||||||
DOMAIN-SUFFIX,disneystreaming.com,Disney+
|
|
||||||
DOMAIN-SUFFIX,dssott.com,Disney+
|
|
||||||
DOMAIN,cdn.registerdisney.go.com,Disney+
|
|
@ -1,20 +0,0 @@
|
|||||||
# > HBO Asia
|
|
||||||
USER-AGENT,HBO%20GO%20PROD*,HBO Asia
|
|
||||||
DOMAIN-SUFFIX,hbogoasia.com,HBO Asia
|
|
||||||
DOMAIN-SUFFIX,hbogoasia.hk,HBO Asia
|
|
||||||
DOMAIN-KEYWORD,.hbogoasia.,HBO Asia
|
|
||||||
DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com,HBO Asia
|
|
||||||
DOMAIN,bcbolthboa-a.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net,HBO Asia
|
|
||||||
DOMAIN,dai3fd1oh325y.cloudfront.net,HBO Asia
|
|
||||||
DOMAIN,hboasia1-i.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,hboasia2-i.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,hboasia3-i.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,hboasia4-i.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,hboasia5-i.akamaihd.net,HBO Asia
|
|
||||||
DOMAIN,hboasialive.akamaized.net,HBO Asia
|
|
||||||
DOMAIN,hbogoprod-vod.akamaized.net,HBO Asia
|
|
||||||
DOMAIN,hbolb.onwardsmg.com,HBO Asia
|
|
||||||
DOMAIN,hbounify-prod.evergent.com,HBO Asia
|
|
||||||
DOMAIN,players.brightcove.net,HBO Asia
|
|
||||||
DOMAIN,s3-ap-southeast-1.amazonaws.com,HBO Asia
|
|
@ -1,8 +0,0 @@
|
|||||||
# > HBO NOW & Max
|
|
||||||
USER-AGENT,HBO%20NOW*,HBO
|
|
||||||
DOMAIN-SUFFIX,hbo.com,HBO
|
|
||||||
DOMAIN-SUFFIX,hbogo.com,HBO
|
|
||||||
DOMAIN-SUFFIX,hbonow.com,HBO
|
|
||||||
USER-AGENT,HBOMAX*,HBO
|
|
||||||
DOMAIN-SUFFIX,hbomax.com,HBO
|
|
||||||
DOMAIN-SUFFIX,hbomaxcdn.com,HBO
|
|
@ -1,4 +0,0 @@
|
|||||||
# > 华文电视
|
|
||||||
USER-AGENT,HWTVMobile*,华文电视
|
|
||||||
DOMAIN-SUFFIX,5itv.tv,华文电视
|
|
||||||
DOMAIN-SUFFIX,ocnttv.com,华文电视
|
|
@ -1,5 +0,0 @@
|
|||||||
# > Hami Video
|
|
||||||
DOMAIN-SUFFIX,ott.hinet.net,Hami Video
|
|
||||||
DOMAIN-SUFFIX,hamivideo.hinet.net,Hami Video
|
|
||||||
DOMAIN,hls-hichannel.cdn.hinet.net,Hami Video
|
|
||||||
DOMAIN-KEYWORD,hamivideo.cdn.hinet.net,Hami Video
|
|
@ -1,4 +0,0 @@
|
|||||||
# > Hulu / フールー
|
|
||||||
DOMAIN-SUFFIX,happyon.jp,Hulu フールー
|
|
||||||
DOMAIN-SUFFIX,hjholdings.jp,Hulu フールー
|
|
||||||
DOMAIN-SUFFIX,hulu.jp,Hulu フールー
|
|
@ -1,4 +0,0 @@
|
|||||||
# > Hulu
|
|
||||||
DOMAIN-SUFFIX,hulu.com,Hulu
|
|
||||||
DOMAIN-SUFFIX,huluim.com,Hulu
|
|
||||||
DOMAIN-SUFFIX,hulustream.com,Hulu
|
|
@ -1,5 +0,0 @@
|
|||||||
# > ITV
|
|
||||||
USER-AGENT,ITV_Player*,ITV
|
|
||||||
DOMAIN-SUFFIX,itv.com,ITV
|
|
||||||
DOMAIN-SUFFIX,itvstatic.com,ITV
|
|
||||||
DOMAIN,itvpnpmobile-a.akamaihd.net,ITV
|
|
@ -1,6 +0,0 @@
|
|||||||
# > KKTV
|
|
||||||
USER-AGENT,KKTV*,KKTV
|
|
||||||
USER-AGENT,com.kktv.ios.kktv*,KKTV
|
|
||||||
DOMAIN-SUFFIX,kktv.com.tw,KKTV
|
|
||||||
DOMAIN-SUFFIX,kktv.me,KKTV
|
|
||||||
DOMAIN,kktv-theater.kk.stream,KKTV
|
|
@ -1,4 +0,0 @@
|
|||||||
# > LINE TV
|
|
||||||
USER-AGENT,LINE%20TV*,LINE TV
|
|
||||||
DOMAIN-SUFFIX,linetv.tw,LINE TV
|
|
||||||
DOMAIN,d3c7rimkq79yfu.cloudfront.net,LINE TV
|
|
@ -1,3 +0,0 @@
|
|||||||
# > LiTV
|
|
||||||
DOMAIN-SUFFIX,litv.tv,LiTV
|
|
||||||
DOMAIN,litvfreemobile-hichannel.cdn.hinet.net,LiTV
|
|
@ -1,5 +0,0 @@
|
|||||||
# > My5
|
|
||||||
USER-AGENT,My5*,My5
|
|
||||||
DOMAIN-SUFFIX,channel5.com,My5
|
|
||||||
DOMAIN-SUFFIX,my5.tv,My5
|
|
||||||
DOMAIN,d349g9zuie06uo.cloudfront.net,My5
|
|
@ -1,4 +0,0 @@
|
|||||||
# > Naver TV
|
|
||||||
USER-AGENT,Naver%20TV*,Naver TV
|
|
||||||
DOMAIN-SUFFIX,naver.com,Naver TV
|
|
||||||
DOMAIN-SUFFIX,smartmediarep.com,Naver TV
|
|
@ -1,13 +0,0 @@
|
|||||||
# > Netflix
|
|
||||||
USER-AGENT,Argo*,Netflix
|
|
||||||
DOMAIN-SUFFIX,netflix.com,Netflix
|
|
||||||
DOMAIN-SUFFIX,netflix.net,Netflix
|
|
||||||
DOMAIN-SUFFIX,nflxext.com,Netflix
|
|
||||||
DOMAIN-SUFFIX,nflximg.com,Netflix
|
|
||||||
DOMAIN-SUFFIX,nflximg.net,Netflix
|
|
||||||
DOMAIN-SUFFIX,nflxso.net,Netflix
|
|
||||||
DOMAIN-SUFFIX,nflxvideo.net,Netflix
|
|
||||||
DOMAIN-KEYWORD,netflixdnstest,Netflix
|
|
||||||
DOMAIN-KEYWORD,apiproxy-device-prod-nlb-,Netflix
|
|
||||||
DOMAIN-KEYWORD,dualstack.apiproxy-,Netflix
|
|
||||||
# GEOIP,NETFLIX,Netflix
|
|
@ -1,3 +0,0 @@
|
|||||||
# > Now E
|
|
||||||
DOMAIN-SUFFIX,nowe.com,Now E
|
|
||||||
DOMAIN-SUFFIX,nowestatic.com,Now E
|
|
@ -1,3 +0,0 @@
|
|||||||
# > PBS
|
|
||||||
USER-AGENT,PBS*,PBS
|
|
||||||
DOMAIN-SUFFIX,pbs.org,PBS
|
|
@ -1,11 +0,0 @@
|
|||||||
# > Paramount+
|
|
||||||
USER-AGENT,PPlus*,Paramount+
|
|
||||||
DOMAIN-SUFFIX,cbsi.com,Paramount+
|
|
||||||
DOMAIN-SUFFIX,cbsaavideo.com,Paramount+
|
|
||||||
DOMAIN-SUFFIX,cbsivideo.com,Paramount+
|
|
||||||
DOMAIN-SUFFIX,paramountplus.com,Paramount+
|
|
||||||
DOMAIN-SUFFIX,pplusstatic.com,Paramount+
|
|
||||||
DOMAIN,cbsi.live.ott.irdeto.com,Paramount+
|
|
||||||
DOMAIN,cbsplaylistserver.aws.syncbak.com,Paramount+
|
|
||||||
DOMAIN,cbsservice.aws.syncbak.com,Paramount+
|
|
||||||
DOMAIN,link.theplatform.com,Paramount+
|
|
@ -1,3 +0,0 @@
|
|||||||
# > Peacock
|
|
||||||
USER-AGENT,PeacockMobile*,Peacock
|
|
||||||
DOMAIN-SUFFIX,peacocktv.com,Peacock
|
|
@ -1,5 +0,0 @@
|
|||||||
# > Pornhub
|
|
||||||
DOMAIN-SUFFIX,phncdn.com,Pornhub
|
|
||||||
DOMAIN-SUFFIX,phprcdn.com,Pornhub
|
|
||||||
DOMAIN-SUFFIX,pornhub.com,Pornhub
|
|
||||||
DOMAIN-SUFFIX,pornhubpremium.com,Pornhub
|
|
@ -1,20 +0,0 @@
|
|||||||
# > Amazon Prime Video
|
|
||||||
USER-AGENT,InstantVideo.US*,Prime Video
|
|
||||||
USER-AGENT,Prime%20Video*,Prime Video
|
|
||||||
DOMAIN-SUFFIX,aiv-cdn.net,Prime Video
|
|
||||||
DOMAIN-SUFFIX,aiv-delivery.net,Prime Video
|
|
||||||
DOMAIN-SUFFIX,amazonvideo.com,Prime Video
|
|
||||||
DOMAIN-SUFFIX,media-amazon.com,Prime Video
|
|
||||||
DOMAIN-SUFFIX,primevideo.com,Prime Video
|
|
||||||
DOMAIN-SUFFIX,pv-cdn.net,Prime Video
|
|
||||||
DOMAIN,atv-ps.amazon.com,Prime Video
|
|
||||||
DOMAIN,fls-na.amazon.com,Prime Video
|
|
||||||
DOMAIN,avodmp4s3ww-a.akamaihd.net,Prime Video
|
|
||||||
DOMAIN,d25xi40x97liuc.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,dmqdd6hw24ucf.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,dmqdd6hw24ucf.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,d22qjgkvxw22r6.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,d1v5ir2lpwr8os.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,d27xxe7juh1us6.cloudfront.net,Prime Video
|
|
||||||
DOMAIN,www.amazon.com,Prime Video
|
|
||||||
DOMAIN-KEYWORD,avoddashs,Prime Video
|
|
@ -1,4 +0,0 @@
|
|||||||
# > TVer
|
|
||||||
USER-AGENT,TVer-Release*,TVer
|
|
||||||
DOMAIN-SUFFIX,tver.jp,TVer
|
|
||||||
DOMAIN,edge.api.brightcove.com,TVer
|
|
@ -1,4 +0,0 @@
|
|||||||
# > 台湾好
|
|
||||||
USER-AGENT,TaiwanGood*,台湾好
|
|
||||||
DOMAIN-SUFFIX,skyking.com.tw,台湾好
|
|
||||||
DOMAIN,hamifans.emome.net,台湾好
|
|
@ -1,12 +0,0 @@
|
|||||||
# > TikTok
|
|
||||||
USER-AGENT,TikTok*,TikTok
|
|
||||||
DOMAIN-SUFFIX,byteoversea.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,ibytedtos.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,ipstatp.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,muscdn.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,musical.ly,TikTok
|
|
||||||
DOMAIN-SUFFIX,tiktok.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,tik-tokapi.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,tiktokcdn.com,TikTok
|
|
||||||
DOMAIN-SUFFIX,tiktokv.com,TikTok
|
|
||||||
DOMAIN-KEYWORD,tiktokcdn-,TikTok
|
|
@ -1,8 +0,0 @@
|
|||||||
# > ViuTV
|
|
||||||
USER-AGENT,Viu*,ViuTV
|
|
||||||
DOMAIN-SUFFIX,viu.com,ViuTV
|
|
||||||
DOMAIN-SUFFIX,viu.tv,ViuTV
|
|
||||||
DOMAIN,api.viu.now.com,ViuTV
|
|
||||||
DOMAIN,d1k2us671qcoau.cloudfront.net,ViuTV
|
|
||||||
DOMAIN,d2anahhhmp1ffz.cloudfront.net,ViuTV
|
|
||||||
DOMAIN,dfp6rglgjqszk.cloudfront.net,ViuTV
|
|
@ -1,5 +0,0 @@
|
|||||||
# > WeTV
|
|
||||||
USER-AGENT,WeTV*,WeTV
|
|
||||||
DOMAIN-SUFFIX,wetv.vip,WeTV
|
|
||||||
DOMAIN-SUFFIX,wetvinfo.com,WeTV
|
|
||||||
IP-CIDR,150.109.28.51/32,WeTV
|
|
@ -1,15 +0,0 @@
|
|||||||
# > YouTube
|
|
||||||
USER-AGENT,com.google.ios.youtube*,YouTube
|
|
||||||
USER-AGENT,YouTube*,YouTube
|
|
||||||
DOMAIN-SUFFIX,googlevideo.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,withyoutube.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtu.be,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtube.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtubeeducation.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtubegaming.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtubekids.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,youtube-nocookie.com,YouTube
|
|
||||||
DOMAIN-SUFFIX,yt.be,YouTube
|
|
||||||
DOMAIN-SUFFIX,ytimg.com,YouTube
|
|
||||||
DOMAIN,youtubei.googleapis.com,YouTube
|
|
||||||
DOMAIN,yt3.ggpht.com,YouTube
|
|
@ -1,7 +0,0 @@
|
|||||||
# > bilibili Intl
|
|
||||||
DOMAIN-SUFFIX,biliintl.com,bilibili
|
|
||||||
DOMAIN,apm-misaka.biliapi.net,bilibili
|
|
||||||
DOMAIN,p.bstarstatic.com,bilibili
|
|
||||||
DOMAIN,p-bstarstatic.akamaized.net,bilibili
|
|
||||||
DOMAIN,upos-bstar-mirrorakam.akamaized.net,bilibili
|
|
||||||
DOMAIN,upos-bstar1-mirrorakam.akamaized.net,bilibili
|
|
@ -1,5 +0,0 @@
|
|||||||
# > encoreTVB
|
|
||||||
USER-AGENT,encoreTVB*,encoreTVB
|
|
||||||
DOMAIN-SUFFIX,encoretvb.com,encoreTVB
|
|
||||||
DOMAIN,edge.api.brightcove.com,encoreTVB
|
|
||||||
DOMAIN,bcbolt446c5271-a.akamaihd.net,encoreTVB
|
|
@ -1,20 +0,0 @@
|
|||||||
# > iQIYI
|
|
||||||
DOMAIN-SUFFIX,iq.com,iQIYI
|
|
||||||
DOMAIN,intl.iqiyi.com,iQIYI
|
|
||||||
DOMAIN,intl-rcd.iqiyi.com,iQIYI
|
|
||||||
DOMAIN,intl-subscription.iqiyi.com,iQIYI
|
|
||||||
IP-CIDR,23.53.32.88/32,iQIYI
|
|
||||||
IP-CIDR,23.211.15.99/32,iQIYI
|
|
||||||
IP-CIDR,103.5.34.153/32,iQIYI
|
|
||||||
IP-CIDR,104.109.129.153/32,iQIYI
|
|
||||||
IP-CIDR,110.238.107.47/32,iQIYI
|
|
||||||
IP-CIDR,118.26.32.178/32,iQIYI
|
|
||||||
IP-CIDR,203.74.95.131/32,iQIYI
|
|
||||||
IP-CIDR,203.74.95.139/32,iQIYI
|
|
||||||
IP-CIDR,203.74.95.153/32,iQIYI
|
|
||||||
IP-CIDR,203.211.4.169/32,iQIYI
|
|
||||||
IP-CIDR,203.211.4.193/32,iQIYI
|
|
||||||
IP-CIDR,210.71.227.200/32,iQIYI
|
|
||||||
IP-CIDR,210.71.227.202/32,iQIYI
|
|
||||||
IP-CIDR,210.201.32.8/32,iQIYI
|
|
||||||
IP-CIDR,210.201.32.11/32,iQIYI
|
|
@ -1,4 +0,0 @@
|
|||||||
# > myTV SUPER
|
|
||||||
USER-AGENT,mytv*,myTV SUPER
|
|
||||||
DOMAIN-SUFFIX,mytvsuper.com,myTV SUPER
|
|
||||||
DOMAIN-SUFFIX,tvb.com,myTV SUPER
|
|
@ -1,5 +0,0 @@
|
|||||||
# > niconico
|
|
||||||
USER-AGENT,Niconico*,niconico
|
|
||||||
DOMAIN-SUFFIX,dmc.nico,niconico
|
|
||||||
DOMAIN-SUFFIX,nicovideo.jp,niconico
|
|
||||||
DOMAIN-SUFFIX,nimg.jp,niconico
|
|
@ -1,11 +0,0 @@
|
|||||||
# > discovery+
|
|
||||||
USER-AGENT,DPlus*,discovery+
|
|
||||||
USER-AGENT,discovery+*,discovery+
|
|
||||||
DOMAIN-SUFFIX,disco-api.com,discovery+
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.co.uk,discovery+
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.com,discovery+
|
|
||||||
DOMAIN-SUFFIX,discoveryplus.in,discovery+
|
|
||||||
DOMAIN-SUFFIX,dnitv.com,discovery+
|
|
||||||
# DOMAIN,go-prod-vz.akamaized.net,discovery+
|
|
||||||
DOMAIN,x-default-stgec.uplynk.com,discovery+
|
|
||||||
DOMAIN-KEYWORD,discovery.uplynk.com,discovery+
|
|
@ -1,38 +0,0 @@
|
|||||||
# Unbreak
|
|
||||||
# > General
|
|
||||||
DOMAIN,app.adjust.com,DIRECT
|
|
||||||
DOMAIN,app.appsflyer.com,DIRECT
|
|
||||||
DOMAIN,bdtj.tagtic.cn,DIRECT
|
|
||||||
# > Alibaba
|
|
||||||
DOMAIN,log.mmstat.com,DIRECT
|
|
||||||
DOMAIN,sycm.mmstat.com,DIRECT
|
|
||||||
# > Google
|
|
||||||
DOMAIN-SUFFIX,blog.google,DIRECT
|
|
||||||
DOMAIN-SUFFIX,googletraveladservices.com,DIRECT
|
|
||||||
DOMAIN,clientservices.googleapis.com,DIRECT
|
|
||||||
DOMAIN,update.googleapis.com,DIRECT
|
|
||||||
DOMAIN,dl.google.com,DIRECT
|
|
||||||
DOMAIN,dl.l.google.com,DIRECT
|
|
||||||
DOMAIN,update.googleapis.com,DIRECT
|
|
||||||
# >> Firebase Cloud Messaging
|
|
||||||
DOMAIN,mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt1-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt2-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt3-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt4-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt5-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt6-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt7-mtalk.google.com,DIRECT
|
|
||||||
DOMAIN,alt8-mtalk.google.com,DIRECT
|
|
||||||
# >> Paramount+
|
|
||||||
# DOMAIN,pubads.g.doubleclick.net,DIRECT
|
|
||||||
# > Tencent
|
|
||||||
DOMAIN,fairplay.l.qq.com,DIRECT
|
|
||||||
DOMAIN,livew.l.qq.com,DIRECT
|
|
||||||
DOMAIN,vd.l.qq.com,DIRECT
|
|
||||||
DOMAIN,vi.l.qq.com,DIRECT
|
|
||||||
# > Strava
|
|
||||||
DOMAIN,analytics.strava.com,DIRECT
|
|
||||||
# > Umeng
|
|
||||||
DOMAIN,msg.umeng.com,DIRECT
|
|
||||||
DOMAIN,msg.umengcloud.com,DIRECT
|
|
@ -1,434 +0,0 @@
|
|||||||
hostname = -lark-frontier-hl.snssdk.com,api.21jingji.com,service.4gtv.tv,app.58.com,gw.alicdn.com,heic.alicdn.com,acs.m.taobao.com,amap-aos-info-nogw.amap.com,gw.kaola.com,api-new.app.acfun.cn,api.bjxkhc.com,pan.baidu.com,issuecdn.baidupcs.com,newclient.map.baidu.com,mime.baidu.com,act.vip.iqiyi.com,manga.bilibili.com,www.bodivis.com.cn,yxyapi*.drcuiyutao.com,app.badmintoncn.com,clientaccess.10086.cn,m.client.10010.com,cloud.189.cn,api.cloud.189.cn,www.cntv.com,api.chelaile.net.cn,web.chelaile.net.cn,cap.caocaokeji.cn,api.caijingmobile.com,app.dewu.com,api.douban.com,rtbapi.douyucdn.cn,api.dangdang.com,e.dangdang.com,daoyu.sdo.com,capis*.didapinche.com,maicai.api.ddxq.mobi,i.ys7.com,www.flyertea.com,dsa-mfp.fengshows.cn,*-release.wuta-cam.com,gateway.shouqiev.com,smkmp.96225.com,business.msstatic.com,imeclient.openspeech.cn,webboot.zhangyue.com,nnapp.cloudbae.cn,icc.one,jxd524.github.io,www.inoreader.com,list-app-m.i4.cn,api.m.jd.com,api.jxedt.com,*.kakamobi.cn,*.kingsoft-office-service.com,api.gotokeep.com,api.kkmh.com,api.laifeng.com,api.club.lenovo.cn,api.m.mi.com,api.jr.mi.com,api-mifit.huami.com,home.mi.com,img.meituan.net,api.mgzf.com,capi.mwee.cn,v?-api.miaopai.com,mapi.mafengwo.cn,app.mixcapp.com,appconf.mail.163.com,interface*.music.163.com,support.you.163.com,p.du.163.com,app-api.niu.com,gfp.veta.naver.com,*api.oray.net,pss.txffp.com,api.yangkeduo.com,api.pinduoduo.com,mrobot.pconline.com.cn,mrobot.pcauto.com.cn,open.qyer.com,media.qyer.com,api.qbb6.com,magev6.if.qidian.com,api.rr.tv,weibointl.api.weibo.cn,api.tv.sohu.com,ap*.smzdm.com,sh-gateway.shihuo.cn,gw-passenger.01zhuanche.com,mpcs.suning.com,ccsp-egmas.sf-express.com,shopic.sf-express.com,api*.futunn.com,ssl.kohsocialapp.qq.com,4gimg.map.qq.com,vv.video.qq.com,r.inews.qq.com,news.ssp.qq.com,m.tuniu.com,mob.mddcloud.com.cn,img*.10101111cdn.com,msg.umengcloud.com,api.vuevideo.net,api.vistopia.com.cn,thor.weidian.com,api.waitwaitpay.com,api-one.wallstcn.com,api-one-wscn.awtmt.com,api.xiachufang.com,api.xueqiu.com,promo.xueqiu.com,182.92.251.113,101.201.175.228,www.xiaohongshu.com,app.yinxiang.com,api.yizhibo.com,www.zhihu.com,api.zhihu.com,103.41.167.*,a.qiumibao.com,*.zhuishushenqi.com,syh.zybang.com,api.izuiyou.com,tiku.zhan.com
|
|
||||||
|
|
||||||
# > WeChat Official Account
|
|
||||||
^https?:\/\/mp\.weixin\.qq\.com\/mp\/getappmsgad url response-body "advertisement_num":\d,"advertisement_info":\[.+\], response-body "advertisement_num":0,"advertisement_info":[],
|
|
||||||
|
|
||||||
# URL Rewrite
|
|
||||||
# YOUKU = reject
|
|
||||||
# VISTOPIA = reject|reject-dict
|
|
||||||
# JD = reject-img
|
|
||||||
|
|
||||||
# 0~9
|
|
||||||
# > 21st Century Business Herald - api.21jingji.com
|
|
||||||
^https?:\/\/api\.21jingji\.com\/ad\/ url reject
|
|
||||||
# > 4gTV - service.4gtv.tv
|
|
||||||
^https?:\/\/service\.4gtv\.tv\/4gtv\/Data\/(GetAD|ADLog) url reject
|
|
||||||
# > 58 - app.58.com,pic?.ajkimg.com
|
|
||||||
^https?:\/\/app\.58\.com\/api\/home\/(advertising|appadv)\/ url reject
|
|
||||||
^https?:\/\/app\.58\.com\/api\/home\/invite\/popupAdv url reject
|
|
||||||
^https?:\/\/app\.58\.com\/api\/log\/ url reject
|
|
||||||
^https?:\/\/pic\d\.ajkimg\.com\/mat\/\w+\?imageMogr\d\/format\/jpg\/thumbnail\/\d{3}x\d{4}$ url reject
|
|
||||||
^https?:\/\/\w+\.58cdn\.com\.cn\/brandads\/ url reject
|
|
||||||
|
|
||||||
# A
|
|
||||||
# --- (Alibaba) ---
|
|
||||||
# > Taobao - gw.alicdn.com,heic.alicdn.com
|
|
||||||
^https?:\/\/(gw|heic)\.alicdn\.com\/imgextra\/\w{2}\/[\w!]+-\d-tps-\d{3,4}-\d{4}\.jpg_(1\d{3}|9\d{2})x(1\d{3}|9\d{2})q\d0\.jpg_\.(heic|webp)$ url reject
|
|
||||||
# > Fliggy - gw.alicdn.com
|
|
||||||
^https?:\/\/gw\.alicdn\.com\/imgextra\/\w{2}\/[\w!]+-\d-tps-\d{3}-\d{4}\.(jpg|png)$ url reject
|
|
||||||
# > eTao - acs.m.taobao.com
|
|
||||||
^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.etao\.noah\.query\/.+tao_splash url reject
|
|
||||||
^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.alimama\.etao\.config\.query\/.+?etao_advertise url reject
|
|
||||||
# > Taopiaopiao - acs.m.taobao.com
|
|
||||||
^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.film\.mtopadvertiseapi\.queryadvertise\/ url reject
|
|
||||||
# > AMap - m*.amap.com
|
|
||||||
^https?:\/\/m\d\.amap\.com\/ws\/valueadded\/alimama\/splash_screen url reject
|
|
||||||
# > YOUKU
|
|
||||||
^https?:\/\/.+?\.ott\.cibntv\.net\/[\w\/-]+.mp4\?sid= url reject
|
|
||||||
# > Kaola - gw.kaola.com
|
|
||||||
^https?:\/\/gw\.kaola\.com\/gw\/dgmobile\/newOpenAd url reject
|
|
||||||
# ---
|
|
||||||
# > AcFun - api-new.app.acfun.cn
|
|
||||||
^https?:\/\/api-new\.app\.acfun\.cn\/rest\/app\/flash\/screen\/ url reject
|
|
||||||
# > AiMeiJu - api.bjxkhc.com
|
|
||||||
^https?:\/\/api\.bjxkhc\.com\/index\.php\/app\/ios\/ads\/ url reject
|
|
||||||
|
|
||||||
# B
|
|
||||||
# > ByteDance
|
|
||||||
^https?:\/\/[\w-]+\.(amemv|musical|snssdk|tiktokv)\.(com|ly)\/(api|motor)\/ad\/ url reject
|
|
||||||
^https?:\/\/[\w-]+\.amemv\.com\/aweme\/v\d\/ad\/ url reject
|
|
||||||
^https?:\/\/[\w-]+\.snssdk\.com\/.+_ad\/ url reject
|
|
||||||
^https?:\/\/[\w-]+\.snssdk\.com\/motor\/operation\/activity\/display\/config\/V2\/ url reject
|
|
||||||
^https?:\/\/.+?\/img\/ad\.union\.api\/ url reject
|
|
||||||
# ---(Baidu)---
|
|
||||||
# > Baidu NetDisk - issuecdn.baidupcs.com
|
|
||||||
^https?:\/\/pan\.baidu\.com\/rest\/\d\.\d\/pcs\/adx url reject
|
|
||||||
^https?:\/\/pan\.baidu\.com\/act\/api\/activityentry url reject
|
|
||||||
^https?:\/\/issuecdn\.baidupcs\.com\/issue\/netdisk\/guanggao url reject
|
|
||||||
# > Baidu Tieba
|
|
||||||
^https?:\/\/c\.tieba\.baidu\.com\/c\/f\/forum\/getAdInfo url reject
|
|
||||||
^https?:\/\/c\.tieba\.baidu\.com\/\w+\/\w+\/(sync|newRnSync|mlog) url reject
|
|
||||||
# ^https?:\/\/c\.tieba\.baidu\.com\/c\/s\/splashSchedule url reject
|
|
||||||
^https?:\/\/.+?\/c\/s\/splashSchedule url reject
|
|
||||||
# > Baidu Map - newclient.map.baidu.com
|
|
||||||
^https?:\/\/newclient\.map\.baidu\.com\/client\/phpui2\/\?qt=ads url reject
|
|
||||||
# > Baidu InputMethod - mime.baidu.com
|
|
||||||
^https?:\/\/mime\.baidu\.com\/v\d\/IosStart\/getStartInfo$ url reject
|
|
||||||
^https?:\/\/mime\.baidu\.com\/v\d\/activity\/advertisement url reject
|
|
||||||
# > iQIYI - act.vip.iqiyi.com,intl.iqiyi.com
|
|
||||||
^https?:\/\/iface\.iqiyi\.com\/api\/getNewAdInfo url reject
|
|
||||||
^https?:\/\/act\.vip\.iqiyi\.com\/interact\/api\/show\.do url reject
|
|
||||||
^https?:\/\/act\.vip\.iqiyi\.com\/interact\/api\/v\d\/show url reject
|
|
||||||
^https?:\/\/intl\.iqiyi\.com\/ad_external\/ url reject
|
|
||||||
^https?:\/\/intl\.iqiyi\.com\/video\/advertise url reject
|
|
||||||
^https?:\/\/u\d\.iqiyipic\.com\/image\/[\w\/]+\/oad_ url reject
|
|
||||||
# ---
|
|
||||||
# > bilibili - app.bilibili.com,manga.bilibili.com
|
|
||||||
# ^https?:\/\/app\.bilibili\.com\/x\/v\d\/splash\/ url reject
|
|
||||||
^https?:\/\/manga\.bilibili\.com\/twirp\/comic\.v\d\.Comic\/Flash url reject
|
|
||||||
# > Beike - app.api.ke.com
|
|
||||||
^https?:\/\/app\.api\.ke\.com\/config\/config\/bootpage url reject
|
|
||||||
# > boohee
|
|
||||||
^https?:\/\/status\.boohee\.com\/api\/v\d\/app_square\/start_up_with_ad$ url reject
|
|
||||||
# > bodivis - www.bodivis.com.cn
|
|
||||||
^https?:\/\/www\.bodivis\.com\.cn\/app\/splashAdvertise url reject
|
|
||||||
# > BabyHealth - yxyapi*.drcuiyutao.com
|
|
||||||
^https?:\/\/yxyapi\d\.drcuiyutao\.com\/yxy-api-gateway\/api\/json\/advert\/ url reject
|
|
||||||
# > BadmintonCN - app.badmintoncn.com
|
|
||||||
^https?:\/\/app\.badmintoncn\.com\/mag\/operative\/v\d\/ad\/ url reject
|
|
||||||
|
|
||||||
# C
|
|
||||||
# > ChinaMobile - clientaccess.10086.cn
|
|
||||||
^https?:\/\/clientaccess\.10086\.cn\/biz-orange\/DN\/init\/startInit url reject
|
|
||||||
^https?:\/\/wap\.js\.10086\.cn\/jsmccClient\/cd\/market_content\/api\/v\d\/market_content\.page\.query url reject
|
|
||||||
# ---
|
|
||||||
# > ChinaUnicom - m.client.10010.com
|
|
||||||
^https?:\/\/m\.client\.10010\.com\/mobileService\/customer\/accountListData\.htm url reject
|
|
||||||
^https?:\/\/m\.client\.10010\.com\/uniAdmsInterface\/getWelcomeAd url reject
|
|
||||||
# ---(ChinaTelecom)---
|
|
||||||
# > Cloud189 - cloud.189.cn
|
|
||||||
^https?:\/\/cloud\.189\.cn\/include\/splash\/ url reject
|
|
||||||
# > YueMeTV
|
|
||||||
^https?:\/\/zjh5api\.189smarthome\.com:\d+\/xygj-config-api\/queryData url reject
|
|
||||||
# ---
|
|
||||||
# > CNTV - www.cntv.com
|
|
||||||
^https?:\/\/www\.cntv\.com\/nettv\/adp\/ url reject
|
|
||||||
# > Chelaile - api.chelaile.net.cn,web.chelaile.net.cn
|
|
||||||
^https?:\/\/api\.chelaile\.net\.cn\/adpub\/ url reject
|
|
||||||
^https?:\/\/api\.chelaile\.net\.cn\/goocity\/advert\/ url reject
|
|
||||||
^https?:\/\/web\.chelaile\.net\.cn\/api\/adpub\/ url reject
|
|
||||||
# > Caocao - cap.caocaokeji.cn
|
|
||||||
^https?:\/\/cap\.caocaokeji\.cn\/advert-bss\/ url reject
|
|
||||||
# > CaijingNet - api.caijingmobile.com
|
|
||||||
^https?:\/\/api\.caijingmobile\.com\/(ad|advert)\/ url reject
|
|
||||||
^https?:\/\/m\.caijing\.com\.cn\/startup_ad_ios\.html$ url reject
|
|
||||||
# > CSDN - app-gw.csdn.net
|
|
||||||
^https?:\/\/app-gw\.csdn\.net\/cms-app\/v\d\/home_page\/open_advertisement url reject
|
|
||||||
# > Ctrip - m.ctrip.com
|
|
||||||
^https?:\/\/m\.ctrip\.com\/restapi\/[\w\/]+tripAds url reject
|
|
||||||
|
|
||||||
# D
|
|
||||||
# > DU - app.dewu.com
|
|
||||||
^https?:\/\/app\.dewu\.com\/api\/v\d\/app\/advertisement\/ url reject
|
|
||||||
# > douban - api.douban.com
|
|
||||||
^https?:\/\/api\.douban\.com\/v\d\/app_ads\/ url reject
|
|
||||||
# > DouYuZhiBo - rtbapi.douyucdn.cn
|
|
||||||
^https?:\/\/rtbapi\.douyucdn\.cn\/japi\/sign\/app\/getinfo url reject
|
|
||||||
# > Dangdang - api.dangdang.com,e.dangdang.com
|
|
||||||
^https?:\/\/api\.dangdang\.com\/mapi\d\/mobile\/init url reject
|
|
||||||
^https?:\/\/e\.dangdang\.com\/media\/api\d\.go\?action=getDeviceStartPage url reject
|
|
||||||
# > Daoyu - daoyu.sdo.com
|
|
||||||
^https?:\/\/daoyu\.sdo\.com\/api\/userCommon\/getAppStartAd url reject
|
|
||||||
# > Dida - capis*.didapinche.com
|
|
||||||
^https?:\/\/capis(-\d)?\.didapinche\.com\/ad\/ url reject
|
|
||||||
^https?:\/\/www\.didapinche\.com\/app\/adstat\/ url reject
|
|
||||||
# > Dianshijia
|
|
||||||
^https?:\/\/api\.gaoqingdianshi\.com\/api\/v\d\/ad\/ url reject
|
|
||||||
^https?:\/\/cdn\.dianshihome\.com\/static\/ad\/ url reject
|
|
||||||
# > DDpai
|
|
||||||
^https?:\/\/app\.ddpai\.com\/d\/api\/v\d\/config\/get\/bootscreen url reject
|
|
||||||
# > DingDongMaiCai - maicai.api.ddxq.mobi
|
|
||||||
^https?:\/\/maicai\.api\.ddxq\.mobi\/advert\/ url reject
|
|
||||||
|
|
||||||
# E
|
|
||||||
# > eLong - mobileapi-v6.elong.com
|
|
||||||
^https?:\/\/mobileapi-v6\.elong\.com\/adgateway\/ url reject
|
|
||||||
# > eDaijia
|
|
||||||
^https?:\/\/pic\.edaijia\.cn\/adsplash\/ url reject
|
|
||||||
# > eleme - cube.elemecdn.com
|
|
||||||
^https?:\/\/cube\.elemecdn\.com\/[\w\/]+\.jpeg\?x-oss-process=image\/resize,m_fill,w_\d{3},h_\d{4}\/format,webp\/ url reject
|
|
||||||
^https?:\/\/cube\.elemecdn\.com\/[\w\/]+\.jpeg\?x-oss-process=image\/resize,m_fill,w_1\d{3},h_2\d{3}\/format,webp\/ url reject
|
|
||||||
^https?:\/\/cube\.elemecdn\.com\/[\w\/]+\.jpeg\?x-oss-process=image\/resize,m_fill,w_6\d{2},h_8\d{2}\/format,webp\/ url reject
|
|
||||||
^https?:\/\/cube\.elemecdn\.com\/\w\/\w{2}\/\w+mp4\.mp4\? url reject
|
|
||||||
# > ezviz ViedoGo - i.ys7.com
|
|
||||||
^https?:\/\/i\.ys7\.com\/api\/ads url reject
|
|
||||||
|
|
||||||
# F
|
|
||||||
# > Foodie
|
|
||||||
^https?:\/\/foodie-api\.yiruikecorp\.com\/v\d\/(banner|notice)\/overview url reject
|
|
||||||
# > FOTOABLE
|
|
||||||
^https?:\/\/cdn\.api\.fotoable\.com\/Advertise\/ url reject
|
|
||||||
# > FlyerTea - www.flyertea.com
|
|
||||||
^https?:\/\/www\.flyertea\.com\/source\/plugin\/mobile\/mobile\.php\?module=advis url reject
|
|
||||||
# > FengWatch - dsa-mfp.fengshows.cn
|
|
||||||
^https?:\/\/dsa-mfp\.fengshows\.cn\/mfp\/mfpMultipleDelivery\.do\?.+adunitid url reject
|
|
||||||
# > FaceBeauty - *-release.wuta-cam.com
|
|
||||||
^https?:\/\/api-release\.wuta-cam\.com\/ad_tree url reject
|
|
||||||
^https?:\/\/res-release\.wuta-cam\.com\/json\/ads_component_cache\.json url reject
|
|
||||||
|
|
||||||
# G
|
|
||||||
# > Gofun - gateway.shouqiev.com
|
|
||||||
^https?:\/\/gateway\.shouqiev\.com(:8443)?\/fsda\/app\/bootImage\.json url reject
|
|
||||||
# > Guotai Junan Securities - dl.app.gtja.com
|
|
||||||
^https?:\/\/dl\.app\.gtja\.com\/dzswem\/kvController\/[\w\/]+\.jpg$ url reject
|
|
||||||
|
|
||||||
# H
|
|
||||||
# > HangZhou CityzenCard - smkmp.96225.com
|
|
||||||
^https?:\/\/smkmp\.96225.com\/smkcenter\/ad/ url reject
|
|
||||||
# > HanjuTV
|
|
||||||
^https?:\/\/api\.hanju\.koudaibaobao\.com\/api\/carp\/kp\? url reject
|
|
||||||
# > Huya - business.msstatic.com
|
|
||||||
^https?:\/\/business\.msstatic\.com\/advertiser\/ url reject
|
|
||||||
|
|
||||||
# I
|
|
||||||
# > iFLY Input - imeclient.openspeech.cn
|
|
||||||
^https?:\/\/imeclient\.openspeech\.cn\/adservice\/ url reject
|
|
||||||
# > iReader - webboot.zhangyue.com
|
|
||||||
^https?:\/\/webboot\.zhangyue\.com\/zycl\/api\/ad\/ url reject
|
|
||||||
^https?:\/\/webboot\.zhangyue\.com\/zyapi\/bookstore\/ad\/ url reject
|
|
||||||
# > inanning - nnapp.cloudbae.cn
|
|
||||||
^https?:\/\/nnapp\.cloudbae\.cn:\d+\/mc\/api\/advert/ url reject
|
|
||||||
# > iFreeTime - icc.one,jxd524.github.io
|
|
||||||
^https?:\/\/api\.applovefrom\.com\/api\/v\d\/splash\/ url reject
|
|
||||||
^https?:\/\/jxd524\.github\.io\/iFreeTime\/xid32uxaoecnfv2\/ url reject
|
|
||||||
^https?:\/\/icc\.one\/iFreeTime\/xid32uxaoecnfv2\/ url reject
|
|
||||||
# > iCleaner - ib-soft.net
|
|
||||||
^https?:\/\/ib-soft\.net\/icleaner\/txt\/ad_priority\.txt$ url reject
|
|
||||||
# > Inoreader - www.inoreader.com
|
|
||||||
^https?:\/\/www\.inoreader\.com\/adv\/ url reject
|
|
||||||
# > i4 - list-app-m.i4.cn
|
|
||||||
^https?:\/\/list-app-m\.i4\.cn\/getopfstadinfo\.xhtml url reject
|
|
||||||
# > IKOSPro
|
|
||||||
^https?:\/\/tracker-download\.oss-cn-beijing\.aliyuncs\.com\/SIMPlus\/(ad_|AD\/) url reject
|
|
||||||
|
|
||||||
# J
|
|
||||||
# > JD - api.m.jd.com
|
|
||||||
^https?:\/\/api\.m\.jd.com\/client\.action\?functionId=start url reject-img
|
|
||||||
^https?:\/\/api\.m\.jd.com\/client\.action\?functionId=queryMaterialAdverts url reject
|
|
||||||
^https?:\/\/(bdsp-x|dsp-x)\.jd\.com\/adx\/ url reject
|
|
||||||
# > JiaXiaoeDianTong - api.jxedt.com
|
|
||||||
^https?:\/\/api\.jxedt\.com\/ad\/ url reject
|
|
||||||
# > JiaKaoBaoDian - *.kakamobi.cn
|
|
||||||
^https?:\/\/\w+\.kakamobi\.cn\/api\/open\/v\d\/advert-sdk\/ url reject
|
|
||||||
|
|
||||||
# K
|
|
||||||
# > Kingsoft - *.kingsoft-office-service.com
|
|
||||||
^https?:\/\/\w+\.kingsoft-office-service\.com\/ad url reject
|
|
||||||
^https?:\/\/service\.iciba\.com\/popo\/open\/screens\/v\d\?adjson url reject
|
|
||||||
# > Keep - api.gotokeep.com
|
|
||||||
^https?:\/\/api\.gotokeep\.com\/ads url reject
|
|
||||||
^https?:\/\/api\.gotokeep\.com\/op-engine-webapp\/v\d\/ad url reject
|
|
||||||
# > Kuaikan Comics - api.kkmh.com
|
|
||||||
^https?:\/\/api\.kkmh\.com\/v\d+\/(ad|advertisement)\/ url reject
|
|
||||||
|
|
||||||
# L
|
|
||||||
# > LaiFeng
|
|
||||||
^https?:\/\/api\.laifeng\.com\/v\d\/start\/ads url reject
|
|
||||||
# > Lenovo - api.club.lenovo.cn
|
|
||||||
^https?:\/\/api\.club\.lenovo\.cn\/common\/open_ad url reject
|
|
||||||
|
|
||||||
# M
|
|
||||||
# > MI - api.m.mi.com,api.jr.mi.com,api-mifit.huami.com,home.mi.com
|
|
||||||
^https?:\/\/api\.m\.mi\.com\/v\d\/app\/start url reject
|
|
||||||
^https?:\/\/api\.jr\.mi\.com\/jr\/api\/splashScreen url reject
|
|
||||||
^https?:\/\/api-mifit\.huami\.com\/discovery\/mi\/discovery\/\w+_ad\? url reject
|
|
||||||
^https?:\/\/home\.mi\.com\/cgi-op\/api\/v\d\/recommendation\/banner url reject
|
|
||||||
# > MogoRenter - api.mgzf.com
|
|
||||||
^https?:\/\/api\.mgzf\.com\/renter-operation\/home\/startHomePage url reject
|
|
||||||
# > ManHuaRen
|
|
||||||
^https?:\/\/mangaapi\.manhuaren\.com\/v\d\/public\/getStartPageAds url reject
|
|
||||||
# > Meituan-Dianping - flowplus.meituan.net
|
|
||||||
#^https?:\/\/img\.meituan\.net\/(adunion|display|dpmobile|midas)\/\w+\.(gif|jpg|jpg\.webp)$ url reject
|
|
||||||
#^https?:\/\/p\d\.meituan\.net\/(bizad|wmbanner)\/\w+\.jpg url reject
|
|
||||||
#^https?:\/\/p\d\.meituan\.net\/movie\/\w+\.jpg\?may_covertWebp url reject
|
|
||||||
^https?:\/\/wmapi\.meituan\.com\/api\/v\d\/startpicture url reject
|
|
||||||
^https?:\/\/flowplus\.meituan\.net\/v\d\/\w+\/linglong\/\d+\.(gif|jpg|mp4) url reject
|
|
||||||
# > mwee - capi.mwee.cn
|
|
||||||
^https?:\/\/capi\.mwee\.cn\/app-api\/V\d+\/app\/(ad|getstartad) url reject
|
|
||||||
# > MiaoPai - v?-api.miaopai.com
|
|
||||||
^https?:\/\/v\d-api\.miaopai\.com\/miaopai\/advertisement\/ url reject
|
|
||||||
# > Mafengwo - mapi.mafengwo.cn
|
|
||||||
^https?:\/\/mapi\.mafengwo\.cn\/(travelguide\/)?ad\/ url reject
|
|
||||||
# > MixC - app.mixcapp.com
|
|
||||||
^https?:\/\/app\.mixcapp\.com\/mixc\/api\/v\d\/ad url reject
|
|
||||||
|
|
||||||
# N
|
|
||||||
# ---(NetEase)---
|
|
||||||
# > NetEase MailMaster - appconf.mail.163.com
|
|
||||||
^https?:\/\/appconf\.mail\.163\.com\/mmad\/ url reject
|
|
||||||
# > NetEase CloudMusic - interface*.music.163.com
|
|
||||||
^https?:\/\/interface(\d)?.music.163.com\/eapi\/ad\/ url reject
|
|
||||||
# > NetEase You - support.you.163.com
|
|
||||||
^https?:\/\/support\.you\.163\.com\/xhr\/boot\/getBootMedia\.json url reject
|
|
||||||
# > NetEase SnailRead - p.du.163.com
|
|
||||||
^https?:\/\/p\.du\.163\.com\/ad\/ url reject
|
|
||||||
# ---
|
|
||||||
# > NationalGeographic
|
|
||||||
^https?:\/\/dili\.bdatu\.com\/jiekou\/ad\/ url reject
|
|
||||||
# > NationalGeographicChina
|
|
||||||
^https?:\/\/wap\.ngchina\.cn\/news\/adverts\/ url reject
|
|
||||||
# > NIU - app-api.niu.com
|
|
||||||
^https?:\/\/app-api\.niu\.com\/v\d\/advertisement\/ url reject
|
|
||||||
# > Naver TV - gfp.veta.naver.com
|
|
||||||
^https?:\/\/gfp\.veta\.naver\.com\/adcall\? url reject
|
|
||||||
|
|
||||||
# O
|
|
||||||
# > Oray - slapi.oray.net
|
|
||||||
^https?:\/\/slapi\.oray\.net\/client\/ad url reject
|
|
||||||
^https?:\/\/slapi\.oray\.net\/adver url reject
|
|
||||||
|
|
||||||
# P
|
|
||||||
# > PiaoGen - pss.txffp.com
|
|
||||||
^https?:\/\/pss\.txffp\.com\/piaogen\/images\/launchScreen/ url reject
|
|
||||||
# > Pinduoduo - api.yangkeduo.com,api.pinduoduo.com
|
|
||||||
^https?:\/\/api\.(pinduoduo|yangkeduo)\.com\/api\/cappuccino\/splash url reject
|
|
||||||
# > PeanutWiFi
|
|
||||||
^https?:\/\/cmsapi\.wifi8\.com\/v\d\/(emptyAd|adNew)\/ url reject
|
|
||||||
# > PConline - mrobot.pconline.com.cn,mrobot.pcauto.com.cn
|
|
||||||
^https?:\/\/mrobot\.(pcauto|pconline)\.com\.cn\/v\d\/ad\dp url reject
|
|
||||||
^https?:\/\/mrobot\.pconline\.com\.cn\/s\/onlineinfo\/ad\/ url reject
|
|
||||||
^https?:\/\/mrobot\.pcauto\.com\.cn\/xsp\/s\/auto\/info\/(ad|preload) url reject
|
|
||||||
|
|
||||||
# Q
|
|
||||||
# > QYER - open.qyer.com,media.qyer.com
|
|
||||||
^https?:\/\/open\.qyer\.com\/qyer\/startpage\/ url reject
|
|
||||||
^https?:\/\/open\.qyer\.com\/qyer\/config\/get url reject
|
|
||||||
^https?:\/\/media\.qyer\.com\/ad\/ url reject
|
|
||||||
# > Qinbaobao - api.qbb6.com
|
|
||||||
^https?:\/\/api\.qbb6\.com\/ad\/ url reject
|
|
||||||
# > QDReader - magev6.if.qidian.com
|
|
||||||
^https?:\/\/magev6\.if\.qidian\.com\/argus\/api\/v\d\/client\/getsplashscreen url reject
|
|
||||||
|
|
||||||
# R
|
|
||||||
# > RRtv - api.rr.tv
|
|
||||||
^https?:\/\/api\.rr\.tv\/ad\/ url reject
|
|
||||||
|
|
||||||
# S
|
|
||||||
# ---(Sina)---
|
|
||||||
# > Weibo - *.uve.weibo.com,weibointl.api.weibo.cn
|
|
||||||
# ^https?:\/\/sdkapp\.uve\.weibo\.com\/interface\/sdk\/(actionad|sdkad)\.php url reject
|
|
||||||
# ^https?:\/\/wbapp\.uve\.weibo\.com\/wbapplua\/wbpullad\.lua url reject
|
|
||||||
^https?:\/\/weibointl\.api\.weibo\.cn\/portal\.php\?a=get_coopen_ads url reject
|
|
||||||
# > tianqitong - tqt.weibo.cn
|
|
||||||
^https?:\/\/tqt\.weibo\.cn\/overall\/redirect\.php\?r=tqtad url reject
|
|
||||||
^https?:\/\/tqt\.weibo\.cn\/overall\/redirect\.php\?.+?tqt_sdkad url reject
|
|
||||||
^https?:\/\/tqt\.weibo\.cn\/.+advert\.index url reject
|
|
||||||
^https?:\/\/tqt\.weibo\.cn\/api\/advert\/ url reject
|
|
||||||
# ---
|
|
||||||
# > SOHU - *.k.sohu.com,*.tv.sohu.com
|
|
||||||
^https?:\/\/api\.k\.sohu\.com\/api\/news\/adsense url reject
|
|
||||||
^https?:\/\/pic\.k\.sohu\.com\/img\d\/wb\/tj\/ url reject
|
|
||||||
^https?:\/\/s1\.api\.tv\.itc\.cn\/v\d\/mobile\/control\/switch\.json url reject
|
|
||||||
^https?:\/\/(api|api-bk\d+)\.tv\.sohu\.com\/agg\/api\/app\/config\/bootstrap url reject
|
|
||||||
# > SMZDM - ap*.smzdm.com
|
|
||||||
^https?:\/\/api\.smzdm\.com\/v\d\/util\/loading url reject
|
|
||||||
^https?:\/\/app-api\.smzdm\.com\/util\/loading url reject
|
|
||||||
^https?:\/\/s\d\.zdmimg\.com\/www\/api\/v\d\/api\/thirdAd\.php url reject
|
|
||||||
# > SCore
|
|
||||||
^https?:\/\/api\.qiuduoduo\.cn\/guideimage url reject
|
|
||||||
# > Shihuo - sh-gateway.shihuo.cn
|
|
||||||
^https?:\/\/sh-gateway\.shihuo\.cn\/v\d\/services\/sh-adapi\/home\/screen url reject
|
|
||||||
# > Shouqiyueche - gw-passenger.01zhuanche.com
|
|
||||||
^https?:\/\/gw-passenger\.01zhuanche\.com\/gw-passenger\/zhuanche-passengerController\/notk\/passenger\/recommendADs url reject
|
|
||||||
# > Suning - mpcs.suning.com
|
|
||||||
^https?:\/\/image\.suning\.cn\/uimg\/ma\/ad\/ url reject
|
|
||||||
^https?:\/\/mpcs\.suning\.com\/mpcs\/dm\/getDmInfo url reject
|
|
||||||
# > SF Express - ccsp-egmas.sf-express.com,shopic.sf-express.com
|
|
||||||
^https?:\/\/ccsp-egmas\.sf-express\.com\/cx-app-base\/base\/app\/ad\/ url reject
|
|
||||||
^https?:\/\/shopic\.sf-express\.com\/crm\/mobile\/common\/flashscreen url reject
|
|
||||||
# > SuperFriday
|
|
||||||
^https?:\/\/.+?(:\d+)?\/V\d\/splash\/getSplashV\d\.action$ url reject
|
|
||||||
|
|
||||||
# T
|
|
||||||
# ---(Tencent)---
|
|
||||||
# > FUTU - api*.futunn.com
|
|
||||||
^https?:\/\/api\.futunn\.com\/v\d\/ad\/ url reject
|
|
||||||
^https?:\/\/api\d\.futunn\.com\/ad\/ url reject
|
|
||||||
# > Tencent Game - ssl.kohsocialapp.qq.com
|
|
||||||
^https?:\/\/ssl\.kohsocialapp\.qq\.com:\d+\/game\/buttons url reject
|
|
||||||
^https?:\/\/qt\.qq\.com\/lua\/mengyou\/get_splash_screen_info url reject
|
|
||||||
# > Tencent Map - 4gimg.map.qq.com
|
|
||||||
^https?:\/\/4gimg\.map\.qq\.com\/mwaSplash\/ url reject
|
|
||||||
# > Tencent Video - vv.video.qq.com
|
|
||||||
^https?:\/\/vv\.video\.qq\.com\/getvmind\? url reject
|
|
||||||
# (?i)\btc\.qq\.com\/[\w\/\.-]+[a-z]\d+\.mp4\? url reject
|
|
||||||
# > Tencent News - r.inews.qq.com
|
|
||||||
^https?:\/\/r\.inews\.qq\.com\/(adsBlacklist|getFullScreenPic|getQQNewsRemoteConfig) url reject
|
|
||||||
# > Tencent Sports - news.ssp.qq.com
|
|
||||||
^https?:\/\/news\.ssp\.qq\.com\/app url reject
|
|
||||||
# ---
|
|
||||||
# > TuNiu - m.tuniu.com
|
|
||||||
^https?:\/\/m\.tuniu\.com\/api\/operation\/splash\/ url reject
|
|
||||||
# > TVBCLive - mob.mddcloud.com.cn
|
|
||||||
^https?:\/\/mob\.mddcloud\.com\.cn\/api\/(ad|advert)\/ url reject
|
|
||||||
|
|
||||||
# U
|
|
||||||
# > UCar - img*.10101111cdn.com
|
|
||||||
^https?:\/\/img\d+\.10101111cdn\.com\/adpos\/ url reject
|
|
||||||
# > Umeng - msg.umengcloud.com
|
|
||||||
^https:\/\/msg\.umengcloud\.com\/admsg\/ url reject
|
|
||||||
# > Umetrip
|
|
||||||
^https?:\/\/img\.umetrip\.com\/fs\/advert\/ url reject
|
|
||||||
|
|
||||||
# V
|
|
||||||
# > VUE - api.vuevideo.net
|
|
||||||
^https?:\/\/api\.vuevideo\.net\/api\/v\d\/ad\/ url reject
|
|
||||||
# > VariFlight - app.variflight.com,api.cdmcaac.com
|
|
||||||
^https?:\/\/app\.variflight\.com\/ad\/ url reject
|
|
||||||
^https?:\/\/app\.variflight\.com\/v\d\/advert\/ url reject
|
|
||||||
^https?:\/\/api\.cdmcaac\.com\/ad\/ url reject
|
|
||||||
# > VISTOPIA - api.vistopia.com.cn
|
|
||||||
^https?:\/\/api\.vistopia\.com\.cn\/api\/v\d\/home\/advertisement url reject
|
|
||||||
|
|
||||||
# W
|
|
||||||
# > Weidian - thor.weidian.com
|
|
||||||
^https?:\/\/thor\.weidian\.com\/ares\/home\.splash\/ url reject
|
|
||||||
# > WaitWaitPay - api.waitwaitpay.com
|
|
||||||
^https?:\/\/api\.waitwaitpay\.com\/\/api\/splash url reject
|
|
||||||
# > WallStCN - api-one.wallstcn.com
|
|
||||||
^https?:\/\/api-one\.wallstcn\.com\/apiv\d\/advertising\/ url reject
|
|
||||||
|
|
||||||
# X
|
|
||||||
# > Xiachufang - api.xiachufang.com
|
|
||||||
^https?:\/\/api\.xiachufang\.com\/v\d\/ad/ url reject
|
|
||||||
# > Ximalaya FM
|
|
||||||
^https?:\/\/.+?\/api\/v\d\/adRealTime url reject
|
|
||||||
^https?:\/\/.+?\/(outadservice|ting\/preload)\/ url reject
|
|
||||||
# > Xueqiu - api.xueqiu.com,promo.xueqiu.com,182.92.251.113,101.201.175.228
|
|
||||||
^https?:\/\/.+?\/promotion\/(display_cache|display_ad|feed_display|search_ad) url reject
|
|
||||||
^https?:\/\/(api|promo)\.xueqiu\.com\/promotion\/(display_cache|display_ad|feed_display|search_ad) url reject
|
|
||||||
^https?:\/\/.+?\/brand\/search\/v1\.json url reject
|
|
||||||
^https?:\/\/api\.xueqiu\.com\/brand\/search\/v1\.json url reject
|
|
||||||
# > Xiaohongshu - www.xiaohongshu.com
|
|
||||||
^https?:\/\/www\.xiaohongshu\.com\/api\/sns\/v\d\/system_service\/splash_config url reject
|
|
||||||
^https?:\/\/www\.xiaohongshu\.com\/api\/sns\/v\d\/ads\/ url reject
|
|
||||||
|
|
||||||
# Y
|
|
||||||
# > YinxiangNote - app.yinxiang.com
|
|
||||||
^https?:\/\/app\.yinxiang\.com\/ads\/ url reject
|
|
||||||
# > YXLiveVideo - api.yizhibo.com
|
|
||||||
^https?:\/\/api\.yizhibo\.com\/common\/api\/(api_)?pz$ url reject
|
|
||||||
|
|
||||||
# Z
|
|
||||||
# > Zhihu - www.zhihu.com,api.zhihu.com,103.41.167.*
|
|
||||||
^https?:\/\/api\.zhihu\.com\/commercial_api\/ url reject
|
|
||||||
^https?:\/\/api\.zhihu\.com\/fringe\/ad url reject
|
|
||||||
^https?:\/\/api\.zhihu\.com\/ad url reject
|
|
||||||
^https?:\/\/api\.zhihu\.com\/appview\/api\/v\d\/answers\/\d+\/recommendations url reject
|
|
||||||
^https?:\/\/api\.zhihu\.com\/\w+\/\d+\/comments\/featured-comment-ad url reject
|
|
||||||
^https?:\/\/www\.zhihu\.com\/api\/v\d\/answers/\d+/recommendations url reject
|
|
||||||
# > Zhibo8 - a.qiumibao.com
|
|
||||||
^https?:\/\/a\.qiumibao\.com\/activities\/config\.php url reject
|
|
||||||
^https?:\/\/.+?\/allOne\.php\?ad_name url reject
|
|
||||||
# > zhuishushenqi - *.zhuishushenqi.com
|
|
||||||
^https?:\/\/(api|b)\.zhuishushenqi\.com\/advert url reject
|
|
||||||
^https?:\/\/api\.zhuishushenqi\.com\/splashes\/ios url reject
|
|
||||||
^https?:\/\/api\.zhuishushenqi\.com\/notification\/shelfMessage url reject
|
|
||||||
^https?:\/\/api\.zhuishushenqi\.com\/user\/bookshelf-updated url reject
|
|
||||||
^https?:\/\/itunes\.apple\.com\/lookup\?id=575826903 url reject
|
|
||||||
# > Zuoyebang - syh.zybang.com
|
|
||||||
^https?:\/\/syh\.zybang\.com\/com\/adx\/ url reject
|
|
||||||
# > ZUIYOU - api.izuiyou.com
|
|
||||||
^https?:\/\/api\.izuiyou\.com\/ad\/ url reject
|
|
||||||
# > Zhan - tiku.zhan.com
|
|
||||||
^https?:\/\/tiku\.zhan\.com\/Common\/newAd\/ url reject
|
|
@ -1,50 +0,0 @@
|
|||||||
hostname = api.weibo.cn,mapi.weibo.com,*.uve.weibo.com,www.zhihu.com,api.zhihu.com,appcloud2.zhihu.com,app-api.smzdm.com,homepage-api.smzdm.com,haojia-api.smzdm.com,haojia.m.smzdm.com,baike-api.smzdm.com,s-api.smzdm.com,zhiyou.m.smzdm.com,m,app.bilibili.com
|
|
||||||
|
|
||||||
# ---(By yichahucha)---
|
|
||||||
# > Weibo - api.weibo.cn,mapi.weibo.com
|
|
||||||
^https?://(sdk|wb)app\.uve\.weibo\.com(/interface/sdk/sdkad.php|/wbapplua/wbpullad.lua) url script-response-body https://raw.githubusercontent.com/yichahucha/surge/master/wb_launch.js
|
|
||||||
^https?://m?api\.weibo\.c(n|om)/2/(statuses/(unread|extend|positives/get|(friends|video)(/|_)(mix)?timeline)|stories/(video_stream|home_list)|(groups|fangle)/timeline|profile/statuses|comments/build_comments|photo/recommend_list|service/picfeed|searchall|cardlist|page|!/(photos/pic_recommend_status|live/media_homelist)|video/tiny_stream_video_list|photo/info|remind/unread_count) url script-response-body https://raw.githubusercontent.com/yichahucha/surge/master/wb_ad.js
|
|
||||||
# ------
|
|
||||||
|
|
||||||
# ---(By blackmatrix7)---
|
|
||||||
# > Zhihu
|
|
||||||
# 知乎处理用户信息
|
|
||||||
^https?:\/\/api\.zhihu\.com\/people\/ url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎信息流去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/(moments|topstory)(\/|\?)?(recommend|action=|feed_type=)(?!\/people) url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎回答列表去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/v4\/questions url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎预置关键词去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/search\/preset_words\? url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎热搜去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/search\/top_search\/tabs\/hot\/items url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎热榜去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/topstory\/hot-lists?(\?|\/) url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 知乎评论去广告
|
|
||||||
^https?:\/\/api\.zhihu\.com\/(comment_v5\/)?(answers|comments?|articles|pins)\/\d+\/(root_|child_)?comments? url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
# 优化软件配置
|
|
||||||
^https?:\/\/appcloud2\.zhihu\.com\/v\d+\/config url script-response-body https://gist.githubusercontent.com/blackmatrix7/2e550ebf28ca60d620654e394ec47e0b/raw/zhihu.js
|
|
||||||
|
|
||||||
# > SMZDM - app-api.smzdm.com,homepage-api.smzdm.com,haojia-api.smzdm.com,haojia.m.smzdm.com,baike-api.smzdm.com,s-api.smzdm.com,zhiyou.m.smzdm.com
|
|
||||||
^https?:\/\/app-api\.smzdm\.com\/util\/loading url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 首页去广告
|
|
||||||
^https?:\/\/homepage-api\.smzdm\.com\/v3\/home url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 好价去广告
|
|
||||||
^https?:\/\/haojia-api\.smzdm\.com\/home\/list url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 好价详情页去广告
|
|
||||||
^https?:\/\/haojia\.m\.smzdm\.com\/detail_modul\/article_releated_modul url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 百科去广告
|
|
||||||
^https?:\/\/baike-api\.smzdm\.com\/home_v3\/list url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 搜索结果去广告
|
|
||||||
^https?:\/\/s-api\.smzdm\.com\/sou\/list_v10 url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 搜索标签去广告
|
|
||||||
^https?:\/\/s-api\.smzdm\.com\/sou\/filter\/tags\/hot_tags url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
# 值会员权益中心banner广告
|
|
||||||
^https?:\/\/zhiyou\.m\.smzdm\.com\/user\/vip\/ajax_get_banner url script-response-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/smzdm/smzdm_remove_ads.js
|
|
||||||
|
|
||||||
# ------
|
|
||||||
|
|
||||||
# ---(By srk24)---
|
|
||||||
# > bilibili
|
|
||||||
^https?:\/\/app\.bilibili\.com\/x\/v\d\/splash\/list url script-response-body https://raw.githubusercontent.com/srk24/profile/master/js/bilibili_splash.js
|
|
||||||
# ------
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue