mirror of
https://github.com/v2fly/domain-list-community.git
synced 2026-04-20 09:30:55 +07:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9d13173815 |
@@ -1,24 +0,0 @@
|
|||||||
# To get started with Dependabot version updates, you'll need to specify which
|
|
||||||
# package ecosystems to update and where the package manifests are located.
|
|
||||||
# Please see the documentation for all configuration options:
|
|
||||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
||||||
|
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
timezone: "Asia/Shanghai"
|
|
||||||
time: "10:00"
|
|
||||||
pull-request-branch-name:
|
|
||||||
separator: "-"
|
|
||||||
|
|
||||||
- package-ecosystem: "gomod"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
timezone: "Asia/Shanghai"
|
|
||||||
time: "10:00"
|
|
||||||
pull-request-branch-name:
|
|
||||||
separator: "-"
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<!--
|
|
||||||
|
|
||||||
Thanks for your contribution!
|
|
||||||
|
|
||||||
Please check the following items: (not mandatory)
|
|
||||||
|
|
||||||
- Adjacent rules should be sorted alphabetically
|
|
||||||
- It's not encouraged to create new list/file containing too few (one or two) rules
|
|
||||||
- Newly added list should be included in relevant categories if possible
|
|
||||||
- Subdomains are unnecessary as they are overridden by the parent domain. e.g. `[domain:]example.com` overrides `[domain:]app.example.com`
|
|
||||||
- Description for your changes is welcome (why the change is necessary, data source of added domains, potential impacts, etc.)
|
|
||||||
|
|
||||||
-->
|
|
||||||
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
name: Build dlc.dat
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths-ignore:
|
|
||||||
- "**/README.md"
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout codebase
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
path: code
|
|
||||||
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v6
|
|
||||||
with:
|
|
||||||
go-version-file: code/go.mod
|
|
||||||
cache-dependency-path: code/go.sum
|
|
||||||
|
|
||||||
- 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: Build dlc.dat and plain lists
|
|
||||||
run: |
|
|
||||||
cd code || exit 1
|
|
||||||
go run ./ --outputdir=../ --exportlists=category-ads-all,tld-cn,cn,tld-\!cn,geolocation-\!cn,apple,icloud
|
|
||||||
go run ./cmd/datdump/main.go --inputdata=../dlc.dat --outputdir=../ --exportlists=_all_
|
|
||||||
cd ../ && rm -rf code
|
|
||||||
|
|
||||||
- name: Generate dlc.dat sha256 hash
|
|
||||||
run: |
|
|
||||||
sha256sum dlc.dat > dlc.dat.sha256sum
|
|
||||||
sha256sum dlc.dat_plain.yml > dlc.dat_plain.yml.sha256sum
|
|
||||||
|
|
||||||
- name: Generate Zip
|
|
||||||
run: |
|
|
||||||
zip -9 dlc.dat.zip dlc.dat
|
|
||||||
sha256sum dlc.dat.zip > dlc.dat.zip.sha256sum
|
|
||||||
|
|
||||||
- name: Generate XZ
|
|
||||||
run: |
|
|
||||||
xz -z -9 -k dlc.dat
|
|
||||||
sha256sum dlc.dat.xz > dlc.dat.xz.sha256sum
|
|
||||||
|
|
||||||
- name: Git push assets to "release" branch
|
|
||||||
run: |
|
|
||||||
git init
|
|
||||||
git config --local user.name "github-actions[bot]"
|
|
||||||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
||||||
git checkout -b release
|
|
||||||
git add *.txt *.sha256sum dlc.dat dlc.dat_plain.yml dlc.dat.zip dlc.dat.xz
|
|
||||||
git commit -m "${{ env.RELEASE_NAME }}"
|
|
||||||
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
|
|
||||||
git push -f -u origin release
|
|
||||||
|
|
||||||
- name: Release and upload assets
|
|
||||||
run: |
|
|
||||||
gh release create ${{ env.TAG_NAME }} --generate-notes --latest --title ${{ env.RELEASE_NAME }} ./dlc.dat ./dlc.dat.* ./dlc.dat_plain.yml ./dlc.dat_plain.yml.*
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
name: Test PR
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout codebase
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
path: code
|
|
||||||
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v6
|
|
||||||
with:
|
|
||||||
go-version-file: code/go.mod
|
|
||||||
cache-dependency-path: code/go.sum
|
|
||||||
|
|
||||||
- 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: Build dlc.dat file
|
|
||||||
run: |
|
|
||||||
cd code || exit 1
|
|
||||||
go run ./ --outputdir=../ --exportlists=category-ads-all,tld-cn,cn,tld-\!cn,geolocation-\!cn,apple,icloud
|
|
||||||
cd ../ && rm -rf code
|
|
||||||
mv dlc.dat TEST-${{ github.run_number }}-dlc.dat
|
|
||||||
|
|
||||||
- name: Upload TEST-${{ github.run_number }}-dlc.dat
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
|
||||||
name: TEST-${{ github.run_number }}-dlc.dat
|
|
||||||
path: TEST-${{ github.run_number }}-dlc.dat
|
|
||||||
-12
@@ -1,12 +0,0 @@
|
|||||||
.idea
|
|
||||||
.vscode
|
|
||||||
|
|
||||||
/domain-list-community
|
|
||||||
/domain-list-community.exe
|
|
||||||
|
|
||||||
# Generated dat files.
|
|
||||||
/*.dat
|
|
||||||
|
|
||||||
# Exported plaintext lists.
|
|
||||||
/*.txt
|
|
||||||
/*.yml
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2018-2019 V2Ray
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,155 +0,0 @@
|
|||||||
# Domain list community
|
|
||||||
|
|
||||||
This project manages a list of domains, to be used as geosites for routing purpose in Project V.
|
|
||||||
|
|
||||||
## Purpose of this project
|
|
||||||
|
|
||||||
This project is not opinionated. In other words, it does NOT endorse, claim or imply that a domain should be blocked or proxied. It can be used to generate routing rules on demand.
|
|
||||||
|
|
||||||
## Download links
|
|
||||||
|
|
||||||
- **dlc.dat**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat)
|
|
||||||
- **dlc.dat.sha256sum**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum)
|
|
||||||
- **dlc.dat_plain.yml**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat_plain.yml](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat_plain.yml)
|
|
||||||
- **dlc.dat_plain.yml.sha256sum**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat_plain.yml.sha256sum](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat_plain.yml.sha256sum)
|
|
||||||
|
|
||||||
## Notice
|
|
||||||
|
|
||||||
- Rules with `@!cn` attribute has been cast out from cn lists. `geosite:geolocation-cn@!cn` is no longer available. Check [#390](https://github.com/v2fly/domain-list-community/issues/390), [#3119](https://github.com/v2fly/domain-list-community/pull/3119) and [#3198](https://github.com/v2fly/domain-list-community/pull/3198) for more information.
|
|
||||||
- Dedicated non-category ad lists like `geosite:xxx-ads` has been removed. Use `geosite:xxx@ads` instead. `geosite:category-ads[-xx]` is not affected.
|
|
||||||
|
|
||||||
Please report if you have any problems or questions.
|
|
||||||
|
|
||||||
## Usage example
|
|
||||||
|
|
||||||
Each file in the `data` directory can be used as a rule in this format: `geosite:filename`.
|
|
||||||
|
|
||||||
```json
|
|
||||||
"routing": {
|
|
||||||
"domainStrategy": "IPIfNonMatch",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"type": "field",
|
|
||||||
"outboundTag": "Reject",
|
|
||||||
"domain": [
|
|
||||||
"geosite:category-ads-all",
|
|
||||||
"geosite:category-porn"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "field",
|
|
||||||
"outboundTag": "Direct",
|
|
||||||
"domain": [
|
|
||||||
"domain:icloud.com",
|
|
||||||
"domain:icloud-content.com",
|
|
||||||
"domain:cdn-apple.com",
|
|
||||||
"geosite:cn",
|
|
||||||
"geosite:private"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "field",
|
|
||||||
"outboundTag": "Proxy-1",
|
|
||||||
"domain": [
|
|
||||||
"geosite:category-anticensorship",
|
|
||||||
"geosite:category-media",
|
|
||||||
"geosite:category-vpnservices"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "field",
|
|
||||||
"outboundTag": "Proxy-2",
|
|
||||||
"domain": [
|
|
||||||
"geosite:category-dev"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "field",
|
|
||||||
"outboundTag": "Proxy-3",
|
|
||||||
"domain": [
|
|
||||||
"geosite:geolocation-!cn"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Generate `dlc.dat` manually
|
|
||||||
|
|
||||||
- Install `golang` and `git`
|
|
||||||
- Clone project code: `git clone https://github.com/v2fly/domain-list-community.git`
|
|
||||||
- Navigate to project root directory: `cd domain-list-community`
|
|
||||||
- Install project dependencies: `go mod download`
|
|
||||||
- Generate `dlc.dat` (without `datapath` option means to use domain lists in `data` directory of current working directory):
|
|
||||||
- `go run ./`
|
|
||||||
- `go run ./ --datapath=/path/to/your/custom/data/directory`
|
|
||||||
|
|
||||||
Run `go run ./ --help` for more usage information.
|
|
||||||
|
|
||||||
For anyone who wants to generate custom `.dat` files, you may read [#3370](https://github.com/v2fly/domain-list-community/discussions/3370).
|
|
||||||
|
|
||||||
## Structure of data
|
|
||||||
|
|
||||||
All data are under `data` directory. Each file in the directory represents a sub-list of domains, named by the file name. File content is in the following format.
|
|
||||||
|
|
||||||
```
|
|
||||||
# comments
|
|
||||||
include:another-file
|
|
||||||
domain:google.com @attr1 @attr2
|
|
||||||
full:analytics.google.com @ads
|
|
||||||
keyword:google
|
|
||||||
regexp:^odd[1-7]\.example\.org(\.[a-z]{2})?$
|
|
||||||
```
|
|
||||||
|
|
||||||
**Syntax:**
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> Adding new `regexp` and `keyword` rules is discouraged because it is easy to use them incorrectly, and proxy software cannot efficiently match these types of rules.
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> The following types of rules are **NOT** fully compatible with the ones that defined by user in V2Ray config file. Do **NOT** copy and paste directly.
|
|
||||||
|
|
||||||
- Comment begins with `#`. It may begin anywhere in the file. The content in the line after `#` is treated as comment and ignored in production.
|
|
||||||
- Subdomain begins with `domain:`, followed by a valid domain name. The prefix `domain:` may be omitted.
|
|
||||||
- Full domain begins with `full:`, followed by a complete and valid domain name.
|
|
||||||
- Keyword begins with `keyword:`, followed by a substring of a valid domain name.
|
|
||||||
- Regular expression begins with `regexp:`, followed by a valid regular expression (per Golang's standard).
|
|
||||||
- Domain rules (including `domain`, `full`, `keyword`, and `regexp`) may have none, one or more attributes. Each attribute begins with `@` and followed by the name of the attribute. Attributes will remain available in final lists and `dlc.dat`.
|
|
||||||
- Domain rules may have none, one or more affiliations, which additionally adds the domain rule into the affiliated target list. Each affiliation begins with `&` and followed by the name of the target list (nomatter whether the target has a dedicated file in data path). This is a method for data management, and will not remain in the final lists or `dlc.dat`.
|
|
||||||
- Inclusion begins with `include:`, followed by the name of another valid domain list. `include:listb` in file `lista` means adding all domain rules of `listb` into `lista`. Inclusions with attributes stand for selective inclusion. `include:listb @attr1 @-attr2` means only adding those domain rules *with* `@attr1` **and** *without* `@attr2`. This is a special type for data management, and will not remain in the final lists or `dlc.dat`.
|
|
||||||
|
|
||||||
## How it works
|
|
||||||
|
|
||||||
The entire `data` directory will be built into an external `geosite` file for Project V. Each file in the directory represents a section in the generated file.
|
|
||||||
|
|
||||||
**General steps:**
|
|
||||||
|
|
||||||
1. Read files in the data path (ignore all comments and empty lines).
|
|
||||||
2. Parse and resolve source data, turn affiliations and inclusions into actual domain rules in proper lists.
|
|
||||||
3. Deduplicate and sort rules in every list.
|
|
||||||
4. Export desired plain text lists.
|
|
||||||
5. Generate `dlc.dat`:
|
|
||||||
- turn each `domain:` line into a [sub-domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L21).
|
|
||||||
- turn each `full:` line into a [full domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L23).
|
|
||||||
- turn each `keyword:` line into a [plain domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L17).
|
|
||||||
- turn each `regexp:` line into a [regex domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L19).
|
|
||||||
|
|
||||||
Read [main.go](./main.go) for details.
|
|
||||||
|
|
||||||
## How to organize domains
|
|
||||||
|
|
||||||
### File name
|
|
||||||
|
|
||||||
Theoretically any string can be used as the name, as long as it is a valid file name. In practice, we prefer names for determinic group of domains, such as the owner (usually a company name) of the domains, e.g., "google", "netflix". Names with unclear scope are generally unrecommended, such as "evil", or "local".
|
|
||||||
|
|
||||||
### Attributes
|
|
||||||
|
|
||||||
Attribute is useful for sub-group of domains, especially for filtering purpose. For example, the list of `google` may contains its main domains, as well as domains that serve ads. The ads domains may be marked by attribute `@ads`, and can be used as `geosite:google@ads` in V2Ray routing. Domains and services that originate from outside China mainland but have access point in China mainland, may be marked by attribute `@cn`.
|
|
||||||
|
|
||||||
## Contribution guideline
|
|
||||||
|
|
||||||
- Fork this repo, make modifications to your own repo, file a PR.
|
|
||||||
- Please begin with small size PRs, say modification in a single file.
|
|
||||||
- A PR must be reviewed and approved by another member.
|
|
||||||
- A script will verify your pull request to test whether your PR is correct or not every time you update the PR. Only the PR which passes the test will be merged. Please go to the Action label to get detailed information if you didn't pass it. We also provide the file which has been generated to make you test.
|
|
||||||
- After a few successful PRs, you may apply for manager access to this repository.
|
|
||||||
@@ -0,0 +1,870 @@
|
|||||||
|
domain:1rx.io:@ads
|
||||||
|
domain:2mdn-cn.net:@ads
|
||||||
|
domain:2mdn.net:@ads
|
||||||
|
domain:51.la
|
||||||
|
domain:51y5.net
|
||||||
|
domain:7box.vip:@ads
|
||||||
|
domain:a.adtng.com
|
||||||
|
domain:a.alimama.cn:@ads
|
||||||
|
domain:a.market.xiaomi.com:@ads
|
||||||
|
domain:a.youdao.com:@ads
|
||||||
|
domain:aaid.umeng.com:@ads
|
||||||
|
domain:aaxads.com
|
||||||
|
domain:acjs.aliyun.com:@ads
|
||||||
|
domain:ad-delivery.net:@ads
|
||||||
|
domain:ad-srv.net
|
||||||
|
domain:ad.12306.cn
|
||||||
|
domain:ad.api.3g.youku.com:@ads
|
||||||
|
domain:ad.api.mobile.youku.com:@ads
|
||||||
|
domain:ad.api.moji.com
|
||||||
|
domain:ad.browser.qq.com:@ads
|
||||||
|
domain:ad.cctv.com:@ads
|
||||||
|
domain:ad.games.dmm.com:@ads
|
||||||
|
domain:ad.hpplay.cn
|
||||||
|
domain:ad.intl.xiaomi.com:@ads
|
||||||
|
domain:ad.m.iqiyi.com:@ads
|
||||||
|
domain:ad.mail.ru:@ads
|
||||||
|
domain:ad.mi.com:@ads
|
||||||
|
domain:ad.mobile.youku.com:@ads
|
||||||
|
domain:ad.qq.com:@ads
|
||||||
|
domain:ad.qun.qq.com:@ads
|
||||||
|
domain:ad.sina.com.cn:@ads
|
||||||
|
domain:ad.tencentmusic.com:@ads
|
||||||
|
domain:ad.toutiao.com:@ads
|
||||||
|
domain:ad.us.sinaimg.cn:@ads
|
||||||
|
domain:ad.wang502.com
|
||||||
|
domain:ad.weixin.qq.com:@ads
|
||||||
|
domain:ad.xiaomi.com:@ads
|
||||||
|
domain:ad1.xiaomi.com:@ads
|
||||||
|
domain:adash-c.m.taobao.com:@ads
|
||||||
|
domain:adash-c.ut.taobao.com:@ads
|
||||||
|
domain:adash-emas.cn-hangzhou.aliyuncs.com:@ads
|
||||||
|
domain:adash.m.taobao.com:@ads
|
||||||
|
domain:adash.man.aliyuncs.com:@ads
|
||||||
|
domain:adashbc.m.taobao.com:@ads
|
||||||
|
domain:adashbc.ut.taobao.com:@ads
|
||||||
|
domain:adashx.m.taobao.com:@ads
|
||||||
|
domain:adashx.ut.amap.com:@ads
|
||||||
|
domain:adashx.ut.ele.me:@ads
|
||||||
|
domain:adashx.ut.youku.com:@ads
|
||||||
|
domain:adashx4ae.ut.taobao.com:@ads
|
||||||
|
domain:adashx4yt.m.taobao.com:@ads
|
||||||
|
domain:adashxgc.ut.taobao.com:@ads
|
||||||
|
domain:adbehavior.ximalaya.com:@ads
|
||||||
|
domain:adbkwai.com:@ads
|
||||||
|
domain:adbox.sina.com.cn:@ads
|
||||||
|
domain:adbutter.net
|
||||||
|
domain:adc.hpplay.cn
|
||||||
|
domain:adcolony.com:@ads
|
||||||
|
domain:addthisedge.com
|
||||||
|
domain:adeng.hpplay.cn
|
||||||
|
domain:adfilter.imtt.qq.com:@ads
|
||||||
|
domain:adfox.ru:@ads
|
||||||
|
domain:adfox.yandex.ru:@ads
|
||||||
|
domain:adimg.mobile.sina.cn:@ads
|
||||||
|
domain:adimg.uve.weibo.com:@ads
|
||||||
|
domain:adinplay.com:@ads
|
||||||
|
domain:adivery.com
|
||||||
|
domain:adivery.ir
|
||||||
|
domain:adjust.com:@ads
|
||||||
|
domain:adjust.io:@ads
|
||||||
|
domain:adjust.net.in:@ads
|
||||||
|
domain:adjust.world:@ads
|
||||||
|
domain:adkwai.com:@ads
|
||||||
|
domain:admetrica.ru:@ads
|
||||||
|
domain:admob-cn.com:@ads
|
||||||
|
domain:admob.com:@ads
|
||||||
|
domain:admob.xiaomi.com:@ads
|
||||||
|
domain:admusicpic.music.126.net:@ads
|
||||||
|
domain:adnet.qq.com:@ads
|
||||||
|
domain:adnet.sohu.com:@ads
|
||||||
|
domain:adnxs.com:@ads
|
||||||
|
domain:adping.qq.com:@ads
|
||||||
|
domain:adpm.app.qq.com:@ads
|
||||||
|
domain:adq.chinaso.com
|
||||||
|
domain:ads-api.duolingo.com:@ads
|
||||||
|
domain:ads-pixiv.net:@ads
|
||||||
|
domain:ads-twitter.com:@ads
|
||||||
|
domain:ads-union.jd.com:@ads
|
||||||
|
domain:ads-uo.api.leiniao.com:@ads
|
||||||
|
domain:ads-ut.api.leiniao.com:@ads
|
||||||
|
domain:ads.api.my7v.com:@ads
|
||||||
|
domain:ads.huan.tv
|
||||||
|
domain:ads.huantest.com
|
||||||
|
domain:ads.music.126.net:@ads
|
||||||
|
domain:ads.sber.ru:@ads
|
||||||
|
domain:ads.service.kugou.com:@ads
|
||||||
|
domain:ads.sina.com:@ads
|
||||||
|
domain:ads.sohu.com:@ads
|
||||||
|
domain:ads.trafficjunky.net
|
||||||
|
domain:ads.trafficjunky.net:@ads
|
||||||
|
domain:ads.uc.cn:@ads
|
||||||
|
domain:ads.union.jd.com:@ads
|
||||||
|
domain:ads.unitychina.cn:@ads
|
||||||
|
domain:ads.viqeo.tv:@ads
|
||||||
|
domain:ads.wteam.xyz
|
||||||
|
domain:ads.yahoo.com:@ads
|
||||||
|
domain:ads.yandex.ru:@ads
|
||||||
|
domain:ads.yandex:@ads
|
||||||
|
domain:ads.youtube.com:@ads
|
||||||
|
domain:adsadvisor.io:@ads
|
||||||
|
domain:adscdn.baidu.com:@ads
|
||||||
|
domain:adsclick.qq.com:@ads
|
||||||
|
domain:adse.wsa.ximalaya.com:@ads
|
||||||
|
domain:adse.ximalaya.com:@ads
|
||||||
|
domain:adsense.com:@ads
|
||||||
|
domain:adsensecustomsearchads.com:@ads
|
||||||
|
domain:adsenseformobileapps.com:@ads
|
||||||
|
domain:adservice.google.com:@ads
|
||||||
|
domain:adservice.sigmob.cn
|
||||||
|
domain:adserviceretry.kglink.cn:@ads
|
||||||
|
domain:adserviceretry.kugou.com:@ads
|
||||||
|
domain:adsfile.qq.com:@ads
|
||||||
|
domain:adsh.m.taobao.com:@ads
|
||||||
|
domain:adshmmsg.qq.com:@ads
|
||||||
|
domain:adslot.uc.cn:@ads
|
||||||
|
domain:adslvfile.qq.com:@ads
|
||||||
|
domain:adslvseed.qq.com:@ads
|
||||||
|
domain:adsmind.apdcdn.tc.qq.com:@ads
|
||||||
|
domain:adsqqclick.qq.com:@ads
|
||||||
|
domain:adstats.tencentmusic.com:@ads
|
||||||
|
domain:adstestview.qq.com:@ads
|
||||||
|
domain:adsview.qq.com:@ads
|
||||||
|
domain:adsview2.qq.com:@ads
|
||||||
|
domain:adtechus.com
|
||||||
|
domain:adtrack.quark.cn:@ads
|
||||||
|
domain:adtrafficquality.google:@ads
|
||||||
|
domain:adtrue.com
|
||||||
|
domain:adukwai.com:@ads
|
||||||
|
domain:adv-sv-show.focus.cn:@ads
|
||||||
|
domain:adv-sv-stat.focus.cn:@ads
|
||||||
|
domain:adv.app.qq.com:@ads
|
||||||
|
domain:adv.sec.intl.miui.com:@ads
|
||||||
|
domain:adv.sec.miui.com:@ads
|
||||||
|
domain:adv.vk.com:@ads
|
||||||
|
domain:adv.yandex.com:@ads
|
||||||
|
domain:adv.yandex.ru:@ads
|
||||||
|
domain:advapi.joyplus.tv
|
||||||
|
domain:advapikj.joyplus.tv
|
||||||
|
domain:adver.qq.com:@ads
|
||||||
|
domain:advertisercommunity.com:@ads
|
||||||
|
domain:advertiserscommunity.com:@ads
|
||||||
|
domain:advertising.adobe.com:@ads
|
||||||
|
domain:advertising.apple.com:@ads
|
||||||
|
domain:advertserve.com:@ads
|
||||||
|
domain:adview.cn:@ads
|
||||||
|
domain:adwords-community.com:@ads
|
||||||
|
domain:adwords.com:@ads
|
||||||
|
domain:adwordsexpress.com:@ads
|
||||||
|
domain:adx.36kr.com
|
||||||
|
domain:adx.xiaodutv.com:@ads
|
||||||
|
domain:adxprtz.com
|
||||||
|
domain:afd.baidu.com:@ads
|
||||||
|
domain:afdconf.baidu.com:@ads
|
||||||
|
domain:afp.iqiyi.com:@ads
|
||||||
|
domain:alimama.alicdn.com:@ads
|
||||||
|
domain:alitui.weibo.com:@ads
|
||||||
|
domain:alog.umeng.com:@ads
|
||||||
|
domain:alog.umengcloud.com:@ads
|
||||||
|
domain:alogs.umeng.com:@ads
|
||||||
|
domain:alogus.umeng.com:@ads
|
||||||
|
domain:alt-ad.mail.ru:@ads
|
||||||
|
domain:amazon-adsystem.com:@ads
|
||||||
|
domain:an.yandex.ru:@ads
|
||||||
|
domain:analytics-alv.google.com:@ads
|
||||||
|
domain:analytics-data.io
|
||||||
|
domain:analytics.163.com:@ads
|
||||||
|
domain:analytics.facebook.com:@ads
|
||||||
|
domain:analytics.tiktok.com:@!cn,@ads
|
||||||
|
domain:analytics.umetrip.com
|
||||||
|
domain:analytics.vk.com:@ads
|
||||||
|
domain:analytics.vpc.duolingo.com:@ads
|
||||||
|
domain:api-adservices.apple.com:@ads
|
||||||
|
domain:app-analytics-services-att.com:@ads
|
||||||
|
domain:app-analytics-services.com:@ads
|
||||||
|
domain:app-measurement-cn.com:@ads
|
||||||
|
domain:app-measurement.com:@ads
|
||||||
|
domain:apple.www.letv.com:@ads
|
||||||
|
domain:applovin.com
|
||||||
|
domain:applvn.com
|
||||||
|
domain:appmetrica.yandex.com:@ads
|
||||||
|
domain:appmetrica.yandex.net:@ads
|
||||||
|
domain:appmetrica.yandex.ru:@ads
|
||||||
|
domain:appmetrica.yango.com:@ads
|
||||||
|
domain:apptracer.ru:@ads
|
||||||
|
domain:ar.umeng.com:@ads
|
||||||
|
domain:ark.letv.com:@ads
|
||||||
|
domain:aspect-upush.umeng.com:@ads
|
||||||
|
domain:assp.sohu.com:@ads
|
||||||
|
domain:atanx.alicdn.com:@ads
|
||||||
|
domain:atanx2.alicdn.com:@ads
|
||||||
|
domain:atm.youku.com:@ads
|
||||||
|
domain:atom-data.io
|
||||||
|
domain:atrace.chelaile.net.cn
|
||||||
|
domain:audid.umeng.com:@ads
|
||||||
|
domain:badjs.weixinbridge.com:@ads
|
||||||
|
domain:baichuan-sdk.alicdn.com:@ads
|
||||||
|
domain:baifen.music.baidu.com:@ads
|
||||||
|
domain:bds.snssdk.com:@ads
|
||||||
|
domain:bdu.focus.cn:@ads
|
||||||
|
domain:beacon.cdn.qq.com:@ads
|
||||||
|
domain:beacon.qq.com:@ads
|
||||||
|
domain:beacon.sina.com.cn:@ads
|
||||||
|
domain:beaconcdn.qq.com:@ads
|
||||||
|
domain:beizi.biz
|
||||||
|
domain:bingads.com:@ads
|
||||||
|
domain:biz.weibo.com:@ads
|
||||||
|
domain:bluekai.com:@ads
|
||||||
|
domain:browser.events.data.msn.cn:@ads,@cn
|
||||||
|
domain:browser.events.data.msn.com:@ads
|
||||||
|
domain:bs.yandex.ru:@ads
|
||||||
|
domain:btrace.qq.com:@ads
|
||||||
|
domain:bugly.qq.com:@ads
|
||||||
|
domain:byteadverts.com:@ads
|
||||||
|
domain:bzclk.baidu.com:@ads
|
||||||
|
domain:c-adash.m.taobao.com:@ads
|
||||||
|
domain:c-nfa.jd.com:@ads
|
||||||
|
domain:c.sayhi.360.cn:@ads
|
||||||
|
domain:c.uaa.iqiyi.com:@ads
|
||||||
|
domain:casalemedia.com:@ads
|
||||||
|
domain:cb.baidu.com:@ads
|
||||||
|
domain:cbjs.baidu.com:@ads
|
||||||
|
domain:ccs.umeng.com:@ads
|
||||||
|
domain:cdn.banclip.com
|
||||||
|
domain:cdn.pocoiq.cn
|
||||||
|
domain:cfts1tifqr.com
|
||||||
|
domain:china-caa.org
|
||||||
|
domain:chinaciaf.org
|
||||||
|
domain:clarity.ms:@ads
|
||||||
|
domain:clck.yandex.ru:@ads
|
||||||
|
domain:clearbit.com:@ads
|
||||||
|
domain:clearbitjs.com:@ads
|
||||||
|
domain:clearbitscripts.com:@ads
|
||||||
|
domain:click.ali213.net
|
||||||
|
domain:click.gamersky.com:@ads
|
||||||
|
domain:click.hunantv.com:@ads
|
||||||
|
domain:click.uve.mobile.sina.cn:@ads
|
||||||
|
domain:click.uve.weibo.com:@ads
|
||||||
|
domain:clickstream.sberbank.ru:@ads
|
||||||
|
domain:cloudpush.iqiyi.com:@ads
|
||||||
|
domain:cm.baidu.com:@ads
|
||||||
|
domain:cnaa123.com
|
||||||
|
domain:cnlogs.umeng.com:@ads
|
||||||
|
domain:cnlogs.umengcloud.com:@ads
|
||||||
|
domain:collector.github.com:@ads
|
||||||
|
domain:collector.xhamster.com:@ads
|
||||||
|
domain:contentabc.com
|
||||||
|
domain:contextual.media.net:@ads
|
||||||
|
domain:copilot-telemetry.githubusercontent.com:@ads
|
||||||
|
domain:counter.yandex.ru:@ads
|
||||||
|
domain:cpmstar.com:@ads
|
||||||
|
domain:cpro.baidu.com:@ads
|
||||||
|
domain:cpro.baidustatic.com:@ads
|
||||||
|
domain:cps.360buy.com:@ads
|
||||||
|
domain:cpu.baidu.com:@ads
|
||||||
|
domain:crash.163.com:@ads
|
||||||
|
domain:crash2.zhihu.com:@ads
|
||||||
|
domain:crashlytics.163.com:@ads
|
||||||
|
domain:cretgate.com
|
||||||
|
domain:cstm.baidu.com:@ads
|
||||||
|
domain:ctobsnssdk.com:@ads
|
||||||
|
domain:cupid.iqiyi.com:@ads
|
||||||
|
domain:cxhub.ru:@ads
|
||||||
|
domain:da.hunantv.com:@ads
|
||||||
|
domain:da.mgtv.com:@ads
|
||||||
|
domain:das-rpt-log.ucloud.cn
|
||||||
|
domain:data.flurry.com
|
||||||
|
domain:data.mistat.india.xiaomi.com:@ads
|
||||||
|
domain:data.mistat.intl.xiaomi.com:@ads
|
||||||
|
domain:data.mistat.rus.xiaomi.com:@ads
|
||||||
|
domain:data.mistat.xiaomi.com:@ads
|
||||||
|
domain:datayi.cn
|
||||||
|
domain:dc.letv.com:@ads
|
||||||
|
domain:decide.mixpanel.com
|
||||||
|
domain:demdex.net:@ads
|
||||||
|
domain:dig.bdurl.net:@ads
|
||||||
|
domain:dlswbr.baidu.com:@ads
|
||||||
|
domain:dn-growing.qbox.me
|
||||||
|
domain:doubleclick-cn.net:@ads
|
||||||
|
domain:doubleclick.cn:@ads
|
||||||
|
domain:doubleclick.com:@ads
|
||||||
|
domain:doubleclick.net:@ads
|
||||||
|
domain:drmcmm.baidu.com:@ads
|
||||||
|
domain:dt.dbankcloud.ru:@!cn,@ads
|
||||||
|
domain:dualstack-logs.amap.com:@ads
|
||||||
|
domain:duiwai.baidu.com:@ads
|
||||||
|
domain:dup.baidustatic.com:@ads
|
||||||
|
domain:e.kuaishou.cn:@ads
|
||||||
|
domain:e.kuaishou.com:@ads
|
||||||
|
domain:e.mindbox.ru:@ads
|
||||||
|
domain:e.qq.com:@ads
|
||||||
|
domain:e.stat.ykimg.com:@ads
|
||||||
|
domain:eclick.baidu.com:@ads
|
||||||
|
domain:ecma.bdimg.com:@ads
|
||||||
|
domain:ecmb.bdimg.com:@ads
|
||||||
|
domain:ecmc.bdimg.com:@ads
|
||||||
|
domain:eduad.baidu.com:@ads
|
||||||
|
domain:eiv.baidu.com:@ads
|
||||||
|
domain:emogi.com
|
||||||
|
domain:ems.youku.com:@ads
|
||||||
|
domain:ero-advertising.com
|
||||||
|
domain:eroadvertising.com
|
||||||
|
domain:euads-o.api.leiniao.com:@ads
|
||||||
|
domain:evt.mxplay.com
|
||||||
|
domain:exoclick.com
|
||||||
|
domain:exosrv.com
|
||||||
|
domain:extlog.snssdk.com:@ads
|
||||||
|
domain:facebookads.com:@ads
|
||||||
|
domain:fclick.baidu.com:@ads
|
||||||
|
domain:fclog.baidu.com:@ads
|
||||||
|
domain:fcmatch.google.com:@ads
|
||||||
|
domain:fenxi.360.cn:@ads
|
||||||
|
domain:fenxi.com:@ads
|
||||||
|
domain:fourier.taobao.com:@ads
|
||||||
|
domain:fout.jp:@ads
|
||||||
|
domain:fpb.sohu.com:@ads
|
||||||
|
domain:g.163.com:@ads
|
||||||
|
domain:g.click.taobao.com:@ads
|
||||||
|
domain:g.mindbox.ru:@ads
|
||||||
|
domain:g1.tagtic.cn
|
||||||
|
domain:g3.letv.com:@ads
|
||||||
|
domain:gdt.qq.com:@ads
|
||||||
|
domain:gemini.yahoo.com:@ads
|
||||||
|
domain:gia.jd.com:@ads
|
||||||
|
domain:gio.ren
|
||||||
|
domain:giocdn.com
|
||||||
|
domain:gmossp-sp.jp:@ads
|
||||||
|
domain:go2.global
|
||||||
|
domain:google-analytics-cn.com:@ads
|
||||||
|
domain:google-analytics.com:@ads
|
||||||
|
domain:googleadapis.com:@ads
|
||||||
|
domain:googleadapis.l.google.com:@ads
|
||||||
|
domain:googleads-cn.com:@ads
|
||||||
|
domain:googleads.com:@ads
|
||||||
|
domain:googleadservices-cn.com:@ads
|
||||||
|
domain:googleadservices.com:@ads
|
||||||
|
domain:googleadsserving.cn:@ads
|
||||||
|
domain:googleanalytics.com:@ads
|
||||||
|
domain:googleoptimize-cn.com:@ads
|
||||||
|
domain:googleoptimize.com:@ads
|
||||||
|
domain:googlesyndication-cn.com:@ads
|
||||||
|
domain:googlesyndication.com:@ads
|
||||||
|
domain:googletagmanager-cn.com:@ads
|
||||||
|
domain:googletagmanager.com:@ads
|
||||||
|
domain:googletagservices-cn.com:@ads
|
||||||
|
domain:googletagservices.com:@ads
|
||||||
|
domain:googletraveladservices-cn.com:@ads
|
||||||
|
domain:googletraveladservices.com:@ads
|
||||||
|
domain:googlevads-cn.com:@ads
|
||||||
|
domain:gozendata.com
|
||||||
|
domain:graph-fallback.instagram.com:@ads
|
||||||
|
domain:graph.instagram.com:@ads
|
||||||
|
domain:graph.whatsapp.com:@ads
|
||||||
|
domain:graph.whatsapp.net:@ads
|
||||||
|
domain:growin.cn
|
||||||
|
domain:growingio.cn
|
||||||
|
domain:growingio.com
|
||||||
|
domain:guanggaoad.youku.com:@ads
|
||||||
|
domain:gz-data.com
|
||||||
|
domain:gzads.com
|
||||||
|
domain:h-adashx.ut.ele.me:@ads
|
||||||
|
domain:h-adashx.ut.taobao.com:@ads
|
||||||
|
domain:h-adashx.ut.youku.com:@ads
|
||||||
|
domain:h-adashx4yt.ut.taobao.com:@ads
|
||||||
|
domain:h2tcbox.baidu.com:@ads
|
||||||
|
domain:hao123union.baidu.com:@ads
|
||||||
|
domain:hm.baidu.com:@ads
|
||||||
|
domain:hmma.baidu.com:@ads
|
||||||
|
domain:hq-tracking.qq.com:@ads
|
||||||
|
domain:htrace.wetvinfo.com:@!cn,@ads
|
||||||
|
domain:httpool.com:@ads
|
||||||
|
domain:hubcloud.com.cn
|
||||||
|
domain:hwads-t.api.my7v.com:@ads
|
||||||
|
domain:i-mobile.co.jp:@ads
|
||||||
|
domain:i.snssdk.com:@ads
|
||||||
|
domain:iabchina.cn
|
||||||
|
domain:iad.apple.com:@ads
|
||||||
|
domain:iadmat.nosdn.127.net:@ads
|
||||||
|
domain:iadmatapk.nosdn.127.net:@ads
|
||||||
|
domain:iadmusicmat.music.126.net:@ads
|
||||||
|
domain:iadmusicmatvideo.music.126.net:@ads
|
||||||
|
domain:iads.unity3d.com:@ads
|
||||||
|
domain:iadsdk.apple.com:@ads
|
||||||
|
domain:ifacelog.iqiyi.com:@ads
|
||||||
|
domain:im-apps.net:@ads
|
||||||
|
domain:img-bss.csdn.net
|
||||||
|
domain:img-x.jd.com:@ads
|
||||||
|
domain:imglnkc.com
|
||||||
|
domain:imglnkd.com
|
||||||
|
domain:imgstat.baidu.com:@ads
|
||||||
|
domain:imp.go.sohu.com:@ads
|
||||||
|
domain:impact-ad.jp:@ads
|
||||||
|
domain:inner-active.mobi
|
||||||
|
domain:innovid.com
|
||||||
|
domain:inte.sogou.com:@ads
|
||||||
|
domain:inte.sogoucdn.com:@ads
|
||||||
|
domain:ipinyou.com
|
||||||
|
domain:ipinyou.com.cn
|
||||||
|
domain:ironbeast.io
|
||||||
|
domain:isdspeed.qq.com:@ads
|
||||||
|
domain:iwanad.baidu.com:@ads
|
||||||
|
domain:ja.gamersky.com:@ads
|
||||||
|
domain:ja1.gamersky.com:@ads
|
||||||
|
domain:ja2.gamersky.com:@ads
|
||||||
|
domain:jads.co
|
||||||
|
domain:jl3.yjaxa.top
|
||||||
|
domain:js-agent.newrelic.com
|
||||||
|
domain:juicyads.com
|
||||||
|
domain:jzt.jd.com:@ads
|
||||||
|
domain:kaprila.com
|
||||||
|
domain:kepler-37b.com
|
||||||
|
domain:kuyun.com
|
||||||
|
domain:ladsp.com:@ads
|
||||||
|
domain:leanplum.com
|
||||||
|
domain:lianmeng.360.cn:@ads
|
||||||
|
domain:lijit.com:@ads
|
||||||
|
domain:log-upload-os.hoyoverse.com:@ads
|
||||||
|
domain:log-upload.mihoyo.com:@ads
|
||||||
|
domain:log.dzen.ru:@ads
|
||||||
|
domain:log.hunantv.com:@ads
|
||||||
|
domain:log.mix.sina.com.cn:@ads
|
||||||
|
domain:log.sina.cn:@ads
|
||||||
|
domain:log.tbs.qq.com:@ads
|
||||||
|
domain:log.umtrack.com:@ads
|
||||||
|
domain:log.v2.hunantv.com:@ads
|
||||||
|
domain:log.zijieapi.com:@ads
|
||||||
|
domain:log2.sina.cn:@ads
|
||||||
|
domain:logs.amap.com:@ads
|
||||||
|
domain:logs.chelaile.net.cn
|
||||||
|
domain:logupdate.avlyun.sec.miui.com:@ads
|
||||||
|
domain:lqc006.com
|
||||||
|
domain:lstat.youku.com:@ads
|
||||||
|
domain:lu.sogou.com:@ads
|
||||||
|
domain:lu.sogoucdn.com:@ads
|
||||||
|
domain:m-adash.m.taobao.com:@ads
|
||||||
|
domain:m.aty.sohu.com:@ads
|
||||||
|
domain:mail-ads.google.com:@ads
|
||||||
|
domain:marketing.alibaba.com:@ads
|
||||||
|
domain:marketingplatform.google.com:@ads
|
||||||
|
domain:mbdlog.iqiyi.com:@ads
|
||||||
|
domain:mc.yandex.ru:@ads
|
||||||
|
domain:mcs.snssdk.com:@ads
|
||||||
|
domain:mdt.qq.com:@ads
|
||||||
|
domain:mediav.com:@ads
|
||||||
|
domain:metrics.duolingo.com:@ads
|
||||||
|
domain:metrics.viqeo.tv:@ads
|
||||||
|
domain:metrika.yandex.com:@ads
|
||||||
|
domain:metrika.yandex.net:@ads
|
||||||
|
domain:metrika.yandex.ru:@ads
|
||||||
|
domain:mfadsrvr.com:@ads
|
||||||
|
domain:mgid.com:@ads
|
||||||
|
domain:miao.baidu.com:@ads
|
||||||
|
domain:miaowu.baidu.com:@ads
|
||||||
|
domain:microad.co.jp:@ads
|
||||||
|
domain:microad.jp:@ads
|
||||||
|
domain:microsoftads.com:@ads
|
||||||
|
domain:mipcache.bdstatic.com:@ads
|
||||||
|
domain:misc.in.duokanbox.com:@ads
|
||||||
|
domain:mixer.sina.cn:@ads
|
||||||
|
domain:mlog.hiido.com
|
||||||
|
domain:moat.com
|
||||||
|
domain:moatads.com
|
||||||
|
domain:mobads-logs.baidu.com:@ads
|
||||||
|
domain:mobads-pre-config.cdn.bcebos.com:@ads
|
||||||
|
domain:mobads.baidu.com:@ads
|
||||||
|
domain:mobileads.google.com:@ads
|
||||||
|
domain:mobilemsg.youku.com:@ads
|
||||||
|
domain:mobwithad.com
|
||||||
|
domain:monitor.music.qq.com:@ads
|
||||||
|
domain:monitor.uu.qq.com:@ads
|
||||||
|
domain:mopub.com
|
||||||
|
domain:mountain.zhidao.baidu.com:@ads
|
||||||
|
domain:mpush.qq.com:@ads
|
||||||
|
domain:ms.dzen.ru:@ads
|
||||||
|
domain:ms.vk.com:@ads
|
||||||
|
domain:ms.vk.ru:@ads
|
||||||
|
domain:msads.net:@ads
|
||||||
|
domain:msg.video.qiyi.com:@ads
|
||||||
|
domain:msg.youku.com:@ads
|
||||||
|
domain:msg2.video.qiyi.com:@ads
|
||||||
|
domain:mtrace.qq.com:@ads
|
||||||
|
domain:mvad.com:@ads
|
||||||
|
domain:myadx.net:@ads
|
||||||
|
domain:najva.com
|
||||||
|
domain:nbsdk-baichuan.alicdn.com:@ads
|
||||||
|
domain:nbsdk-baichuan.taobao.com:@ads
|
||||||
|
domain:nelreports.net:@ads
|
||||||
|
domain:neon.click:@ads
|
||||||
|
domain:new-aaid.umeng.com.gds.alibabadns.com:@ads
|
||||||
|
domain:new-aaid.umeng.com:@ads
|
||||||
|
domain:ns1p.net:@ads
|
||||||
|
domain:nsclick.baidu.com:@ads
|
||||||
|
domain:nsclickvideo.baidu.com:@ads
|
||||||
|
domain:oc.umeng.com:@ads
|
||||||
|
domain:oct.pocoiq.cn
|
||||||
|
domain:ogury.co:@ads
|
||||||
|
domain:ogury.com:@ads
|
||||||
|
domain:onesignal.com
|
||||||
|
domain:openx.net:@ads
|
||||||
|
domain:openxadexchange.com:@ads
|
||||||
|
domain:openxcdn.net:@ads
|
||||||
|
domain:openxenterprise.com:@ads
|
||||||
|
domain:openxmarket.asia:@ads
|
||||||
|
domain:optaim.com
|
||||||
|
domain:optimus-ads.amap.com:@ads
|
||||||
|
domain:p-log.ykimg.com:@ads
|
||||||
|
domain:p.aty.sohu.com:@ads
|
||||||
|
domain:p4p.sina.com.cn:@ads
|
||||||
|
domain:pagead.l.google.com:@ads
|
||||||
|
domain:pangolin-dsp-toutiao-b.com:@ads
|
||||||
|
domain:pangolin-dsp-toutiao.com:@ads
|
||||||
|
domain:pangolin-hl.snssdk.com:@ads
|
||||||
|
domain:pangolin-lf.snssdk.com:@ads
|
||||||
|
domain:pangolin-lq.snssdk.com:@ads
|
||||||
|
domain:pangolin-sdk-toutiao-b.com:@ads
|
||||||
|
domain:pangolin-sdk-toutiao.com:@ads
|
||||||
|
domain:pangolin-sdk-toutiao1.com:@ads
|
||||||
|
domain:pangolin.snssdk.com:@ads
|
||||||
|
domain:panplayable-toutiao-b.com:@ads
|
||||||
|
domain:panplayable-toutiao.com:@ads
|
||||||
|
domain:partnerad.l.google.com:@ads
|
||||||
|
domain:passport-log.youku.com:@ads
|
||||||
|
domain:pb.i.sogou.com:@ads
|
||||||
|
domain:pbmp.ali213.net
|
||||||
|
domain:pgdt.gtimg.cn:@ads
|
||||||
|
domain:pglstatp-sdk-toutiao.com:@ads
|
||||||
|
domain:pglstatp-snssdk-toutiao.com:@ads
|
||||||
|
domain:pglstatp-toutiao-b.com:@ads
|
||||||
|
domain:pglstatp-toutiao.com:@ads
|
||||||
|
domain:pimlog.baidu.com:@ads
|
||||||
|
domain:pingjs.qq.com:@ads
|
||||||
|
domain:pixel.facebook.com:@ads
|
||||||
|
domain:pl.youku.com:@ads
|
||||||
|
domain:plbslog.umeng.com:@ads
|
||||||
|
domain:pmir.3g.qq.com:@ads
|
||||||
|
domain:policy.video.iqiyi.com:@ads
|
||||||
|
domain:pos.baidu.com:@ads
|
||||||
|
domain:presage.io:@ads
|
||||||
|
domain:pubmatic.co.jp
|
||||||
|
domain:pubmatic.com
|
||||||
|
domain:push.qq.com:@ads
|
||||||
|
domain:pv.hd.sohu.com:@ads
|
||||||
|
domain:pv.sohu.com:@ads
|
||||||
|
domain:qhupdate.com:@ads
|
||||||
|
domain:qpb.sohu.com:@ads
|
||||||
|
domain:qpb1.sohu.com:@ads
|
||||||
|
domain:qqdata.ab.qq.com:@ads
|
||||||
|
domain:qwapi.com:@ads
|
||||||
|
domain:r.mail.ru:@ads
|
||||||
|
domain:radar.imgsmail.ru:@ads
|
||||||
|
domain:reachmax.cn
|
||||||
|
domain:realsrv.com
|
||||||
|
domain:reke.at.sohu.com:@ads
|
||||||
|
domain:relap.mail.ru:@ads
|
||||||
|
domain:report.qqweb.qq.com:@ads
|
||||||
|
domain:report.tencentmusic.com:@ads
|
||||||
|
domain:res.hunantv.com:@ads
|
||||||
|
domain:resolve.umeng.com:@ads
|
||||||
|
domain:retcode.taobao.com:@ads
|
||||||
|
domain:reyun.com
|
||||||
|
domain:rmonitor.qq.com:@ads
|
||||||
|
domain:rs.sinajs.cn:@ads
|
||||||
|
domain:s-adashx.ut.youku.com:@ads
|
||||||
|
domain:s.360.cn:@ads
|
||||||
|
domain:s.mindbox.ru:@ads
|
||||||
|
domain:s.so.360.cn:@ads
|
||||||
|
domain:s.union.360.cn:@ads
|
||||||
|
domain:s4yxaqyq95.com
|
||||||
|
domain:sa.sina.cn:@ads
|
||||||
|
domain:sabavision.com
|
||||||
|
domain:samsungads.com:@ads
|
||||||
|
domain:sbeacon.sina.com.cn:@ads
|
||||||
|
domain:sbermarketing.ru:@ads
|
||||||
|
domain:sclick.baidu.com:@ads
|
||||||
|
domain:sdkclick.mobile.sina.cn:@ads
|
||||||
|
domain:segment.com:@ads
|
||||||
|
domain:segment.io:@ads
|
||||||
|
domain:segmenthub.com:@ads
|
||||||
|
domain:segmentify.com:@ads
|
||||||
|
domain:sensors.umetrip.com.cn
|
||||||
|
domain:sentry.d.mi.com:@ads
|
||||||
|
domain:sentry.d.xiaomi.net:@ads
|
||||||
|
domain:sentry.music.163.com:@ads
|
||||||
|
domain:serving-sys.com:@ads
|
||||||
|
domain:sf3-ttcdn-tos.pstatp.com:@ads
|
||||||
|
domain:shhs-ydd8x2.yjrmss.cn
|
||||||
|
domain:shoppingads.cn:@ads
|
||||||
|
domain:shuzilm.cn
|
||||||
|
domain:sigmob.com:@ads
|
||||||
|
domain:slog.sina.cn:@ads
|
||||||
|
domain:slog.sina.com.cn:@ads
|
||||||
|
domain:snapads.com:@ads
|
||||||
|
domain:sngmta.qq.com:@ads
|
||||||
|
domain:socdm.com:@ads
|
||||||
|
domain:spcode.baidu.com:@ads
|
||||||
|
domain:splash-ads.cdn.unity.cn:@ads
|
||||||
|
domain:splash-ads.unitychina.cn:@ads
|
||||||
|
domain:spotxchange.com:@ads
|
||||||
|
domain:ssacdn.com:@ads
|
||||||
|
domain:ssp.api.tappx.com
|
||||||
|
domain:stat.chinaso.com
|
||||||
|
domain:stat.m.jd.com:@ads
|
||||||
|
domain:stat.y.qq.com:@ads
|
||||||
|
domain:stat.youku.com:@ads
|
||||||
|
domain:static.hotjar.com
|
||||||
|
domain:static.javhd.com
|
||||||
|
domain:static.sensorsdata.cn
|
||||||
|
domain:statis.api.3g.youku.com:@ads
|
||||||
|
domain:stats.music.xiaomi.com:@ads
|
||||||
|
domain:supersonic.com:@ads
|
||||||
|
domain:supersonicads-a.akamaihd.net:@ads
|
||||||
|
domain:supersonicads.com:@ads
|
||||||
|
domain:syh.zybang.com:@ads
|
||||||
|
domain:taboola.com
|
||||||
|
domain:tajs.qq.com:@ads
|
||||||
|
domain:tapsell.ir
|
||||||
|
domain:target.my.com:@ads
|
||||||
|
domain:target.vk.ru:@ads
|
||||||
|
domain:tcbox.baidu.com:@ads
|
||||||
|
domain:tce.alicdn.com:@ads
|
||||||
|
domain:tcss.qq.com:@ads
|
||||||
|
domain:tdsdk.cpatrk.net:@ads
|
||||||
|
domain:telecome.cn
|
||||||
|
domain:testads.api.my7v.com:@ads
|
||||||
|
domain:theta.sogoucdn.com:@ads
|
||||||
|
domain:tjqonline.cn:@ads
|
||||||
|
domain:tm-banners.gamingadult.com
|
||||||
|
domain:tmead.y.qq.com:@ads
|
||||||
|
domain:tmeadcomm.y.qq.com:@ads
|
||||||
|
domain:tns.simba.taobao.com:@ads
|
||||||
|
domain:toboads.com
|
||||||
|
domain:top-fwz1.mail.ru:@ads
|
||||||
|
domain:tpstelemetry.tencent.com:@ads
|
||||||
|
domain:trace.qq.com:@ads
|
||||||
|
domain:track.lc.quark.cn:@ads
|
||||||
|
domain:track.sohu.com:@ads
|
||||||
|
domain:tracker-api.my.com:@ads
|
||||||
|
domain:tracker.ai.xiaomi.com:@ads
|
||||||
|
domain:tracker.my.com:@ads
|
||||||
|
domain:tracker.xiaomixiaoai.com:@ads
|
||||||
|
domain:tracking.miui.com:@ads
|
||||||
|
domain:trafficfactory.biz
|
||||||
|
domain:tsyndicate.com
|
||||||
|
domain:tubemogul.com:@ads
|
||||||
|
domain:uberads.com
|
||||||
|
domain:ubmcvideo.baidustatic.com:@ads
|
||||||
|
domain:ugdtimg.com:@ads
|
||||||
|
domain:ulogs.umeng.com:@ads
|
||||||
|
domain:ulogs.umengcloud.com:@ads
|
||||||
|
domain:unimhk.com:@ads
|
||||||
|
domain:union.baidu.com:@ads
|
||||||
|
domain:unioncom.cc
|
||||||
|
domain:unionimage.baidu.com:@ads
|
||||||
|
domain:unityads.unity.cn:@ads
|
||||||
|
domain:unityads.unity3d.com:@ads
|
||||||
|
domain:unityads.unitychina.cn:@ads
|
||||||
|
domain:upapi.net:@ads
|
||||||
|
domain:uranus.sogou.com:@ads
|
||||||
|
domain:urchin.com:@ads
|
||||||
|
domain:utoken.umeng.com:@ads
|
||||||
|
domain:v6-adashx.ut.amap.com:@ads
|
||||||
|
domain:v6-adashx.ut.cainiao.com:@ads
|
||||||
|
domain:v6-adashx.ut.ele.me:@ads
|
||||||
|
domain:v6-adashx.ut.taobao.com:@ads
|
||||||
|
domain:v6-adashx.ut.youku.com:@ads
|
||||||
|
domain:vk-analytics.ru:@ads
|
||||||
|
domain:w.cnzz.com:@ads
|
||||||
|
domain:wangmeng.baidu.com:@ads
|
||||||
|
domain:wapwbclick.mobile.sina.cn:@ads
|
||||||
|
domain:wbclick.mobile.sina.cn:@ads
|
||||||
|
domain:webvisor.com:@ads
|
||||||
|
domain:webvisor.org:@ads
|
||||||
|
domain:wit.qq.com:@ads
|
||||||
|
domain:wkctj.baidu.com:@ads
|
||||||
|
domain:wm.baidu.com:@ads
|
||||||
|
domain:wmbd.gamersky.com:@ads
|
||||||
|
domain:wuliao.epro.sogou.com:@ads
|
||||||
|
domain:wwads.cn
|
||||||
|
domain:xy-log.tagtic.cn
|
||||||
|
domain:yabs.yandex.ru:@ads
|
||||||
|
domain:yads.tech:@ads
|
||||||
|
domain:yandex-metrica.ru:@ads
|
||||||
|
domain:yandexmetrica.com:@ads
|
||||||
|
domain:yango-ads.com:@ads
|
||||||
|
domain:yektanet.com
|
||||||
|
domain:yfanads.cn
|
||||||
|
domain:yfanads.com
|
||||||
|
domain:yk-ssp.ad.youku.com:@ads
|
||||||
|
domain:ykad-data.youku.com:@ads
|
||||||
|
domain:ylog.hiido.com
|
||||||
|
domain:ysm.yahoo.com:@ads
|
||||||
|
domain:z.gds.cnzz.com:@ads
|
||||||
|
domain:zhihu-web-analytics.zhihu.com:@ads
|
||||||
|
domain:zhugeapi.com
|
||||||
|
domain:zhugeapi.net
|
||||||
|
domain:zhugeio.com
|
||||||
|
domain:zxid-api.mobileservice.cn
|
||||||
|
domain:zxid-m.mobileservice.cn
|
||||||
|
domain:zz.bdstatic.com:@ads
|
||||||
|
full:1l-hit.mail.ru:@ads
|
||||||
|
full:1l-hit.vkplay.ru:@ads
|
||||||
|
full:ad-channel.diwodiwo.xyz:@ads
|
||||||
|
full:ad-display.diwodiwo.xyz:@ads
|
||||||
|
full:ad.ozone.ru:@ads
|
||||||
|
full:ad4.mail.ru:@ads
|
||||||
|
full:adblogger.vk.com:@ads
|
||||||
|
full:adblogger.vk.ru:@ads
|
||||||
|
full:adeventtracker.spotify.com:@ads
|
||||||
|
full:adfstat.yandex.ru:@ads
|
||||||
|
full:ads-gate.wildberries.ru:@ads
|
||||||
|
full:ads-integration.rustore.ru:@ads
|
||||||
|
full:ads-media.wildberries.ru:@ads
|
||||||
|
full:ads.dahlmessenger.com:@ads
|
||||||
|
full:ads.icq.com:@ads
|
||||||
|
full:ads.rustore.ru:@ads
|
||||||
|
full:ads.vk.com:@ads
|
||||||
|
full:ads.vk.ru:@ads
|
||||||
|
full:ads.wildberries.ru:@ads
|
||||||
|
full:ads.x5.ru:@ads
|
||||||
|
full:ads.x5media.ru:@ads
|
||||||
|
full:ads.yandex.com:@ads
|
||||||
|
full:ads.yango.com:@ads
|
||||||
|
full:ads3-normal-hl.zijieapi.com:@ads
|
||||||
|
full:ads3-normal.zijieapi.com:@ads
|
||||||
|
full:ads5-normal-hl.zijieapi.com:@ads
|
||||||
|
full:ads5-normal.zijieapi.com:@ads
|
||||||
|
full:adsapp.dahlmessenger.com:@ads
|
||||||
|
full:adsapp.stage.telega.info:@ads
|
||||||
|
full:adsapp.telega.info:@ads
|
||||||
|
full:adsdk.yandex.ru:@ads
|
||||||
|
full:adstudio-assets.scdn.co:@ads
|
||||||
|
full:adv.ozon.ru:@ads
|
||||||
|
full:adv.rustore.ru:@ads
|
||||||
|
full:adv.vk.ru:@ads
|
||||||
|
full:advert-api-sandbox.wb.ru:@ads
|
||||||
|
full:advert-api-sandbox.wildberries.ru:@ads
|
||||||
|
full:advert-api.wb.ru:@ads
|
||||||
|
full:advert-api.wildberries.ru:@ads
|
||||||
|
full:advert-media-api.wb.ru:@ads
|
||||||
|
full:advert-media-api.wildberries.ru:@ads
|
||||||
|
full:advk.vk.ru:@ads
|
||||||
|
full:agency-adv.ozon.ru:@ads
|
||||||
|
full:alt-r.my.com:@ads
|
||||||
|
full:amc.yandex.ru:@ads
|
||||||
|
full:an.mail.ru:@ads
|
||||||
|
full:analytics-adv.ozon.ru:@ads
|
||||||
|
full:analytics-stage.wildberries.ru:@ads
|
||||||
|
full:analytics.google.com:@ads
|
||||||
|
full:analytics.mobile.yandex.net:@ads
|
||||||
|
full:analytics.vk.ru:@ads
|
||||||
|
full:analytics.wildberries.ru:@ads
|
||||||
|
full:api-eu.carrotquest.app:@ads
|
||||||
|
full:api-eu.carrotquest.io:@ads
|
||||||
|
full:api-js.mindbox.ru:@ads
|
||||||
|
full:api-ru.carrotquest.app:@ads
|
||||||
|
full:api-ru.carrotquest.io:@ads
|
||||||
|
full:api-ru.mindbox.cloud:@ads
|
||||||
|
full:api-secure.carrotquest.app:@ads
|
||||||
|
full:api-secure.carrottrack.app:@ads
|
||||||
|
full:api-staging.mindbox.ru:@ads
|
||||||
|
full:api.carrotquest.app:@ads
|
||||||
|
full:api.carrotquest.io:@ads
|
||||||
|
full:api.carrottrack.app:@ads
|
||||||
|
full:api.dashly.app:@ads
|
||||||
|
full:api.dashlytrack.app:@ads
|
||||||
|
full:api.mindbox.cloud:@ads
|
||||||
|
full:api.mindbox.ru:@ads
|
||||||
|
full:apilog-web.acfun.cn:@ads
|
||||||
|
full:b2.mail.ru:@ads
|
||||||
|
full:beginners-adv.ozon.ru:@ads
|
||||||
|
full:bloodhound.spotify.com:@ads
|
||||||
|
full:browser-intake-datadoghq.com:@ads
|
||||||
|
full:bs.mail.ru:@ads
|
||||||
|
full:clck.yandex.com:@ads
|
||||||
|
full:clck.yandex.net:@ads
|
||||||
|
full:clck.yango.com:@ads
|
||||||
|
full:click.rustore.ru:@ads
|
||||||
|
full:disney.my.sentry.io:@ads
|
||||||
|
full:error-tracking.megamarket.tech:@ads
|
||||||
|
full:google-analytics-suite.ozon.ru:@ads
|
||||||
|
full:informer.yandex.ru:@ads
|
||||||
|
full:log-sdk.gifshow.com:@ads
|
||||||
|
full:log3-applog-hl.fqnovel.com:@ads
|
||||||
|
full:log3-applog.fqnovel.com:@ads
|
||||||
|
full:log5-applog-hl.fqnovel.com:@ads
|
||||||
|
full:log5-applog.fqnovel.com:@ads
|
||||||
|
full:loyalnost-adv.ozon.ru:@ads
|
||||||
|
full:marketing-info.wildberries.ru:@ads
|
||||||
|
full:marketplace-sentry.wb.ru:@ads
|
||||||
|
full:mc.yandex.com:@ads
|
||||||
|
full:mc.yandex.net:@ads
|
||||||
|
full:mc.yango.com:@ads
|
||||||
|
full:metrics.21-school.ru:@ads
|
||||||
|
full:metrika.kontur.ru:@ads
|
||||||
|
full:new-adv.ozon.ru:@ads
|
||||||
|
full:o33249.ingest.sentry.io:@ads
|
||||||
|
full:o4504926511693824.ingest.sentry.io:@ads
|
||||||
|
full:p3-ad-sign.byteimg.com:@ads
|
||||||
|
full:p6-ad-sign.byteimg.com:@ads
|
||||||
|
full:p9-ad-sign.byteimg.com:@ads
|
||||||
|
full:pinggai0.caixin.com
|
||||||
|
full:pinggai1.caixin.com
|
||||||
|
full:pinggai2.caixin.com
|
||||||
|
full:pinggai3.caixin.com
|
||||||
|
full:pinggai4.caixin.com
|
||||||
|
full:pinggai5.caixin.com
|
||||||
|
full:pinggai6.caixin.com
|
||||||
|
full:pinggai7.caixin.com
|
||||||
|
full:pinggai8.caixin.com
|
||||||
|
full:pinggai9.caixin.com
|
||||||
|
full:pixel.rustore.ru:@ads
|
||||||
|
full:pixel.yandex.com:@ads
|
||||||
|
full:prodvizhenie-adv.ozon.ru:@ads
|
||||||
|
full:questions-adv.ozon.ru:@ads
|
||||||
|
full:r0.mail.ru:@ads
|
||||||
|
full:r0.mradx.net:@ads
|
||||||
|
full:r1.mail.ru:@ads
|
||||||
|
full:reklama.mail.ru:@ads
|
||||||
|
full:report.ap.yandex-net.ru:@ads
|
||||||
|
full:rs.mail.ru:@ads
|
||||||
|
full:rtlog3-applog-hl.fqnovel.com:@ads
|
||||||
|
full:rtlog3-applog.fqnovel.com:@ads
|
||||||
|
full:rtlog5-applog-hl.fqnovel.com:@ads
|
||||||
|
full:rtlog5-applog.fqnovel.com:@ads
|
||||||
|
full:sentry-ng.g.smailru.net:@ads
|
||||||
|
full:sentry.dev-my.com:@ads
|
||||||
|
full:sentry.dev-my.games:@ads
|
||||||
|
full:sentry.hetzner.company:@ads
|
||||||
|
full:sentry.kontur.host:@ads
|
||||||
|
full:sentry.mindbox.ru:@ads
|
||||||
|
full:sentry.ozon.ru:@ads
|
||||||
|
full:sentry.popmechanic.ru:@ads
|
||||||
|
full:sentry.rustore.ru:@ads
|
||||||
|
full:sentry.sberauto.com:@ads
|
||||||
|
full:sentry.viqeo.tv:@ads
|
||||||
|
full:sentry.wb.ru:@ads
|
||||||
|
full:sentry.x5.ru:@ads
|
||||||
|
full:srch-telemeter10.g.smailru.net:@ads
|
||||||
|
full:stacks.vk-portal.net:@ads
|
||||||
|
full:stats.dahlmessenger.com:@ads
|
||||||
|
full:stats.dev.telega.info:@ads
|
||||||
|
full:stats.rustore.ru:@ads
|
||||||
|
full:stats.telega.info:@ads
|
||||||
|
full:stats.vk-portal.net:@ads
|
||||||
|
full:t.mail.ru:@ads
|
||||||
|
full:target.vk.com:@ads
|
||||||
|
full:top-staging.mail.ru:@ads
|
||||||
|
full:tracing-http.megamarket.tech:@ads
|
||||||
|
full:visor.sberbank.ru:@ads
|
||||||
|
full:web-analytics.wildberries.ru:@ads
|
||||||
|
full:whiteline.mail.ru:@ads
|
||||||
|
full:wlog.kuaishou.com:@ads
|
||||||
|
full:xapi.ozon.by:@ads
|
||||||
|
full:xapi.ozon.com.by:@ads
|
||||||
|
full:xapi.ozon.com.kz:@ads
|
||||||
|
full:xapi.ozon.com:@ads
|
||||||
|
full:xapi.ozon.kz:@ads
|
||||||
|
full:xapi.ozon.ru:@ads
|
||||||
|
full:xapi.ozonru.me:@ads
|
||||||
|
full:xray.mail.ru:@ads
|
||||||
|
regexp:^speed\.(coe|open)\.ad\.[a-z]{2,6}\.prod\.hosts\.ooklaserver\.net$:@ads
|
||||||
@@ -1,177 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"flag"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/v2fly/domain-list-community/internal/dlc"
|
|
||||||
router "github.com/v2fly/v2ray-core/v5/app/router/routercommon"
|
|
||||||
"google.golang.org/protobuf/proto"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
inputData = flag.String("inputdata", "dlc.dat", "Name of the geosite dat file")
|
|
||||||
outputDir = flag.String("outputdir", "./", "Directory to place all generated files")
|
|
||||||
exportLists = flag.String("exportlists", "", "Lists to be exported, separated by ',' (empty for _all_)")
|
|
||||||
)
|
|
||||||
|
|
||||||
type DomainRule struct {
|
|
||||||
Type string
|
|
||||||
Value string
|
|
||||||
Attrs []string
|
|
||||||
}
|
|
||||||
|
|
||||||
type DomainList struct {
|
|
||||||
Name string
|
|
||||||
Rules []DomainRule
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DomainRule) domain2String() string {
|
|
||||||
var dstr strings.Builder
|
|
||||||
dstr.Grow(len(d.Type) + len(d.Value) + 10)
|
|
||||||
dstr.WriteString(d.Type)
|
|
||||||
dstr.WriteByte(':')
|
|
||||||
dstr.WriteString(d.Value)
|
|
||||||
for i, attr := range d.Attrs {
|
|
||||||
if i == 0 {
|
|
||||||
dstr.WriteByte(':')
|
|
||||||
} else {
|
|
||||||
dstr.WriteByte(',')
|
|
||||||
}
|
|
||||||
dstr.WriteByte('@')
|
|
||||||
dstr.WriteString(attr)
|
|
||||||
}
|
|
||||||
return dstr.String()
|
|
||||||
}
|
|
||||||
|
|
||||||
func loadGeosite(path string) ([]DomainList, map[string]*DomainList, error) {
|
|
||||||
data, err := os.ReadFile(path)
|
|
||||||
if err != nil {
|
|
||||||
return nil, nil, fmt.Errorf("failed to read geosite file: %w", err)
|
|
||||||
}
|
|
||||||
vgeositeList := new(router.GeoSiteList)
|
|
||||||
if err := proto.Unmarshal(data, vgeositeList); err != nil {
|
|
||||||
return nil, nil, fmt.Errorf("failed to unmarshal: %w", err)
|
|
||||||
}
|
|
||||||
domainLists := make([]DomainList, len(vgeositeList.Entry))
|
|
||||||
domainListByName := make(map[string]*DomainList, len(vgeositeList.Entry))
|
|
||||||
for i, vsite := range vgeositeList.Entry {
|
|
||||||
rules := make([]DomainRule, 0, len(vsite.Domain))
|
|
||||||
for _, vdomain := range vsite.Domain {
|
|
||||||
rule := DomainRule{Value: vdomain.Value}
|
|
||||||
switch vdomain.Type {
|
|
||||||
case router.Domain_RootDomain:
|
|
||||||
rule.Type = dlc.RuleTypeDomain
|
|
||||||
case router.Domain_Regex:
|
|
||||||
rule.Type = dlc.RuleTypeRegexp
|
|
||||||
case router.Domain_Plain:
|
|
||||||
rule.Type = dlc.RuleTypeKeyword
|
|
||||||
case router.Domain_Full:
|
|
||||||
rule.Type = dlc.RuleTypeFullDomain
|
|
||||||
default:
|
|
||||||
return nil, nil, fmt.Errorf("invalid rule type: %+v", vdomain.Type)
|
|
||||||
}
|
|
||||||
for _, vattr := range vdomain.Attribute {
|
|
||||||
rule.Attrs = append(rule.Attrs, vattr.Key)
|
|
||||||
}
|
|
||||||
rules = append(rules, rule)
|
|
||||||
}
|
|
||||||
domainLists[i] = DomainList{
|
|
||||||
Name: strings.ToUpper(vsite.CountryCode),
|
|
||||||
Rules: rules,
|
|
||||||
}
|
|
||||||
domainListByName[domainLists[i].Name] = &domainLists[i]
|
|
||||||
}
|
|
||||||
return domainLists, domainListByName, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func exportSite(name string, domainListByName map[string]*DomainList) error {
|
|
||||||
domainList, ok := domainListByName[strings.ToUpper(name)]
|
|
||||||
if !ok {
|
|
||||||
return fmt.Errorf("list %q does not exist", name)
|
|
||||||
}
|
|
||||||
if len(domainList.Rules) == 0 {
|
|
||||||
return fmt.Errorf("list %q is empty", name)
|
|
||||||
}
|
|
||||||
file, err := os.Create(filepath.Join(*outputDir, name+".yml"))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer file.Close()
|
|
||||||
w := bufio.NewWriter(file)
|
|
||||||
fmt.Fprintf(w, "%s:\n", name)
|
|
||||||
for _, domain := range domainList.Rules {
|
|
||||||
fmt.Fprintf(w, " - %q\n", domain.domain2String())
|
|
||||||
}
|
|
||||||
return w.Flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func exportAll(filename string, domainLists []DomainList) error {
|
|
||||||
file, err := os.Create(filepath.Join(*outputDir, filename))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer file.Close()
|
|
||||||
w := bufio.NewWriter(file)
|
|
||||||
w.WriteString("lists:\n")
|
|
||||||
for _, domainList := range domainLists {
|
|
||||||
fmt.Fprintf(w, " - name: %s\n", strings.ToLower(domainList.Name))
|
|
||||||
fmt.Fprintf(w, " length: %d\n", len(domainList.Rules))
|
|
||||||
w.WriteString(" rules:\n")
|
|
||||||
for _, domain := range domainList.Rules {
|
|
||||||
fmt.Fprintf(w, " - %q\n", domain.domain2String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return w.Flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func run() error {
|
|
||||||
// Make sure output directory exists
|
|
||||||
if err := os.MkdirAll(*outputDir, 0755); err != nil {
|
|
||||||
return fmt.Errorf("failed to create output directory: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Printf("loading source data %q...\n", *inputData)
|
|
||||||
domainLists, domainListByName, err := loadGeosite(*inputData)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("failed to loadGeosite: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var exportListSlice []string
|
|
||||||
for raw := range strings.SplitSeq(*exportLists, ",") {
|
|
||||||
if trimmed := strings.TrimSpace(raw); trimmed != "" {
|
|
||||||
exportListSlice = append(exportListSlice, trimmed)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(exportListSlice) == 0 {
|
|
||||||
exportListSlice = []string{"_all_"}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, eplistname := range exportListSlice {
|
|
||||||
if strings.EqualFold(eplistname, "_all_") {
|
|
||||||
if err := exportAll(filepath.Base(*inputData)+"_plain.yml", domainLists); err != nil {
|
|
||||||
fmt.Printf("failed to exportAll: %v\n", err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if err := exportSite(eplistname, domainListByName); err != nil {
|
|
||||||
fmt.Printf("failed to exportSite: %v\n", err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fmt.Printf("list: %q has been exported successfully.\n", eplistname)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
flag.Parse()
|
|
||||||
if err := run(); err != nil {
|
|
||||||
fmt.Printf("Fatal error: %v\n", err)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
115.com
|
|
||||||
115cdn.com
|
|
||||||
115cdn.net
|
|
||||||
115cloud.cn
|
|
||||||
115cloud.com
|
|
||||||
115cloud.net
|
|
||||||
115img.com
|
|
||||||
115meta.com
|
|
||||||
115vod.com
|
|
||||||
116cd.cn
|
|
||||||
116cd.com
|
|
||||||
116cd.net
|
|
||||||
anxia.com
|
|
||||||
sq.cc
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
# Main domain
|
|
||||||
1337x.to
|
|
||||||
|
|
||||||
# Mirror domains
|
|
||||||
# Reference: https://1337x.to/about
|
|
||||||
1337x.gd
|
|
||||||
1337x.is
|
|
||||||
1337x.st
|
|
||||||
1337x.tw
|
|
||||||
1337xto.to
|
|
||||||
1337xx.to
|
|
||||||
x1337x.eu
|
|
||||||
x1337x.se
|
|
||||||
x1337x.ws
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
17zuoye.cn
|
|
||||||
17zuoye.com
|
|
||||||
17zuoye.net
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
18comic-god.cc
|
|
||||||
18comic-god.club
|
|
||||||
18comic-god.xyz
|
|
||||||
18comic.cc
|
|
||||||
18comic.company
|
|
||||||
18comic.org
|
|
||||||
18comic.vip
|
|
||||||
asjmapihost.cc
|
|
||||||
cdnblackmyth.club
|
|
||||||
cdnmhws.cc
|
|
||||||
cdnmhwscc.vip
|
|
||||||
cdnuc.vip
|
|
||||||
cdnxxx-proxy.co
|
|
||||||
cdnxxx-proxy.xyz
|
|
||||||
jm-comic2.cc
|
|
||||||
jm18c-bbm.cc
|
|
||||||
jm18c-bbm.net
|
|
||||||
jm18c-uoi.net
|
|
||||||
jm365.work
|
|
||||||
jm365.xyz
|
|
||||||
jmapibranch1.cc
|
|
||||||
jmapibranch2.cc
|
|
||||||
jmapibranch3.cc
|
|
||||||
jmapinode.biz
|
|
||||||
jmapinode.vip
|
|
||||||
jmapinode.xyz
|
|
||||||
jmapinode1.top
|
|
||||||
jmapinode2.top
|
|
||||||
jmapinode3.top
|
|
||||||
jmapinodeudzn.net
|
|
||||||
jmapinodeudzn.xyz
|
|
||||||
jmapiproxy1.cc
|
|
||||||
jmapiproxy1.monster
|
|
||||||
jmapiproxy2.cc
|
|
||||||
jmapiproxy3.cc
|
|
||||||
jmapiproxy4.cc
|
|
||||||
jmapiproxyxxx.vip
|
|
||||||
jmcomic.group
|
|
||||||
jmcomic.ltd
|
|
||||||
jmcomic.me
|
|
||||||
jmcomic.mobi
|
|
||||||
jmcomic.moe
|
|
||||||
jmcomic.rocks
|
|
||||||
jmcomic-fb.vip
|
|
||||||
jmcomic-zzz.one
|
|
||||||
jmcomic-zzz.org
|
|
||||||
jmcomic1.city
|
|
||||||
jmcomic1.me
|
|
||||||
jmcomic1.mobi
|
|
||||||
jmcomic1.rocks
|
|
||||||
jmcomic2.moe
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
# https://crt.sh/?id=24119301132
|
|
||||||
2gis.ae
|
|
||||||
2gis.am
|
|
||||||
2gis.az
|
|
||||||
2gis.by
|
|
||||||
2gis.com
|
|
||||||
2gis.com.cy
|
|
||||||
2gis.cz
|
|
||||||
2gis.ge
|
|
||||||
2gis.kg
|
|
||||||
2gis.kz
|
|
||||||
2gis.ru
|
|
||||||
2gis.tj
|
|
||||||
2gis.uz
|
|
||||||
2gis.tech
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
2k.com
|
|
||||||
2kcoretech.online
|
|
||||||
2kct.onl
|
|
||||||
2kgames.com
|
|
||||||
2ksports.com
|
|
||||||
2kweb.online
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
3304399.com
|
|
||||||
3304399.net
|
|
||||||
3839.com
|
|
||||||
3839apk.com
|
|
||||||
3839app.com
|
|
||||||
3839app.net
|
|
||||||
3839img.com
|
|
||||||
3839pay.com
|
|
||||||
3839pic.com
|
|
||||||
3839vc.com
|
|
||||||
3839video.com
|
|
||||||
4399.cn
|
|
||||||
4399.com
|
|
||||||
4399.net
|
|
||||||
4399api.com
|
|
||||||
4399api.net
|
|
||||||
4399biule.com
|
|
||||||
4399dmw.com
|
|
||||||
4399er.com
|
|
||||||
4399hdhh.com
|
|
||||||
4399hhh.com
|
|
||||||
4399inc.com
|
|
||||||
4399mail.com
|
|
||||||
4399pk.com
|
|
||||||
4399sj.cn
|
|
||||||
4399sj.com
|
|
||||||
4399swf.com
|
|
||||||
4399wanju.com
|
|
||||||
4399youpai.com
|
|
||||||
4399youxi.com
|
|
||||||
4399yyy.com
|
|
||||||
5054399.com
|
|
||||||
5054399.net
|
|
||||||
5wyxi.com
|
|
||||||
71acg.com
|
|
||||||
71acg.net
|
|
||||||
abdf002.com
|
|
||||||
appeeres.com
|
|
||||||
buke999.com
|
|
||||||
bx1k.com
|
|
||||||
edu4399.com
|
|
||||||
funnycore.com
|
|
||||||
guoping123.com
|
|
||||||
haohaowan.net
|
|
||||||
i3839.com
|
|
||||||
ihykb.com
|
|
||||||
img4399.com
|
|
||||||
mail4399.com
|
|
||||||
maindown4399.com
|
|
||||||
me4399.com
|
|
||||||
my4399.com
|
|
||||||
mysiteres.com
|
|
||||||
nzsiteres.com
|
|
||||||
qq163.com
|
|
||||||
qq163.net
|
|
||||||
tuer123.com
|
|
||||||
wanwan4399.com
|
|
||||||
we4399.com
|
|
||||||
webgame163.com
|
|
||||||
youba.com
|
|
||||||
yxhapi.com
|
|
||||||
yxhhdl.com
|
|
||||||
yxhimg.com
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
4cdn.org
|
|
||||||
4chan.org
|
|
||||||
4channel.org
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
4pcdn.org
|
|
||||||
4plebs.org
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
51job.com
|
|
||||||
51jobcdn.com
|
|
||||||
yingjiesheng.com
|
|
||||||
yingjiesheng.net
|
|
||||||
zhiding.com.cn
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
54647.global
|
|
||||||
54647.io
|
|
||||||
54647.online
|
|
||||||
54647.org
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
include:ganji
|
|
||||||
|
|
||||||
58.com
|
|
||||||
58.com.cn
|
|
||||||
5858.com
|
|
||||||
58antenna.cn
|
|
||||||
58antenna.com
|
|
||||||
58cdn.com.cn
|
|
||||||
58che.com
|
|
||||||
58control.cn
|
|
||||||
58corp.com
|
|
||||||
58dns.org
|
|
||||||
58lovepet.com
|
|
||||||
58uxd.com
|
|
||||||
58v5.cn
|
|
||||||
58xinghuo.cn
|
|
||||||
58xinghuo.com
|
|
||||||
58xueche.com
|
|
||||||
anjuke.com
|
|
||||||
anjukestatic.com
|
|
||||||
chinahr.com
|
|
||||||
chrstatic.com
|
|
||||||
daojia.com
|
|
||||||
diandao.org
|
|
||||||
fang.com
|
|
||||||
sofun.com
|
|
||||||
soufunimg.com
|
|
||||||
jxedt.com
|
|
||||||
jxksw.net
|
|
||||||
roomeet.cn
|
|
||||||
xinchong.com
|
|
||||||
|
|
||||||
# 转转
|
|
||||||
zhuancorp.com
|
|
||||||
zhuaninc.com
|
|
||||||
zhuanspirit.cn
|
|
||||||
zhuanspirit.com
|
|
||||||
zhuanstatic.com
|
|
||||||
zhuanzhuan.com
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
6park.com
|
|
||||||
6parkbbs.com
|
|
||||||
6parknews.com
|
|
||||||
cool18.com
|
|
||||||
popo8.com
|
|
||||||
parkvv.com
|
|
||||||
xwbo.com
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
# 百世
|
|
||||||
# 浙B2-20070189
|
|
||||||
56laile.com
|
|
||||||
800best.cn
|
|
||||||
800best.com
|
|
||||||
800best.com.cn
|
|
||||||
800best.net
|
|
||||||
800bestapi.cn
|
|
||||||
800bestapi.com
|
|
||||||
800bestapp.cn
|
|
||||||
800bestapp.com
|
|
||||||
baishinetwork.com
|
|
||||||
best-inc.com
|
|
||||||
bestcrossborder.com
|
|
||||||
bestdataclub.com
|
|
||||||
bestincapi.cn
|
|
||||||
bestincapi.com
|
|
||||||
bestincapp.cn
|
|
||||||
bestincapp.com
|
|
||||||
linliyz.com
|
|
||||||
qiancangwms.com
|
|
||||||
qianyierp.com
|
|
||||||
t1tms.com
|
|
||||||
t8tms.com
|
|
||||||
t9tms.com
|
|
||||||
tnettms.com
|
|
||||||
wangniuwms.com
|
|
||||||
xinyuanfin.com
|
|
||||||
youyierp.com
|
|
||||||
youyitms.com
|
|
||||||
youyiwms.com
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
928.plus
|
|
||||||
zind.cloud
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
9game.cn
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
9cdn.net
|
|
||||||
9nation.com.au
|
|
||||||
9news.com.au
|
|
||||||
9now.com.au
|
|
||||||
freeviewplus.net.au
|
|
||||||
mi9.com.au
|
|
||||||
mi9cdn.com
|
|
||||||
nine.com.au
|
|
||||||
nineentertainment.com.au
|
|
||||||
nineentertainmentco.com.au
|
|
||||||
ninemediaroom.com.au
|
|
||||||
ninemsn.com.au
|
|
||||||
static9.net.au
|
|
||||||
yourtv.com.au
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
9to5google.com
|
|
||||||
9to5mac.com
|
|
||||||
9to5terminal.com
|
|
||||||
9to5toys.com
|
|
||||||
dronedj.com
|
|
||||||
electrek.co
|
|
||||||
spaceexplored.com
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
# 广州市艾美娱乐设备有限公司
|
|
||||||
# 粤ICP备09210476号
|
|
||||||
aamgame.net
|
|
||||||
aamgame.com
|
|
||||||
aamgame.mobi
|
|
||||||
aamsmart.com
|
|
||||||
|
|
||||||
# 舞推 (E舞成名)
|
|
||||||
singworld.net
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# American Broadcasting Company
|
|
||||||
|
|
||||||
abc-studios.com
|
|
||||||
abc.com
|
|
||||||
edgedatg.com
|
|
||||||
-23
@@ -1,23 +0,0 @@
|
|||||||
abema.io
|
|
||||||
abema.tv
|
|
||||||
abema-tv.com
|
|
||||||
abematv.co.jp
|
|
||||||
adx.promo
|
|
||||||
ameba.jp
|
|
||||||
amebame.com
|
|
||||||
amebaownd.com
|
|
||||||
amebaowndme.com
|
|
||||||
ameblo.jp
|
|
||||||
bucketeer.jp
|
|
||||||
dokusho-ojikan.jp
|
|
||||||
hayabusa.dev
|
|
||||||
hayabusa.io
|
|
||||||
hayabusa.media
|
|
||||||
winticket.jp
|
|
||||||
|
|
||||||
# Abema TV CDN FQDN
|
|
||||||
full:abematv.akamaized.net
|
|
||||||
full:ds-linear-abematv.akamaized.net
|
|
||||||
full:ds-vod-abematv.akamaized.net
|
|
||||||
full:linear-abematv.akamaized.net
|
|
||||||
full:vod-abematv.akamaized.net
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
accuweather.com
|
|
||||||
awxcdn.com
|
|
||||||
-12
@@ -1,12 +0,0 @@
|
|||||||
# Beijing Danmu Network Technology Co., Ltd.
|
|
||||||
|
|
||||||
ac.fun
|
|
||||||
acfun.cn
|
|
||||||
acfun.net
|
|
||||||
acfunchina.cn
|
|
||||||
acfunchina.com
|
|
||||||
acfunchina.net
|
|
||||||
aixifan.com
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
full:apilog-web.acfun.cn @ads
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
acplay.net
|
|
||||||
dandanplay.com
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
actalis.com
|
|
||||||
actalis.it
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
adblockcdn.com
|
|
||||||
getadblock.com
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
adblockplus.org
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
addthis.com
|
|
||||||
addthiscdn.com
|
|
||||||
addthisedge.com
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
addtoany.com
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
adguard.app
|
|
||||||
adguard.com
|
|
||||||
adguard.info
|
|
||||||
adguard.io
|
|
||||||
adguard.org
|
|
||||||
adguardaccount.com
|
|
||||||
adguardcdn.com
|
|
||||||
adtidy.net
|
|
||||||
adtidy.org
|
|
||||||
agrd.eu
|
|
||||||
agrd.io
|
|
||||||
|
|
||||||
# adguard dns
|
|
||||||
adguard-dns.com
|
|
||||||
adguard-dns.io
|
|
||||||
|
|
||||||
# adguard mail
|
|
||||||
adguard-mail.com
|
|
||||||
mask.me
|
|
||||||
|
|
||||||
# adguard vpn
|
|
||||||
adguard-vpn.com
|
|
||||||
adguard-vpn.online
|
|
||||||
adguardvpn.com
|
|
||||||
-90
@@ -1,90 +0,0 @@
|
|||||||
adidas.ae
|
|
||||||
adidas.at
|
|
||||||
adidas.be
|
|
||||||
adidas.bh
|
|
||||||
adidas.ca
|
|
||||||
adidas.ch
|
|
||||||
adidas.cl
|
|
||||||
adidas.cn @cn
|
|
||||||
adidas.co
|
|
||||||
adidas.co.id
|
|
||||||
adidas.co.in
|
|
||||||
adidas.co.kr
|
|
||||||
adidas.co.nz
|
|
||||||
adidas.co.th
|
|
||||||
adidas.co.uk
|
|
||||||
adidas.co.za
|
|
||||||
adidas.com
|
|
||||||
adidas.com.ar
|
|
||||||
adidas.com.au
|
|
||||||
adidas.com.br
|
|
||||||
adidas.com.cn @cn
|
|
||||||
adidas.com.co
|
|
||||||
adidas.com.eg
|
|
||||||
adidas.com.hk
|
|
||||||
adidas.com.my
|
|
||||||
adidas.com.pe
|
|
||||||
adidas.com.ph
|
|
||||||
adidas.com.qa
|
|
||||||
adidas.com.sa
|
|
||||||
adidas.com.sg
|
|
||||||
adidas.com.tr
|
|
||||||
adidas.com.tw
|
|
||||||
adidas.com.vn
|
|
||||||
adidas.cz
|
|
||||||
adidas.de
|
|
||||||
adidas.dk
|
|
||||||
adidas.es
|
|
||||||
adidas.fi
|
|
||||||
adidas.fr
|
|
||||||
adidas.gr
|
|
||||||
adidas.hu
|
|
||||||
adidas.ie
|
|
||||||
adidas.in
|
|
||||||
adidas.it
|
|
||||||
adidas.jp
|
|
||||||
adidas.mx
|
|
||||||
adidas.nl
|
|
||||||
adidas.no
|
|
||||||
adidas.pe
|
|
||||||
adidas.pl
|
|
||||||
adidas.pt
|
|
||||||
adidas.ru
|
|
||||||
adidas.se
|
|
||||||
adidas.sk
|
|
||||||
adidasadmin.com
|
|
||||||
adidasarchive.org
|
|
||||||
adidas-archive.org
|
|
||||||
adidasbadminton.com
|
|
||||||
adidasboxing.com
|
|
||||||
adidascdn.com
|
|
||||||
adidas-group.ca
|
|
||||||
adidas-group.com
|
|
||||||
adidasgymnastics.com
|
|
||||||
adidashockey.com
|
|
||||||
adidasmotorsport.com
|
|
||||||
adidassailing.com
|
|
||||||
adidasspecialtysports.at
|
|
||||||
adidasspecialtysports.be
|
|
||||||
adidasspecialtysports.cn @cn
|
|
||||||
adidasspecialtysports.co.uk
|
|
||||||
adidasspecialtysports.cz
|
|
||||||
adidasspecialtysports.de
|
|
||||||
adidasspecialtysports.dk
|
|
||||||
adidasspecialtysports.es
|
|
||||||
adidasspecialtysports.fi
|
|
||||||
adidasspecialtysports.fr
|
|
||||||
adidasspecialtysports.ie
|
|
||||||
adidasspecialtysports.it
|
|
||||||
adidasspecialtysports.nl
|
|
||||||
adidasspecialtysports.pl
|
|
||||||
adidasspecialtysports.ru
|
|
||||||
adidasspecialtysports.se
|
|
||||||
adidasspecialtysports.sk
|
|
||||||
adidastabletennis.com
|
|
||||||
adidasusnews.com
|
|
||||||
miadidas.com
|
|
||||||
micoach.com
|
|
||||||
miteam.com
|
|
||||||
shopadidas.ca
|
|
||||||
shopadidas.com
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
adjust.com @ads
|
|
||||||
adjust.io @ads
|
|
||||||
adjust.net.in @ads
|
|
||||||
adjust.world @ads
|
|
||||||
-147
@@ -1,147 +0,0 @@
|
|||||||
include:adobe-activation
|
|
||||||
include:typekit
|
|
||||||
|
|
||||||
10xfotolia.com
|
|
||||||
2o7.net
|
|
||||||
acrobat.com
|
|
||||||
adbecrsl.com
|
|
||||||
adobe-aemassets-value.com
|
|
||||||
adobe-audience-finder.com
|
|
||||||
adobe-video-partner-finder.com
|
|
||||||
adobe.com
|
|
||||||
adobe.ly
|
|
||||||
adobeaemcloud.com
|
|
||||||
adobeaemcloud.net
|
|
||||||
adobeawards.com
|
|
||||||
adobecontent.io
|
|
||||||
adobecreativityawards.com
|
|
||||||
adobedc.cn @cn
|
|
||||||
adobedc.net
|
|
||||||
adobedemo.com
|
|
||||||
adobedtm.com
|
|
||||||
adobeexchange.com
|
|
||||||
adobeexperienceawards.com
|
|
||||||
adobegov.com
|
|
||||||
adobehiddentreasures.com
|
|
||||||
adobejanus.com
|
|
||||||
adobeku.com
|
|
||||||
adobelanding.com
|
|
||||||
adobelogin.com
|
|
||||||
adobeoobe.com
|
|
||||||
adobeplatinumclub.com
|
|
||||||
adobeprojectm.com
|
|
||||||
adobesc.com
|
|
||||||
adobesign.com
|
|
||||||
adobesigncdn.com
|
|
||||||
adobespark.com
|
|
||||||
adobess.com
|
|
||||||
adobestock.com
|
|
||||||
adobetag.com
|
|
||||||
adobetarget.com
|
|
||||||
adobetcstrialdvd.com
|
|
||||||
adobetechcomm.com
|
|
||||||
adobetechcommcallback.com
|
|
||||||
adobetechcommdemo.com
|
|
||||||
adobexdplatform.com
|
|
||||||
assetsadobe.com
|
|
||||||
authorxml.com
|
|
||||||
businesscatalyst.com
|
|
||||||
ccnsite.com
|
|
||||||
ccpsx.com
|
|
||||||
demdex.net
|
|
||||||
dollarfotoclub.com
|
|
||||||
dollarphotoclub.com
|
|
||||||
dollarphotosclub.com
|
|
||||||
douwriteright.com
|
|
||||||
echocdn.com
|
|
||||||
echosign.com
|
|
||||||
edgefonts.net
|
|
||||||
enablementadobe.com
|
|
||||||
ftcdn.net
|
|
||||||
gostorego.com
|
|
||||||
imagineecommerce.com
|
|
||||||
macromedia.com
|
|
||||||
magentoliveconference.com
|
|
||||||
marketing-nirvana.com
|
|
||||||
omniture.com
|
|
||||||
omtrdc.net
|
|
||||||
photoshop.com
|
|
||||||
placesdocs.com
|
|
||||||
sundanceignite2016.com
|
|
||||||
worldsecureemail.com
|
|
||||||
worldsecuresystems.com
|
|
||||||
|
|
||||||
# Adobe Dev
|
|
||||||
adobe.io
|
|
||||||
developria.com
|
|
||||||
|
|
||||||
# Behance
|
|
||||||
behance.net
|
|
||||||
s2stagehance.com
|
|
||||||
|
|
||||||
# Creative Cloud
|
|
||||||
adobecc.com
|
|
||||||
adobecce.com
|
|
||||||
adobeccstatic.com
|
|
||||||
creativecloud.com
|
|
||||||
creativesdk.com
|
|
||||||
|
|
||||||
# Fotolia
|
|
||||||
cotolia.com
|
|
||||||
ffotolia.com
|
|
||||||
fiotolia.com
|
|
||||||
foftolia.com
|
|
||||||
fonolia.com
|
|
||||||
fotiolia.com
|
|
||||||
fotoiia.com
|
|
||||||
fotolia-noticias.com
|
|
||||||
fotolia.cc
|
|
||||||
fotolia.com
|
|
||||||
fotolia.tv
|
|
||||||
fotolja.com
|
|
||||||
fptolia.com
|
|
||||||
gfotolia.com
|
|
||||||
motolia.com
|
|
||||||
photolia.net
|
|
||||||
tenbyfotolia.com
|
|
||||||
votolia.com
|
|
||||||
|
|
||||||
# Magento
|
|
||||||
bluefootcms.com
|
|
||||||
mageconf.com
|
|
||||||
mageconf.com.ua
|
|
||||||
magento.com
|
|
||||||
magento.net
|
|
||||||
magentocommerce.com
|
|
||||||
magentomobile.com
|
|
||||||
|
|
||||||
# Marketo
|
|
||||||
marketing-cloud.com
|
|
||||||
marketo.co.uk
|
|
||||||
marketo.com
|
|
||||||
marketo.net
|
|
||||||
marketo.tv
|
|
||||||
marketodesigner.com
|
|
||||||
marketolive.com
|
|
||||||
mktdns.com
|
|
||||||
mkto-c0100.com
|
|
||||||
mktorest.com
|
|
||||||
mktroute.com
|
|
||||||
mobilemarketo.com
|
|
||||||
revenue-performance-management.com
|
|
||||||
toutapp.com
|
|
||||||
|
|
||||||
# Tools
|
|
||||||
compresspdf.new
|
|
||||||
pdf.new
|
|
||||||
sign.new
|
|
||||||
|
|
||||||
# Adobe Dynamic Media Delivery
|
|
||||||
scene7.com
|
|
||||||
|
|
||||||
# Adobe Stats IO
|
|
||||||
adobestats.io
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
advertising.adobe.com @ads
|
|
||||||
tubemogul.com @ads
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
# https://github.com/v2fly/domain-list-community/issues/2394#issuecomment-2632716166
|
|
||||||
# This data source is meant to crack the license-validating of the Adobe software,
|
|
||||||
# which is no longer the interest of this project. One of the maintainers (@IceCodeNew)
|
|
||||||
# decided that this file should be frozen as an act of showing this project has nothing to do with piracy
|
|
||||||
|
|
||||||
# This file is subject to any reasonable deletion request. Till then,
|
|
||||||
# this file will be remained to not disturb existing users.
|
|
||||||
|
|
||||||
# Adobe online activation domains
|
|
||||||
full:3dns-1.adobe.com
|
|
||||||
full:3dns-2.adobe.com
|
|
||||||
full:3dns-3.adobe.com
|
|
||||||
full:3dns-4.adobe.com
|
|
||||||
full:3dns-5.adobe.com
|
|
||||||
full:3dns.adobe.com
|
|
||||||
full:activate-sea.adobe.com
|
|
||||||
full:activate-sjc0.adobe.com
|
|
||||||
full:activate.adobe.com
|
|
||||||
full:activate.wip1.adobe.com
|
|
||||||
full:activate.wip2.adobe.com
|
|
||||||
full:activate.wip3.adobe.com
|
|
||||||
full:activate.wip4.adobe.com
|
|
||||||
full:adobe-dns-1.adobe.com
|
|
||||||
full:adobe-dns-2.adobe.com
|
|
||||||
full:adobe-dns-3.adobe.com
|
|
||||||
full:adobe-dns-4.adobe.com
|
|
||||||
full:adobe-dns.adobe.com
|
|
||||||
full:adobeereg.com
|
|
||||||
full:crl.versign.net
|
|
||||||
full:ereg.adobe.com
|
|
||||||
full:ereg.wip.adobe.com
|
|
||||||
full:ereg.wip1.adobe.com
|
|
||||||
full:ereg.wip2.adobe.com
|
|
||||||
full:ereg.wip3.adobe.com
|
|
||||||
full:ereg.wip4.adobe.com
|
|
||||||
full:hl2rcv.adobe.com
|
|
||||||
full:hlrcv.stage.adobe.com
|
|
||||||
full:lm.licenses.adobe.com
|
|
||||||
full:lmlicenses.wip4.adobe.com
|
|
||||||
full:na1r.services.adobe.com
|
|
||||||
full:ood.opsource.net
|
|
||||||
full:practivate.adobe
|
|
||||||
full:practivate.adobe.com
|
|
||||||
full:practivate.adobe.ipp
|
|
||||||
full:practivate.adobe.newoa
|
|
||||||
full:practivate.adobe.ntp
|
|
||||||
full:wip.adobe.com
|
|
||||||
full:wip1.adobe.com
|
|
||||||
full:wip2.adobe.com
|
|
||||||
full:wip3.adobe.com
|
|
||||||
full:wip4.adobe.com
|
|
||||||
full:wwis-dubc1-vip100.adobe.com
|
|
||||||
full:wwis-dubc1-vip101.adobe.com
|
|
||||||
full:wwis-dubc1-vip102.adobe.com
|
|
||||||
full:wwis-dubc1-vip103.adobe.com
|
|
||||||
full:wwis-dubc1-vip104.adobe.com
|
|
||||||
full:wwis-dubc1-vip105.adobe.com
|
|
||||||
full:wwis-dubc1-vip106.adobe.com
|
|
||||||
full:wwis-dubc1-vip107.adobe.com
|
|
||||||
full:wwis-dubc1-vip108.adobe.com
|
|
||||||
full:wwis-dubc1-vip109.adobe.com
|
|
||||||
full:wwis-dubc1-vip110.adobe.com
|
|
||||||
full:wwis-dubc1-vip111.adobe.com
|
|
||||||
full:wwis-dubc1-vip112.adobe.com
|
|
||||||
full:wwis-dubc1-vip113.adobe.com
|
|
||||||
full:wwis-dubc1-vip114.adobe.com
|
|
||||||
full:wwis-dubc1-vip115.adobe.com
|
|
||||||
full:wwis-dubc1-vip116.adobe.com
|
|
||||||
full:wwis-dubc1-vip117.adobe.com
|
|
||||||
full:wwis-dubc1-vip118.adobe.com
|
|
||||||
full:wwis-dubc1-vip119.adobe.com
|
|
||||||
full:wwis-dubc1-vip120.adobe.com
|
|
||||||
full:wwis-dubc1-vip121.adobe.com
|
|
||||||
full:wwis-dubc1-vip122.adobe.com
|
|
||||||
full:wwis-dubc1-vip123.adobe.com
|
|
||||||
full:wwis-dubc1-vip124.adobe.com
|
|
||||||
full:wwis-dubc1-vip125.adobe.com
|
|
||||||
full:wwis-dubc1-vip30.adobe.com
|
|
||||||
full:wwis-dubc1-vip31.adobe.com
|
|
||||||
full:wwis-dubc1-vip32.adobe.com
|
|
||||||
full:wwis-dubc1-vip33.adobe.com
|
|
||||||
full:wwis-dubc1-vip34.adobe.com
|
|
||||||
full:wwis-dubc1-vip35.adobe.com
|
|
||||||
full:wwis-dubc1-vip36.adobe.com
|
|
||||||
full:wwis-dubc1-vip37.adobe.com
|
|
||||||
full:wwis-dubc1-vip38.adobe.com
|
|
||||||
full:wwis-dubc1-vip39.adobe.com
|
|
||||||
full:wwis-dubc1-vip40.adobe.com
|
|
||||||
full:wwis-dubc1-vip41.adobe.com
|
|
||||||
full:wwis-dubc1-vip42.adobe.com
|
|
||||||
full:wwis-dubc1-vip43.adobe.com
|
|
||||||
full:wwis-dubc1-vip44.adobe.com
|
|
||||||
full:wwis-dubc1-vip45.adobe.com
|
|
||||||
full:wwis-dubc1-vip46.adobe.com
|
|
||||||
full:wwis-dubc1-vip47.adobe.com
|
|
||||||
full:wwis-dubc1-vip48.adobe.com
|
|
||||||
full:wwis-dubc1-vip49.adobe.com
|
|
||||||
full:wwis-dubc1-vip50.adobe.com
|
|
||||||
full:wwis-dubc1-vip51.adobe.com
|
|
||||||
full:wwis-dubc1-vip52.adobe.com
|
|
||||||
full:wwis-dubc1-vip53.adobe.com
|
|
||||||
full:wwis-dubc1-vip54.adobe.com
|
|
||||||
full:wwis-dubc1-vip55.adobe.com
|
|
||||||
full:wwis-dubc1-vip56.adobe.com
|
|
||||||
full:wwis-dubc1-vip57.adobe.com
|
|
||||||
full:wwis-dubc1-vip58.adobe.com
|
|
||||||
full:wwis-dubc1-vip59.adobe.com
|
|
||||||
full:wwis-dubc1-vip60.adobe.com
|
|
||||||
full:wwis-dubc1-vip61.adobe.com
|
|
||||||
full:wwis-dubc1-vip62.adobe.com
|
|
||||||
full:wwis-dubc1-vip63.adobe.com
|
|
||||||
full:wwis-dubc1-vip64.adobe.com
|
|
||||||
full:wwis-dubc1-vip65.adobe.com
|
|
||||||
full:wwis-dubc1-vip66.adobe.com
|
|
||||||
full:wwis-dubc1-vip67.adobe.com
|
|
||||||
full:wwis-dubc1-vip68.adobe.com
|
|
||||||
full:wwis-dubc1-vip69.adobe.com
|
|
||||||
full:wwis-dubc1-vip70.adobe.com
|
|
||||||
full:wwis-dubc1-vip71.adobe.com
|
|
||||||
full:wwis-dubc1-vip72.adobe.com
|
|
||||||
full:wwis-dubc1-vip73.adobe.com
|
|
||||||
full:wwis-dubc1-vip74.adobe.com
|
|
||||||
full:wwis-dubc1-vip75.adobe.com
|
|
||||||
full:wwis-dubc1-vip76.adobe.com
|
|
||||||
full:wwis-dubc1-vip77.adobe.com
|
|
||||||
full:wwis-dubc1-vip78.adobe.com
|
|
||||||
full:wwis-dubc1-vip79.adobe.com
|
|
||||||
full:wwis-dubc1-vip80.adobe.com
|
|
||||||
full:wwis-dubc1-vip81.adobe.com
|
|
||||||
full:wwis-dubc1-vip82.adobe.com
|
|
||||||
full:wwis-dubc1-vip83.adobe.com
|
|
||||||
full:wwis-dubc1-vip84.adobe.com
|
|
||||||
full:wwis-dubc1-vip85.adobe.com
|
|
||||||
full:wwis-dubc1-vip86.adobe.com
|
|
||||||
full:wwis-dubc1-vip87.adobe.com
|
|
||||||
full:wwis-dubc1-vip88.adobe.com
|
|
||||||
full:wwis-dubc1-vip89.adobe.com
|
|
||||||
full:wwis-dubc1-vip90.adobe.com
|
|
||||||
full:wwis-dubc1-vip91.adobe.com
|
|
||||||
full:wwis-dubc1-vip92.adobe.com
|
|
||||||
full:wwis-dubc1-vip93.adobe.com
|
|
||||||
full:wwis-dubc1-vip94.adobe.com
|
|
||||||
full:wwis-dubc1-vip95.adobe.com
|
|
||||||
full:wwis-dubc1-vip96.adobe.com
|
|
||||||
full:wwis-dubc1-vip97.adobe.com
|
|
||||||
full:wwis-dubc1-vip98.adobe.com
|
|
||||||
full:wwis-dubc1-vip99.adobe.com
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
aerogard.com.au
|
|
||||||
aerogard.com.cn @cn
|
|
||||||
aerogardcn.com
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
afdian.com
|
|
||||||
afdian.net
|
|
||||||
afdiancdn.com
|
|
||||||
ifdian.net
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
1infra.net
|
|
||||||
1password.ca
|
|
||||||
1password.co
|
|
||||||
1password.com
|
|
||||||
1password.community
|
|
||||||
1password.eu
|
|
||||||
1password.io
|
|
||||||
1passwordservices.com
|
|
||||||
1passwordusercontent.ca
|
|
||||||
1passwordusercontent.com
|
|
||||||
1passwordusercontent.eu
|
|
||||||
agilebits.com
|
|
||||||
passage.id
|
|
||||||
|
|
||||||
full:1password.drift.click
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
agora.io
|
|
||||||
agoraio.cn
|
|
||||||
agoralab.co
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
aiqicha.baidu.com
|
|
||||||
aiqicha.cn
|
|
||||||
aiqicha.com
|
|
||||||
-86
@@ -1,86 +0,0 @@
|
|||||||
# https://crt.sh/?id=23815053677
|
|
||||||
# https://crt.sh/?id=24021548393
|
|
||||||
# https://crt.sh/?id=6327797853
|
|
||||||
abb.travel
|
|
||||||
accomable.com
|
|
||||||
airbnb.ae
|
|
||||||
airbnb.al
|
|
||||||
airbnb.am
|
|
||||||
airbnb.at
|
|
||||||
airbnb.az
|
|
||||||
airbnb.ba
|
|
||||||
airbnb.be
|
|
||||||
airbnb.ca
|
|
||||||
airbnb.cat
|
|
||||||
airbnb.ch
|
|
||||||
airbnb.cl
|
|
||||||
airbnb.cn
|
|
||||||
airbnb.co.cr
|
|
||||||
airbnb.co.id
|
|
||||||
airbnb.co.il
|
|
||||||
airbnb.co.in
|
|
||||||
airbnb.co.kr
|
|
||||||
airbnb.co.nz
|
|
||||||
airbnb.co.uk
|
|
||||||
airbnb.co.ve
|
|
||||||
airbnb.co.za
|
|
||||||
airbnb.com
|
|
||||||
airbnb.com.ar
|
|
||||||
airbnb.com.au
|
|
||||||
airbnb.com.bo
|
|
||||||
airbnb.com.br
|
|
||||||
airbnb.com.bz
|
|
||||||
airbnb.com.co
|
|
||||||
airbnb.com.ec
|
|
||||||
airbnb.com.ee
|
|
||||||
airbnb.com.gt
|
|
||||||
airbnb.com.hk
|
|
||||||
airbnb.com.hn
|
|
||||||
airbnb.com.hr
|
|
||||||
airbnb.com.kh
|
|
||||||
airbnb.com.mt
|
|
||||||
airbnb.com.my
|
|
||||||
airbnb.com.ni
|
|
||||||
airbnb.com.pa
|
|
||||||
airbnb.com.pe
|
|
||||||
airbnb.com.ph
|
|
||||||
airbnb.com.py
|
|
||||||
airbnb.com.ro
|
|
||||||
airbnb.com.sg
|
|
||||||
airbnb.com.sv
|
|
||||||
airbnb.com.tr
|
|
||||||
airbnb.com.tw
|
|
||||||
airbnb.com.ua
|
|
||||||
airbnb.com.vn
|
|
||||||
airbnb.cz
|
|
||||||
airbnb.de
|
|
||||||
airbnb.dk
|
|
||||||
airbnb.es
|
|
||||||
airbnb.fi
|
|
||||||
airbnb.fr
|
|
||||||
airbnb.gr
|
|
||||||
airbnb.gy
|
|
||||||
airbnb.hu
|
|
||||||
airbnb.ie
|
|
||||||
airbnb.is
|
|
||||||
airbnb.it
|
|
||||||
airbnb.jp
|
|
||||||
airbnb.la
|
|
||||||
airbnb.lt
|
|
||||||
airbnb.lu
|
|
||||||
airbnb.lv
|
|
||||||
airbnb.me
|
|
||||||
airbnb.mx
|
|
||||||
airbnb.nl
|
|
||||||
airbnb.no
|
|
||||||
airbnb.org
|
|
||||||
airbnb.pl
|
|
||||||
airbnb.pt
|
|
||||||
airbnb.rs
|
|
||||||
airbnb.ru
|
|
||||||
airbnb.se
|
|
||||||
airbnb.si
|
|
||||||
airbnb.tools
|
|
||||||
airbnb.travel
|
|
||||||
muscache.com
|
|
||||||
vamo.com
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
airchina.com.cn # 中国国际航空
|
|
||||||
airchinacargo.com # 中国国际货运航空
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
airwick.at
|
|
||||||
airwick.be
|
|
||||||
airwick.ca
|
|
||||||
airwick.ch
|
|
||||||
airwick.cl
|
|
||||||
airwick.co.in
|
|
||||||
airwick.co.nz
|
|
||||||
airwick.co.uk
|
|
||||||
airwick.co.za
|
|
||||||
airwick.com
|
|
||||||
airwick.com.au
|
|
||||||
airwick.com.br
|
|
||||||
airwick.com.cn @cn
|
|
||||||
airwick.com.mx
|
|
||||||
airwick.com.tr
|
|
||||||
airwick.cz
|
|
||||||
airwick.de
|
|
||||||
airwick.dk
|
|
||||||
airwick.es
|
|
||||||
airwick.fi
|
|
||||||
airwick.fr
|
|
||||||
airwick.hr
|
|
||||||
airwick.hu
|
|
||||||
airwick.ie
|
|
||||||
airwick.it
|
|
||||||
airwick.jp
|
|
||||||
airwick.net
|
|
||||||
airwick.nl
|
|
||||||
airwick.no
|
|
||||||
airwick.pl
|
|
||||||
airwick.pt
|
|
||||||
airwick.ro
|
|
||||||
airwick.ru
|
|
||||||
airwick.se
|
|
||||||
airwick.si
|
|
||||||
airwick.sk
|
|
||||||
airwick.tv
|
|
||||||
airwick.us
|
|
||||||
airwickarabia.com
|
|
||||||
vipoo.es
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
1tyy.cn
|
|
||||||
bbdc.cn
|
|
||||||
beingfine.cn
|
|
||||||
beingfine.com.cn
|
|
||||||
bubei.com.cn
|
|
||||||
coolab.top
|
|
||||||
is-cool.cn
|
|
||||||
is-cool.com.cn
|
|
||||||
langeasy.cn
|
|
||||||
langeasy.com.cn
|
|
||||||
learnywhere.cn
|
|
||||||
learnywhere.com.cn
|
|
||||||
qlisten.cn
|
|
||||||
qtyy.cn
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
aixcoder.com
|
|
||||||
nnthink.com
|
|
||||||
-81
@@ -1,81 +0,0 @@
|
|||||||
accdn.com.cn @cn
|
|
||||||
ak1.net
|
|
||||||
aka-ai.com
|
|
||||||
aka-ai.net
|
|
||||||
akacrypto.net
|
|
||||||
akadeem.net
|
|
||||||
akadns.com
|
|
||||||
akadns.net
|
|
||||||
akadns6.net
|
|
||||||
akadns88.net @cn
|
|
||||||
akadns99.net @cn
|
|
||||||
akaeai.com
|
|
||||||
akafms.net
|
|
||||||
akagtm.org
|
|
||||||
akahost.net
|
|
||||||
akaint.net
|
|
||||||
akam.net
|
|
||||||
akamaa.com
|
|
||||||
akamah.com
|
|
||||||
akamak.com
|
|
||||||
akamam.com
|
|
||||||
akamai-access.com
|
|
||||||
akamai-access.net
|
|
||||||
akamai-cdn.com
|
|
||||||
akamai-platform-internal.net
|
|
||||||
akamai-platform-staging.com
|
|
||||||
akamai-platform.net
|
|
||||||
akamai-regression.net
|
|
||||||
akamai-staging.net
|
|
||||||
akamai-sucks.net
|
|
||||||
akamai-thailand.com
|
|
||||||
akamai-thailand.net
|
|
||||||
akamai-trials.com
|
|
||||||
akamai.co.kr
|
|
||||||
akamai.com @cn
|
|
||||||
akamai.net
|
|
||||||
akamaiedge.net
|
|
||||||
akamaientrypoint.net
|
|
||||||
akamaietpcnctest.com
|
|
||||||
akamaietpcompromisedcnctest.com
|
|
||||||
akamaietpcompromisedmalwaretest.com
|
|
||||||
akamaietpmalwaretest.com
|
|
||||||
akamaietpphishingtest.com
|
|
||||||
akamaihd-staging.net
|
|
||||||
akamaihd.com
|
|
||||||
akamaihd.net
|
|
||||||
akamaimagicmath.net
|
|
||||||
akamainewzealand.com
|
|
||||||
akamaiphillipines.com
|
|
||||||
akamaiphillipines.net
|
|
||||||
akamaitech.com
|
|
||||||
akamaitech.net
|
|
||||||
akamaitechnologies.com
|
|
||||||
akamaitechnologies.net
|
|
||||||
akamaisingapore.net
|
|
||||||
akamaistream.net
|
|
||||||
akamaized-staging.net
|
|
||||||
akamaized.net
|
|
||||||
akamaizercentral.com
|
|
||||||
akamci.com
|
|
||||||
akami.com
|
|
||||||
akami.net
|
|
||||||
akamii.com
|
|
||||||
akamqi.com
|
|
||||||
akastream.com
|
|
||||||
akastream.net
|
|
||||||
akatns.net
|
|
||||||
akcdn.com.cn @cn
|
|
||||||
akstat.io
|
|
||||||
aptdn.net @cn
|
|
||||||
edgekey.net
|
|
||||||
edgekey88.net @cn
|
|
||||||
edgesuite.net
|
|
||||||
iamakamai.com
|
|
||||||
iamakamai.net
|
|
||||||
janrain.biz @cn
|
|
||||||
janrainservices.com @cn
|
|
||||||
skycdn.com.cn @cn
|
|
||||||
soasta-dswb.com
|
|
||||||
srtcdn.net
|
|
||||||
tl88.net @cn
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
akikocorp.cn
|
|
||||||
emoriko.com
|
|
||||||
sukasuka.cn
|
|
||||||
-260
@@ -1,260 +0,0 @@
|
|||||||
# All .alibaba domains
|
|
||||||
alibaba
|
|
||||||
|
|
||||||
# All .alipay domains
|
|
||||||
alipay
|
|
||||||
|
|
||||||
# All .taobao domains
|
|
||||||
taobao
|
|
||||||
|
|
||||||
# All .tmall domains
|
|
||||||
tmall
|
|
||||||
|
|
||||||
include:9game
|
|
||||||
include:alibabacloud
|
|
||||||
include:aliyun
|
|
||||||
include:aliyun-drive
|
|
||||||
include:amap
|
|
||||||
include:cainiao
|
|
||||||
include:dingtalk
|
|
||||||
include:eleme
|
|
||||||
include:teambition
|
|
||||||
include:uc
|
|
||||||
include:umeng
|
|
||||||
include:youku
|
|
||||||
|
|
||||||
56che.com
|
|
||||||
95095.com
|
|
||||||
ali-health.com
|
|
||||||
aliapp.org
|
|
||||||
alibaba-inc.com
|
|
||||||
alibaba.com
|
|
||||||
alibabacapital.com
|
|
||||||
alibabachengdun.com
|
|
||||||
alibabacorp.com
|
|
||||||
alibabadoctor.com
|
|
||||||
alibabafuturehotel.com
|
|
||||||
alibabagroup.com
|
|
||||||
alibabaplanet.com
|
|
||||||
alibabaued.com
|
|
||||||
alibabausercontent.com
|
|
||||||
alifanyi.com
|
|
||||||
aligames.com
|
|
||||||
alihealth.com.cn
|
|
||||||
alihealth.hk @!cn
|
|
||||||
aliimg.com
|
|
||||||
alikmd.com
|
|
||||||
alimama.cn
|
|
||||||
alimama.com
|
|
||||||
alimebot.com
|
|
||||||
alimei.com
|
|
||||||
alimmdn.com
|
|
||||||
alios.cn
|
|
||||||
alipay.cn
|
|
||||||
alipay.com
|
|
||||||
alipay.com.cn
|
|
||||||
alipaydns.com
|
|
||||||
alipaylog.com
|
|
||||||
alipayobjects.com
|
|
||||||
aliplus.com
|
|
||||||
aliresearch.com
|
|
||||||
alisoft.com
|
|
||||||
alisports.com
|
|
||||||
alitianji.com
|
|
||||||
aliunicorn.com
|
|
||||||
aliway.com
|
|
||||||
aliwork.com
|
|
||||||
alixiaomi.com
|
|
||||||
alizhaopin.com
|
|
||||||
alyms.cn
|
|
||||||
asczwa.com
|
|
||||||
asczxcefsv.com
|
|
||||||
asmlink.cn
|
|
||||||
atatech.org
|
|
||||||
b2byao.com
|
|
||||||
bazai.com
|
|
||||||
bcvbw.com
|
|
||||||
cheng.xin
|
|
||||||
cloudeagle.cn
|
|
||||||
damai.cn
|
|
||||||
dayu.com
|
|
||||||
dfkhgj.com
|
|
||||||
doctoryou.ai
|
|
||||||
doctoryou.cn
|
|
||||||
dongting.com
|
|
||||||
dratio.com
|
|
||||||
emas-poc.com
|
|
||||||
gongyi.xin
|
|
||||||
ialicdn.com
|
|
||||||
iconfont.cn
|
|
||||||
ics.design
|
|
||||||
imgcook.com
|
|
||||||
jhgtgb.com
|
|
||||||
kanbox.com
|
|
||||||
lazada.com
|
|
||||||
liangxinyao.com
|
|
||||||
m-now.cn
|
|
||||||
maitix.com
|
|
||||||
mdeer.com
|
|
||||||
mei.com
|
|
||||||
miaostreet.com
|
|
||||||
mshare.cc
|
|
||||||
nic.xin
|
|
||||||
philanthropy.xin
|
|
||||||
phpwind.com
|
|
||||||
phpwind.net
|
|
||||||
qingtingtrip.com
|
|
||||||
rexpos.cn
|
|
||||||
saee.org.cn
|
|
||||||
shenjing.com
|
|
||||||
shuqi.com
|
|
||||||
shuqireader.com
|
|
||||||
sparenode.com
|
|
||||||
supet.com
|
|
||||||
tanx.com
|
|
||||||
ttpod.com
|
|
||||||
xin.xin
|
|
||||||
xinlingshou.cn
|
|
||||||
yowhale.com
|
|
||||||
yunos-inc.com
|
|
||||||
yunos.com
|
|
||||||
yushanfang.com
|
|
||||||
zuodao.com
|
|
||||||
|
|
||||||
# AliExpress
|
|
||||||
ae-rus.net @!cn
|
|
||||||
aedns.ru @!cn
|
|
||||||
aeplatform.ru @!cn
|
|
||||||
aestatic.net @!cn
|
|
||||||
aliexpress.com
|
|
||||||
aliexpress.ru @!cn
|
|
||||||
aliexpress-media.com
|
|
||||||
|
|
||||||
# Alipay+
|
|
||||||
alipayplus.com
|
|
||||||
|
|
||||||
# AlipayHK
|
|
||||||
alipay.hk @!cn
|
|
||||||
|
|
||||||
# AlipayMO
|
|
||||||
alipaymo.com @!cn
|
|
||||||
|
|
||||||
# 盒马
|
|
||||||
freshhema.com
|
|
||||||
freshippo.com
|
|
||||||
hemamax.com
|
|
||||||
hemaos.com
|
|
||||||
hemashare.cn
|
|
||||||
shyhhema.com
|
|
||||||
|
|
||||||
# 蚂蚁财富
|
|
||||||
antfortune.com
|
|
||||||
|
|
||||||
# 蚂蚁基金
|
|
||||||
fund123.cn
|
|
||||||
|
|
||||||
# 蚂蚁集团
|
|
||||||
antfin.com
|
|
||||||
antgroup.com
|
|
||||||
antgroup-inc.cn
|
|
||||||
|
|
||||||
# 神马搜索
|
|
||||||
sm.cn
|
|
||||||
|
|
||||||
# 淘宝
|
|
||||||
1688.com
|
|
||||||
etao.com
|
|
||||||
juhuasuan.com
|
|
||||||
lingshoujia.com
|
|
||||||
mashort.cn
|
|
||||||
pailitao.com
|
|
||||||
taobao.com
|
|
||||||
taobao.net
|
|
||||||
taobao.org
|
|
||||||
taobaocdn.com
|
|
||||||
taobizhong.com
|
|
||||||
taopiaopiao.com
|
|
||||||
tb.cn
|
|
||||||
tbcache.com
|
|
||||||
tbcdn.cn
|
|
||||||
tburl.in
|
|
||||||
tmall.com
|
|
||||||
tmall.ru @!cn
|
|
||||||
tmalltv.com
|
|
||||||
tmjl.ai
|
|
||||||
|
|
||||||
# 夸克
|
|
||||||
cueme.cn
|
|
||||||
myquark.cn
|
|
||||||
quark.cn
|
|
||||||
|
|
||||||
# 飞猪
|
|
||||||
alitrip.com
|
|
||||||
feizhu.cn
|
|
||||||
feizhu.com
|
|
||||||
fliggy.com
|
|
||||||
fliggy.hk @!cn
|
|
||||||
iuynfg.com
|
|
||||||
|
|
||||||
# 虾米音乐
|
|
||||||
xiami.com
|
|
||||||
xiami.fm
|
|
||||||
xiami.net
|
|
||||||
|
|
||||||
# 口碑
|
|
||||||
koubei.com
|
|
||||||
|
|
||||||
# 豌豆荚
|
|
||||||
wandoujia.com
|
|
||||||
wdjimg.com
|
|
||||||
|
|
||||||
# PP助手
|
|
||||||
25pp.com
|
|
||||||
|
|
||||||
# 吱声网
|
|
||||||
zhisheng.com
|
|
||||||
|
|
||||||
# npmmirror 中国镜像站
|
|
||||||
npmmirror.com
|
|
||||||
|
|
||||||
# 闲鱼
|
|
||||||
goofish.com
|
|
||||||
|
|
||||||
# 考拉
|
|
||||||
kaola.com
|
|
||||||
kaolacdn.com
|
|
||||||
|
|
||||||
# 瓴羊
|
|
||||||
lydaas.cn
|
|
||||||
lydaas.com
|
|
||||||
lydaas.com.cn
|
|
||||||
lydaas.net
|
|
||||||
lydass.cn
|
|
||||||
lydass.com.cn
|
|
||||||
lydass.net
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
a.alimama.cn @ads
|
|
||||||
adash-c.m.taobao.com @ads
|
|
||||||
adash-c.ut.taobao.com @ads
|
|
||||||
adash.m.taobao.com @ads
|
|
||||||
adashbc.m.taobao.com @ads
|
|
||||||
adashbc.ut.taobao.com @ads
|
|
||||||
adashx.m.taobao.com @ads
|
|
||||||
adashx4ae.ut.taobao.com @ads
|
|
||||||
adashx4yt.m.taobao.com @ads
|
|
||||||
adashxgc.ut.taobao.com @ads
|
|
||||||
adsh.m.taobao.com @ads
|
|
||||||
adtrack.quark.cn @ads
|
|
||||||
c-adash.m.taobao.com @ads
|
|
||||||
fourier.taobao.com @ads
|
|
||||||
g.click.taobao.com @ads
|
|
||||||
h-adashx.ut.taobao.com @ads
|
|
||||||
h-adashx4yt.ut.taobao.com @ads
|
|
||||||
m-adash.m.taobao.com @ads
|
|
||||||
marketing.alibaba.com @ads
|
|
||||||
nbsdk-baichuan.taobao.com @ads
|
|
||||||
retcode.taobao.com @ads
|
|
||||||
tns.simba.taobao.com @ads
|
|
||||||
track.lc.quark.cn @ads
|
|
||||||
v6-adashx.ut.taobao.com @ads
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
alibabacloud.co.in @!cn
|
|
||||||
alibabacloud.com @!cn
|
|
||||||
alibabacloud.com.au @!cn
|
|
||||||
alibabacloud.com.hk @!cn
|
|
||||||
alibabacloud.com.my @!cn
|
|
||||||
alibabacloud.com.sg @!cn
|
|
||||||
alibabacloud.com.tw @!cn
|
|
||||||
alicloud.com @!cn
|
|
||||||
-80
@@ -1,80 +0,0 @@
|
|||||||
alibabadns.com
|
|
||||||
alicdn.com
|
|
||||||
alicloudapi.com
|
|
||||||
alidayu.com
|
|
||||||
alidns.com
|
|
||||||
aligfwaf.com
|
|
||||||
alikunlun.com
|
|
||||||
alikunlun.net
|
|
||||||
aliyun-inc.com
|
|
||||||
aliyun-iot-share.com
|
|
||||||
aliyun.com
|
|
||||||
aliyuncdn.com
|
|
||||||
aliyuncdn.net
|
|
||||||
aliyunfile.com
|
|
||||||
aliyunpds.com
|
|
||||||
cdngslb.com
|
|
||||||
fcapp.run
|
|
||||||
hichina.com
|
|
||||||
ica-alliance.org
|
|
||||||
kunlunaq.com
|
|
||||||
kunlunar.com
|
|
||||||
kunlunca.com
|
|
||||||
kunluncan.com
|
|
||||||
kunlunea.com
|
|
||||||
kunlungem.com
|
|
||||||
kunlungr.com
|
|
||||||
kunlunhuf.com
|
|
||||||
kunlunle.com
|
|
||||||
kunlunli.com
|
|
||||||
kunlunno.com
|
|
||||||
kunlunpi.com
|
|
||||||
kunlunra.com
|
|
||||||
kunlunsa.com
|
|
||||||
kunlunsc.com
|
|
||||||
kunlunsl.com
|
|
||||||
kunlunso.com
|
|
||||||
kunlunta.com
|
|
||||||
kunlunvi.com
|
|
||||||
kunlunwe.com
|
|
||||||
mxhichina.com
|
|
||||||
myalicdn.com
|
|
||||||
|
|
||||||
oss-ap-northeast-1.aliyuncs.com @!cn
|
|
||||||
oss-ap-northeast-2.aliyuncs.com @!cn
|
|
||||||
oss-ap-south-1.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-1.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-2.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-3.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-5.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-6.aliyuncs.com @!cn
|
|
||||||
oss-ap-southeast-7.aliyuncs.com @!cn
|
|
||||||
oss-cn-beijing.aliyuncs.com
|
|
||||||
oss-cn-chengdu.aliyuncs.com
|
|
||||||
oss-cn-guangzhou.aliyuncs.com
|
|
||||||
oss-cn-hangzhou.aliyuncs.com
|
|
||||||
oss-cn-heyuan.aliyuncs.com
|
|
||||||
oss-cn-hongkong.aliyuncs.com @!cn
|
|
||||||
oss-cn-huhehaote.aliyuncs.com
|
|
||||||
oss-cn-nanjing.aliyuncs.com
|
|
||||||
oss-cn-qingdao.aliyuncs.com
|
|
||||||
oss-cn-shanghai.aliyuncs.com
|
|
||||||
oss-cn-shenzhen.aliyuncs.com
|
|
||||||
oss-cn-wulanchabu.aliyuncs.com
|
|
||||||
oss-cn-zhangjiakou.aliyuncs.com
|
|
||||||
oss-eu-central-1.aliyuncs.com @!cn
|
|
||||||
oss-eu-west-1.aliyuncs.com @!cn
|
|
||||||
oss-me-east-1.aliyuncs.com @!cn
|
|
||||||
oss-us-east-1.aliyuncs.com @!cn
|
|
||||||
oss-us-west-1.aliyuncs.com @!cn
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
acjs.aliyun.com @ads
|
|
||||||
adash-emas.cn-hangzhou.aliyuncs.com @ads
|
|
||||||
adash.man.aliyuncs.com @ads
|
|
||||||
alimama.alicdn.com @ads
|
|
||||||
atanx.alicdn.com @ads
|
|
||||||
atanx2.alicdn.com @ads
|
|
||||||
baichuan-sdk.alicdn.com @ads
|
|
||||||
nbsdk-baichuan.alicdn.com @ads
|
|
||||||
tce.alicdn.com @ads
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
alicloudccp.com
|
|
||||||
alipan.com
|
|
||||||
aliyundrive.cloud
|
|
||||||
aliyundrive.com
|
|
||||||
aliyundrive.net
|
|
||||||
yunpan.aliyun.com
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
ajplus.net
|
|
||||||
aljazeera.com
|
|
||||||
aljazeera.net
|
|
||||||
palestineremix.com
|
|
||||||
sarajevopodopsadom.com
|
|
||||||
srebrenica360.com
|
|
||||||
syhacked.com
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
a-map.cn
|
|
||||||
a-map.co
|
|
||||||
a-map.link
|
|
||||||
a-map.vip
|
|
||||||
acloudrender.com
|
|
||||||
amap.com
|
|
||||||
amapauto.com
|
|
||||||
anav.com
|
|
||||||
autonavi.com
|
|
||||||
gaode.com
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
adashx.ut.amap.com @ads
|
|
||||||
dualstack-logs.amap.com @ads
|
|
||||||
logs.amap.com @ads
|
|
||||||
optimus-ads.amap.com @ads
|
|
||||||
v6-adashx.ut.amap.com @ads
|
|
||||||
-140
@@ -1,140 +0,0 @@
|
|||||||
include:amazontrust
|
|
||||||
include:aws
|
|
||||||
include:imdb
|
|
||||||
include:kindle
|
|
||||||
include:primevideo
|
|
||||||
include:wholefoodsmarket
|
|
||||||
|
|
||||||
# All .amazon domains
|
|
||||||
amazon
|
|
||||||
|
|
||||||
# All .アマゾン domains
|
|
||||||
xn--cckwcxetd
|
|
||||||
|
|
||||||
# All .亚马逊 domains
|
|
||||||
xn--jlq480n2rg
|
|
||||||
|
|
||||||
# All .yamaxun domains
|
|
||||||
yamaxun
|
|
||||||
|
|
||||||
# All .zappos domains
|
|
||||||
zappos
|
|
||||||
|
|
||||||
a2z.com
|
|
||||||
aboutamazon.cn @cn
|
|
||||||
aboutamazon.co.uk
|
|
||||||
aboutamazon.com
|
|
||||||
aboutamazon.com.au
|
|
||||||
aboutamazon.de
|
|
||||||
aboutamazon.es
|
|
||||||
aboutamazon.eu
|
|
||||||
aboutamazon.fr
|
|
||||||
aboutamazon.in
|
|
||||||
aboutamazon.it
|
|
||||||
aboutamazon.jp
|
|
||||||
aboutamazon.pl
|
|
||||||
aboutamazon.sg
|
|
||||||
alexafund.cn @cn
|
|
||||||
alexafund.com.cn @cn
|
|
||||||
amaaozn.com
|
|
||||||
amazon-fashions.com
|
|
||||||
amazon-jp-recruiting.com
|
|
||||||
amazon-lantern.com
|
|
||||||
amazon-launchpad.com
|
|
||||||
amazon.ae
|
|
||||||
amazon.ca
|
|
||||||
amazon.cl
|
|
||||||
amazon.cn @cn
|
|
||||||
amazon.co.jp
|
|
||||||
amazon.co.uk
|
|
||||||
amazon.co.za
|
|
||||||
amazon.com
|
|
||||||
amazon.com.au
|
|
||||||
amazon.com.be
|
|
||||||
amazon.com.br
|
|
||||||
amazon.com.co
|
|
||||||
amazon.com.mx
|
|
||||||
amazon.com.ng
|
|
||||||
amazon.com.tr
|
|
||||||
amazon.de
|
|
||||||
amazon.dev
|
|
||||||
amazon.eg
|
|
||||||
amazon.es
|
|
||||||
amazon.fr
|
|
||||||
amazon.ie
|
|
||||||
amazon.in
|
|
||||||
amazon.it
|
|
||||||
amazon.jobs
|
|
||||||
amazon.jp
|
|
||||||
amazon.lu
|
|
||||||
amazon.nl
|
|
||||||
amazon.pl
|
|
||||||
amazon.red
|
|
||||||
amazon.sa
|
|
||||||
amazon.se
|
|
||||||
amazon.sg
|
|
||||||
amazonalexavoxcon.com
|
|
||||||
amazonauthorinsights.com
|
|
||||||
amazonbusiness.cn @cn
|
|
||||||
amazonbusiness.com.cn @cn
|
|
||||||
amazonbusiness.org
|
|
||||||
amazonbusinessblog.com
|
|
||||||
amazonchoice.cn @cn
|
|
||||||
amazonchoice.com.cn @cn
|
|
||||||
amazonchoices.cn @cn
|
|
||||||
amazonchoices.com.cn @cn
|
|
||||||
amazondevicesupport.com
|
|
||||||
amazonfctours.com
|
|
||||||
amazonianblog.com
|
|
||||||
amazonimages.com
|
|
||||||
amazoninspire.cn @cn
|
|
||||||
amazoninspire.com.cn @cn
|
|
||||||
amazonlaunchpad.cn @cn
|
|
||||||
amazonlaunchpad.com
|
|
||||||
amazonlaunchpad.com.cn @cn
|
|
||||||
amazonlending.com.cn @cn
|
|
||||||
amazonliterarypartnership.com
|
|
||||||
amazonlumberyard.wang
|
|
||||||
amazonnow.cn @cn
|
|
||||||
amazonnow.com.cn @cn
|
|
||||||
amazonpay.com
|
|
||||||
amazonpay.in
|
|
||||||
amazonsdi.com
|
|
||||||
amazonstudiosguilds.com
|
|
||||||
amazonvideodirect.com
|
|
||||||
amzn.asia
|
|
||||||
amzn.com
|
|
||||||
amzn.to
|
|
||||||
amznl.com
|
|
||||||
assoc-amazon.cn @cn
|
|
||||||
associates-amazon.com
|
|
||||||
gameon-masters.com
|
|
||||||
gdansk-amazon.com
|
|
||||||
images-amazon.com
|
|
||||||
media-amazon.com
|
|
||||||
primeday.cn @cn
|
|
||||||
primeday.com.cn @cn
|
|
||||||
primeday.info
|
|
||||||
seattlespheres.com
|
|
||||||
siege-amazon.com
|
|
||||||
ssl-images-amazon.com
|
|
||||||
ueberamazon.de
|
|
||||||
yamaxun.cn @cn
|
|
||||||
yamaxun.com
|
|
||||||
z.cn @cn
|
|
||||||
|
|
||||||
# Alexa
|
|
||||||
alexa.com
|
|
||||||
|
|
||||||
# Audible
|
|
||||||
audible.com
|
|
||||||
|
|
||||||
# CreateSpace
|
|
||||||
createspace.com
|
|
||||||
|
|
||||||
full:images-cn.ssl-images-amazon.com @cn
|
|
||||||
full:images-cn-8.ssl-images-amazon.com @cn
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
amazon-adsystem.com @ads
|
|
||||||
serving-sys.com @ads
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
amazontrust.com
|
|
||||||
awstrust.com
|
|
||||||
ss2.us
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
amc.com
|
|
||||||
amcn.com
|
|
||||||
amcnetworks.com
|
|
||||||
amcplus.com
|
|
||||||
e5a6ae085b6c43020dea230eb0c0ecc33a188227507da97b8ecc05eb8beace6.us-east-1.prod.service.minerva.devices.a2z.com
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
amd.com
|
|
||||||
amd.com.cn
|
|
||||||
amdfanstore.com
|
|
||||||
radeon.com
|
|
||||||
|
|
||||||
full:www.amd.com @cn
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
amp.dev
|
|
||||||
ampproject.com
|
|
||||||
ampproject.net
|
|
||||||
ampproject.org
|
|
||||||
|
|
||||||
full:cdn.ampproject.org @cn
|
|
||||||
|
|
||||||
full:amp.akamaized.net
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
anaconda.cloud
|
|
||||||
anaconda.com
|
|
||||||
anaconda.org
|
|
||||||
conda.io
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
anandtech.com
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# All .android domains
|
|
||||||
android
|
|
||||||
|
|
||||||
android.com
|
|
||||||
androidify.com
|
|
||||||
|
|
||||||
full:android.googlesource.com
|
|
||||||
-11
@@ -1,11 +0,0 @@
|
|||||||
include:netcup
|
|
||||||
|
|
||||||
anexia.at
|
|
||||||
anexia.com
|
|
||||||
anexia-engine.com
|
|
||||||
anexia-it.com
|
|
||||||
fifthns.com
|
|
||||||
firstns.cc
|
|
||||||
fourthns.systems
|
|
||||||
secondns.at
|
|
||||||
thirdns.de
|
|
||||||
-32
@@ -1,32 +0,0 @@
|
|||||||
# 9amine
|
|
||||||
9anime.cz
|
|
||||||
9anime.id
|
|
||||||
9anime.to
|
|
||||||
9anime.ws
|
|
||||||
|
|
||||||
# agefans: https://github.com/agefanscom/website
|
|
||||||
age.tv
|
|
||||||
agedm.org
|
|
||||||
agedm.tv
|
|
||||||
agefans.com
|
|
||||||
agemys.org
|
|
||||||
agedm.app # app
|
|
||||||
|
|
||||||
# animedao
|
|
||||||
animedao-tv.com
|
|
||||||
|
|
||||||
# Crunchyroll
|
|
||||||
crunchyroll.com
|
|
||||||
funimation.com # funimation
|
|
||||||
vrv.co # vrv
|
|
||||||
|
|
||||||
# Gogoanime
|
|
||||||
gogoanime.vc
|
|
||||||
gogoanime.wiki
|
|
||||||
gogoanime3.co
|
|
||||||
gogotaku.info
|
|
||||||
gogo-load.com
|
|
||||||
gogocdn.net # image hosting site
|
|
||||||
|
|
||||||
# hidive
|
|
||||||
hidive.com
|
|
||||||
-12
@@ -1,12 +0,0 @@
|
|||||||
anker-in.com @!cn
|
|
||||||
anker.com @!cn
|
|
||||||
anker.com.cn
|
|
||||||
ankersolix.com @!cn
|
|
||||||
ankerwork.cn
|
|
||||||
eufy.com @!cn
|
|
||||||
eufycn.com
|
|
||||||
eufylife.com @!cn
|
|
||||||
eufymake.com @!cn
|
|
||||||
eufymake.com.cn
|
|
||||||
soundcore.com @!cn
|
|
||||||
soundcore.com.cn
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
annas-archive.gd
|
|
||||||
annas-archive.gl
|
|
||||||
annas-archive.in
|
|
||||||
annas-archive.li
|
|
||||||
annas-archive.org
|
|
||||||
annas-archive.pk
|
|
||||||
annas-archive.pm
|
|
||||||
annas-archive.se
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
anon-v.com
|
|
||||||
anon-v.lol
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
anthropic.com
|
|
||||||
clau.de
|
|
||||||
claude.ai
|
|
||||||
claude.com
|
|
||||||
claudemcpclient.com
|
|
||||||
claudeusercontent.com
|
|
||||||
|
|
||||||
# CDN
|
|
||||||
full:servd-anthropic-website.b-cdn.net
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
aparat.com
|
|
||||||
aparatkids.com
|
|
||||||
aparatsport.com
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
apifox.cn
|
|
||||||
apifox.com
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
apipost.cn
|
|
||||||
apipost.net
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
apkcombo.com
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
apkmirror.com
|
|
||||||
|
|
||||||
full:apkmirror.disqus.com
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
apkpure.com
|
|
||||||
apkpure.net
|
|
||||||
apkpures.xyz
|
|
||||||
cdnpure.com
|
|
||||||
pureapk.com
|
|
||||||
winudf.com
|
|
||||||
-995
@@ -1,995 +0,0 @@
|
|||||||
include:apple-dev # swift inside
|
|
||||||
# Not include:apple-intelligence
|
|
||||||
include:apple-pki
|
|
||||||
include:apple-tvplus
|
|
||||||
include:apple-update
|
|
||||||
include:beats
|
|
||||||
include:icloud
|
|
||||||
include:itunes
|
|
||||||
|
|
||||||
# All .apple domains
|
|
||||||
apple
|
|
||||||
|
|
||||||
apple.ae
|
|
||||||
apple.at
|
|
||||||
apple.be
|
|
||||||
apple.bg
|
|
||||||
apple.bs
|
|
||||||
apple.ca
|
|
||||||
apple.ch
|
|
||||||
apple.cl
|
|
||||||
apple.cm
|
|
||||||
apple.cn @cn
|
|
||||||
apple.co
|
|
||||||
apple.co.cr
|
|
||||||
apple.co.hu
|
|
||||||
apple.co.jp
|
|
||||||
apple.co.kr
|
|
||||||
apple.co.mz
|
|
||||||
apple.co.nz
|
|
||||||
apple.co.th
|
|
||||||
apple.co.uk
|
|
||||||
apple.com
|
|
||||||
apple.com.af
|
|
||||||
apple.com.au
|
|
||||||
apple.com.bo
|
|
||||||
apple.com.br
|
|
||||||
apple.com.cn @cn
|
|
||||||
apple.com.co
|
|
||||||
apple.com.de
|
|
||||||
apple.com.do
|
|
||||||
apple.com.gr
|
|
||||||
apple.com.gy
|
|
||||||
apple.com.jm
|
|
||||||
apple.com.lk
|
|
||||||
apple.com.mg
|
|
||||||
apple.com.mx
|
|
||||||
apple.com.my
|
|
||||||
apple.com.pa
|
|
||||||
apple.com.pe
|
|
||||||
apple.com.pl
|
|
||||||
apple.com.pr
|
|
||||||
apple.com.pt
|
|
||||||
apple.com.py
|
|
||||||
apple.com.sg
|
|
||||||
apple.com.sv
|
|
||||||
apple.com.tr
|
|
||||||
apple.com.tw
|
|
||||||
apple.com.uy
|
|
||||||
apple.cz
|
|
||||||
apple.de
|
|
||||||
apple.dk
|
|
||||||
apple.ee
|
|
||||||
apple.es
|
|
||||||
apple.eu
|
|
||||||
apple.fi
|
|
||||||
apple.fr
|
|
||||||
apple.hamburg
|
|
||||||
apple.hn
|
|
||||||
apple.hr
|
|
||||||
apple.hu
|
|
||||||
apple.ie
|
|
||||||
apple.in
|
|
||||||
apple.is
|
|
||||||
apple.it
|
|
||||||
apple.jo
|
|
||||||
apple.jp
|
|
||||||
apple.kr
|
|
||||||
apple.lk
|
|
||||||
apple.lt
|
|
||||||
apple.lv
|
|
||||||
apple.me
|
|
||||||
apple.my
|
|
||||||
apple.net
|
|
||||||
apple.net.gr
|
|
||||||
apple.nl
|
|
||||||
apple.no
|
|
||||||
apple.pk
|
|
||||||
apple.pl
|
|
||||||
apple.pt
|
|
||||||
apple.ro
|
|
||||||
apple.rs
|
|
||||||
apple.ru
|
|
||||||
apple.sa
|
|
||||||
apple.se
|
|
||||||
apple.sg
|
|
||||||
apple.si
|
|
||||||
apple.sk
|
|
||||||
apple.so
|
|
||||||
apple.tt
|
|
||||||
apple.tw
|
|
||||||
apple.uk
|
|
||||||
apple.us
|
|
||||||
apple.xn--czr694b # apple.商标
|
|
||||||
apple.xn--fiqs8s # apple.中国
|
|
||||||
apple.xyz
|
|
||||||
|
|
||||||
# Apple Store
|
|
||||||
aplestore.com
|
|
||||||
apple-store.cn @cn
|
|
||||||
apple-store.net
|
|
||||||
apple-store.wang
|
|
||||||
applestor.com
|
|
||||||
applestore.bg
|
|
||||||
applestore.cc
|
|
||||||
applestore.ch
|
|
||||||
applestore.cm
|
|
||||||
applestore.cn @cn
|
|
||||||
applestore.co.hu
|
|
||||||
applestore.co.jp
|
|
||||||
applestore.co.ug
|
|
||||||
applestore.co.uk
|
|
||||||
applestore.com
|
|
||||||
applestore.com.au
|
|
||||||
applestore.com.bn
|
|
||||||
applestore.com.cn @cn
|
|
||||||
applestore.com.ee
|
|
||||||
applestore.com.eg
|
|
||||||
applestore.com.gr
|
|
||||||
applestore.com.hk
|
|
||||||
applestore.com.hr
|
|
||||||
applestore.com.jo
|
|
||||||
applestore.com.my
|
|
||||||
applestore.com.ph
|
|
||||||
applestore.com.pl
|
|
||||||
applestore.com.pt
|
|
||||||
applestore.com.ro
|
|
||||||
applestore.com.ru
|
|
||||||
applestore.com.sn
|
|
||||||
applestore.com.tw
|
|
||||||
applestore.de
|
|
||||||
applestore.hk
|
|
||||||
applestore.kr
|
|
||||||
applestore.me
|
|
||||||
applestore.net
|
|
||||||
applestore.net.gr
|
|
||||||
applestore.ph
|
|
||||||
applestore.qa
|
|
||||||
applestore.sg
|
|
||||||
applestore.wang
|
|
||||||
applestoreonline.com
|
|
||||||
applestorepro.eu
|
|
||||||
onlineapplestore.com
|
|
||||||
|
|
||||||
# App Store
|
|
||||||
app-store.wang
|
|
||||||
appe-store.com
|
|
||||||
apple-appstore.cn @cn
|
|
||||||
appleappstore.cn @cn
|
|
||||||
appleappstore.net
|
|
||||||
appleappstore.tv
|
|
||||||
appsto.re
|
|
||||||
appstore.co.id
|
|
||||||
appstore.hk
|
|
||||||
appstore.my
|
|
||||||
appstore.ph
|
|
||||||
appstoreapple.cn @cn
|
|
||||||
asto.re
|
|
||||||
tvappstore.net
|
|
||||||
|
|
||||||
# iMac
|
|
||||||
apple-imac.com
|
|
||||||
appleimac.com
|
|
||||||
imac-apple.com
|
|
||||||
imac-applecomputer.com
|
|
||||||
imac.co
|
|
||||||
imac.co.nz
|
|
||||||
imac.com
|
|
||||||
imac.eu
|
|
||||||
imac.gr
|
|
||||||
imac.one
|
|
||||||
imac.rs
|
|
||||||
imacapple.com
|
|
||||||
imacapplecomputer.com
|
|
||||||
|
|
||||||
# iPad
|
|
||||||
ebookforipad.com
|
|
||||||
euroipad.com
|
|
||||||
findmyipad.com
|
|
||||||
indiaipad.com
|
|
||||||
ipad.co.kr
|
|
||||||
ipad.de
|
|
||||||
ipad.host
|
|
||||||
ipad.wang
|
|
||||||
ipad3.com
|
|
||||||
ipadair.cl
|
|
||||||
ipadair.cm
|
|
||||||
ipadair.com.br
|
|
||||||
ipadair.com.es
|
|
||||||
ipadair.fr
|
|
||||||
ipadair.hk
|
|
||||||
ipadair.ie
|
|
||||||
ipadair.jp
|
|
||||||
ipadair.tw
|
|
||||||
ipadaustralia.com
|
|
||||||
ipadmini.cm
|
|
||||||
ipadmini.com.lk
|
|
||||||
ipadmini.lk
|
|
||||||
ipadpro.buzz
|
|
||||||
ukipad.com
|
|
||||||
|
|
||||||
# iPhone
|
|
||||||
appleiphone.hu
|
|
||||||
appleiphone.net
|
|
||||||
appleiphonecell.com
|
|
||||||
bestiphonestuff.com
|
|
||||||
cooliphonecasesstore.com
|
|
||||||
custom-iphonecase.com
|
|
||||||
designeriphonescases.com
|
|
||||||
dl-iphone.com
|
|
||||||
fundaiphone5s.com
|
|
||||||
hebiphone.com
|
|
||||||
hf-iphone.com
|
|
||||||
iphine.com
|
|
||||||
iphone-8.com.cn @cn
|
|
||||||
iphone-cd.com
|
|
||||||
iphone-cn.com
|
|
||||||
iphone-sh.com
|
|
||||||
iphone-vip1.com
|
|
||||||
iphone-vip2.com
|
|
||||||
iphone-vip3.com
|
|
||||||
iphone-vip4.com
|
|
||||||
iphone-vip5.com
|
|
||||||
iphone-x.tv
|
|
||||||
iphone-yh.com
|
|
||||||
iphone-zh.com
|
|
||||||
iphone.cm
|
|
||||||
iphone.com
|
|
||||||
iphone.com.au
|
|
||||||
iphone.com.gr
|
|
||||||
iphone.es
|
|
||||||
iphone.host
|
|
||||||
iphone.net.gr
|
|
||||||
iphone.pt
|
|
||||||
iphone.rs
|
|
||||||
iphone.ru
|
|
||||||
iphone.wang
|
|
||||||
iphone4.com
|
|
||||||
iphone4.com.br
|
|
||||||
iphone4s.com
|
|
||||||
iphone5.com
|
|
||||||
iphone5casescovers.com
|
|
||||||
iphone5s5case.com
|
|
||||||
iphoneacessorios.com.br
|
|
||||||
iphonecase2013.com
|
|
||||||
iphonecase5.com
|
|
||||||
iphonecases100.com
|
|
||||||
iphonecases5.com
|
|
||||||
iphoneclaro.com.br
|
|
||||||
iphonecollcase.com
|
|
||||||
iphonefc.com
|
|
||||||
iphonegermany.com
|
|
||||||
iphonehangzhou.com
|
|
||||||
iphoneimessage.com
|
|
||||||
iphoneplus.wang
|
|
||||||
iphonerip.net
|
|
||||||
iphonese.tv
|
|
||||||
iphoneunlockimei.com
|
|
||||||
iphonexs.tv
|
|
||||||
onlyiphone5case.com
|
|
||||||
|
|
||||||
# iPod
|
|
||||||
aplleipods.com
|
|
||||||
appleclassicipod.com
|
|
||||||
downloadsforipod.com
|
|
||||||
ipod.ca
|
|
||||||
ipod.ch
|
|
||||||
ipod.cm
|
|
||||||
ipod.co
|
|
||||||
ipod.co.nz
|
|
||||||
ipod.co.uk
|
|
||||||
ipod.co.za
|
|
||||||
ipod.com
|
|
||||||
ipod.com.au
|
|
||||||
ipod.com.cn @cn
|
|
||||||
ipod.com.fr
|
|
||||||
ipod.com.hk
|
|
||||||
ipod.com.sg
|
|
||||||
ipod.com.tw
|
|
||||||
ipod.de
|
|
||||||
ipod.es
|
|
||||||
ipod.eu
|
|
||||||
ipod.fr
|
|
||||||
ipod.gr
|
|
||||||
ipod.hk
|
|
||||||
ipod.is
|
|
||||||
ipod.net
|
|
||||||
ipod.no
|
|
||||||
ipod.pk
|
|
||||||
ipod.rs
|
|
||||||
ipod.ru
|
|
||||||
ipod.tw
|
|
||||||
ipodcentre.nl
|
|
||||||
ipodcleaner.com
|
|
||||||
ipoditouch.com
|
|
||||||
ipodnano.com
|
|
||||||
ipodnano.net
|
|
||||||
ipodprices.com
|
|
||||||
ipodrip.ca
|
|
||||||
ipodrocks.com.au
|
|
||||||
ipods.com
|
|
||||||
ipodshop.com.au
|
|
||||||
ipodtouch.co
|
|
||||||
ipodtouch.com
|
|
||||||
myipod.net
|
|
||||||
offrezdesipods.com
|
|
||||||
simplyipod.com
|
|
||||||
wwwipodlounge.com
|
|
||||||
|
|
||||||
# MacBook
|
|
||||||
imacsources.com
|
|
||||||
launchpad.wang
|
|
||||||
mac.wang
|
|
||||||
macbook.co
|
|
||||||
macbook.hk
|
|
||||||
macbook.tw
|
|
||||||
macbook.wang
|
|
||||||
macbookair.cn @cn
|
|
||||||
macbookair.co.kr
|
|
||||||
macbookair.co.uk
|
|
||||||
macbookair.com
|
|
||||||
macbookair.com.au
|
|
||||||
macbookair.com.cn @cn
|
|
||||||
macbookair.com.es
|
|
||||||
macbookair.es
|
|
||||||
macbookair.hk
|
|
||||||
macbookair.kr
|
|
||||||
macbookair.jp
|
|
||||||
macbookair.net
|
|
||||||
macbookpro.co
|
|
||||||
macbookpro.com
|
|
||||||
macbookpro.com.au
|
|
||||||
macbookpro.net
|
|
||||||
macbookpro.us
|
|
||||||
macbookpros.com
|
|
||||||
macbooksale.com
|
|
||||||
wwwmacbookair.com
|
|
||||||
|
|
||||||
# Apple Watch
|
|
||||||
apple-watch.com.ru
|
|
||||||
applewatch.hk
|
|
||||||
applewatch.tv
|
|
||||||
applewatch.tw
|
|
||||||
applewatch.wang
|
|
||||||
applewatchedition.com
|
|
||||||
applewatchseries3.net
|
|
||||||
applewatchsport.com
|
|
||||||
|
|
||||||
# Apple Music
|
|
||||||
applemusic.berlin
|
|
||||||
applemusic.co
|
|
||||||
applemusic.com
|
|
||||||
applemusic.com.au
|
|
||||||
applemusic.hamburg
|
|
||||||
applemusic.wang
|
|
||||||
applemusicconnect.com
|
|
||||||
applemusicfestival.com
|
|
||||||
musickit.net
|
|
||||||
wwwapplemusic.com
|
|
||||||
|
|
||||||
# Apple News
|
|
||||||
apple.comscoreresearch.com
|
|
||||||
apple.news
|
|
||||||
appleenews.com
|
|
||||||
applenews.berlin
|
|
||||||
applenews.hamburg
|
|
||||||
applenews.tv
|
|
||||||
applenewsformat.com
|
|
||||||
|
|
||||||
# Apple Pay
|
|
||||||
apple-pay.com
|
|
||||||
apple-pay.rs
|
|
||||||
apple-pay.wang
|
|
||||||
applepay.berlin
|
|
||||||
applepay.co.rs
|
|
||||||
applepay.com.tw
|
|
||||||
applepay.hamburg
|
|
||||||
applepay.hk
|
|
||||||
applepay.info
|
|
||||||
applepay.jp
|
|
||||||
applepay.rs
|
|
||||||
applepay.tv
|
|
||||||
applepaycash.cn @cn
|
|
||||||
applepaycash.com.cn @cn
|
|
||||||
applepaycash.net
|
|
||||||
applepaycash.tv
|
|
||||||
applepaymerchantsupplies.info
|
|
||||||
applepaysupplies.berlin
|
|
||||||
applepaysupplies.cn @cn
|
|
||||||
applepaysupplies.com
|
|
||||||
applepaysupplies.com.cn @cn
|
|
||||||
applepaysupplies.info
|
|
||||||
applepaysupplies.net
|
|
||||||
applepaysupplies.tv
|
|
||||||
applewallet.com
|
|
||||||
applewallet.tv
|
|
||||||
|
|
||||||
# iBook
|
|
||||||
i-book.com
|
|
||||||
i-book.net
|
|
||||||
ibook.co.nz
|
|
||||||
ibook.com
|
|
||||||
ibook.eu
|
|
||||||
ibook.net
|
|
||||||
ibookpartner.com
|
|
||||||
ibooksauthor.com
|
|
||||||
|
|
||||||
# iPhoto
|
|
||||||
iphoto.eu
|
|
||||||
iphoto.no
|
|
||||||
iphoto.se
|
|
||||||
iphoto.wang
|
|
||||||
|
|
||||||
# iMovie
|
|
||||||
imovie.eu
|
|
||||||
imoviegallery.com
|
|
||||||
imoviestage.com
|
|
||||||
|
|
||||||
# Apple Care
|
|
||||||
applecare.berlin
|
|
||||||
applecare.cc
|
|
||||||
applecare.eu
|
|
||||||
applecare.hamburg
|
|
||||||
applecare.wang
|
|
||||||
|
|
||||||
# macOS
|
|
||||||
appledarwin.com
|
|
||||||
appledarwin.net
|
|
||||||
darwinsource.com
|
|
||||||
darwinsource.org
|
|
||||||
darwinsourcecode.com
|
|
||||||
|
|
||||||
# Apple ID
|
|
||||||
appleaccount.net
|
|
||||||
appleid-applemx.com
|
|
||||||
appleid-applemx.us
|
|
||||||
appleid-iclou.com
|
|
||||||
appleid-uk.us
|
|
||||||
appleid.berlin
|
|
||||||
appleid.com
|
|
||||||
appleid.hamburg
|
|
||||||
appleid.hk
|
|
||||||
ids-apple.com
|
|
||||||
myappleid.com
|
|
||||||
|
|
||||||
# Apple TV
|
|
||||||
appletv.com
|
|
||||||
appletv.fr
|
|
||||||
appletv.wang
|
|
||||||
appletv4.cn @cn
|
|
||||||
appletv4.com.cn @cn
|
|
||||||
appletvapp.apple
|
|
||||||
|
|
||||||
# Apple One
|
|
||||||
appleone.audio
|
|
||||||
appleone.blog
|
|
||||||
appleone.chat
|
|
||||||
appleone.cloud
|
|
||||||
appleone.club
|
|
||||||
appleone.community
|
|
||||||
appleone.film
|
|
||||||
appleone.guide
|
|
||||||
appleone.host
|
|
||||||
appleone.space
|
|
||||||
appleone.tech
|
|
||||||
appleone.website
|
|
||||||
|
|
||||||
# Shazam
|
|
||||||
shazam.com
|
|
||||||
|
|
||||||
# Apple Health Studies
|
|
||||||
full:ingest.apple-studies.com # 采集心率、运动、听力等传感器数据,以及用户填报的研究问卷,将其加密后上传至 Apple 后端
|
|
||||||
|
|
||||||
# Others
|
|
||||||
1to1computing.com.au
|
|
||||||
1to1conference.com.au
|
|
||||||
5lml.com
|
|
||||||
a0pple.net
|
|
||||||
aapl.tw
|
|
||||||
aaplimg.com
|
|
||||||
airport.brussels
|
|
||||||
airport.com
|
|
||||||
airport.eu
|
|
||||||
airsupportapp.com
|
|
||||||
airtunes.com
|
|
||||||
airtunes.info
|
|
||||||
airtunes.net
|
|
||||||
alchemysynth.com
|
|
||||||
ap0le.com
|
|
||||||
aple.com
|
|
||||||
apole.com
|
|
||||||
app0le.com
|
|
||||||
appl-e.com
|
|
||||||
appl.com
|
|
||||||
appl4e.com
|
|
||||||
appla.com
|
|
||||||
apple-darwin.com
|
|
||||||
apple-darwin.net
|
|
||||||
apple-darwin.org
|
|
||||||
apple-dns.cn @cn
|
|
||||||
apple-dns.com
|
|
||||||
apple-dns.com.cn @cn
|
|
||||||
apple-dns.net
|
|
||||||
apple-enews.com
|
|
||||||
apple-expo.com
|
|
||||||
apple-expo.eu
|
|
||||||
apple-hk.com
|
|
||||||
apple-ibooks.cn @cn
|
|
||||||
apple-inc.net
|
|
||||||
apple-livephotoskit.com
|
|
||||||
apple-maps.cn @cn
|
|
||||||
apple-online.com
|
|
||||||
apple-usa.net
|
|
||||||
appleafrica.com
|
|
||||||
appleantilles.com
|
|
||||||
appleaustralia.com
|
|
||||||
appleaustralia.com.au
|
|
||||||
appleaustralia.net.au
|
|
||||||
applebk.net
|
|
||||||
applecarbon.com
|
|
||||||
applecard.tv
|
|
||||||
applecentar.co.rs
|
|
||||||
applecentar.rs
|
|
||||||
applecenter.cn @cn
|
|
||||||
applecenter.com.cn @cn
|
|
||||||
applecentre.com.au
|
|
||||||
applecentre.info
|
|
||||||
appleclub.com.hk
|
|
||||||
applecom.com
|
|
||||||
applecomputer-imac.com
|
|
||||||
applecomputer.cn @cn
|
|
||||||
applecomputer.co.in
|
|
||||||
applecomputer.co.nz
|
|
||||||
applecomputer.com
|
|
||||||
applecomputer.com.cn @cn
|
|
||||||
applecomputer.com.hk
|
|
||||||
applecomputer.com.tw
|
|
||||||
applecomputer.hu
|
|
||||||
applecomputer.kr
|
|
||||||
applecomputerimac.com
|
|
||||||
applecomputerinc.info
|
|
||||||
applecomputers.co.nz
|
|
||||||
applecoronavirus.com
|
|
||||||
appledns.cn @cn
|
|
||||||
appledns.com.cn @cn
|
|
||||||
appleexpo.eu
|
|
||||||
appleexpo.info
|
|
||||||
applefilmaker.com
|
|
||||||
applefilmmaker.com
|
|
||||||
applefinalcutproworld.com
|
|
||||||
applefinalcutproworld.net
|
|
||||||
applefinalcutproworld.org
|
|
||||||
applehongkong.com
|
|
||||||
applehongkong.com.hk
|
|
||||||
appleinclegal.com
|
|
||||||
appleipodsettlement.com
|
|
||||||
appleiservices.com
|
|
||||||
applelink.com
|
|
||||||
applemagickeyboard.com
|
|
||||||
applemalaysia.com.my
|
|
||||||
applemasters.info
|
|
||||||
appleonline.com
|
|
||||||
appleonline.net
|
|
||||||
appleoriginalproductions.com
|
|
||||||
appleos.tv
|
|
||||||
applepencil.net
|
|
||||||
applepodcasts.com
|
|
||||||
applepremiumreseller.com.au
|
|
||||||
applepremiumresellers.com.au
|
|
||||||
applereach.com
|
|
||||||
applereach.net
|
|
||||||
apples-msk.ru
|
|
||||||
applescreensavers.com
|
|
||||||
applescript.info
|
|
||||||
appleshare.info
|
|
||||||
appleshop.co.uk
|
|
||||||
applesiri.cn @cn
|
|
||||||
applesurveys.com
|
|
||||||
appletaiwan.com
|
|
||||||
appletips.net
|
|
||||||
appleweb.net
|
|
||||||
applexpo.net
|
|
||||||
applezh.com
|
|
||||||
applf.com
|
|
||||||
applfe.com
|
|
||||||
applle.com
|
|
||||||
applw.com
|
|
||||||
appmediagroup.com
|
|
||||||
appule.com
|
|
||||||
appye.com
|
|
||||||
apyle.com
|
|
||||||
beddit.tv
|
|
||||||
braeburncapital.com
|
|
||||||
burstly.net
|
|
||||||
burstlyrewards.com
|
|
||||||
buyaapl.com
|
|
||||||
buyaapl.net
|
|
||||||
buyaple.com
|
|
||||||
camelphat.com
|
|
||||||
camelspaceeffect.com
|
|
||||||
carbon.com
|
|
||||||
catalina.hk
|
|
||||||
cdn-apple.com
|
|
||||||
chomp.com
|
|
||||||
coreml.net
|
|
||||||
dashwood360.com
|
|
||||||
desktopmovie.com
|
|
||||||
desktopmovie.net
|
|
||||||
desktopmovie.org
|
|
||||||
desktopmovies.net
|
|
||||||
desktopmovies.org
|
|
||||||
developer-advisor.com
|
|
||||||
device-manager.us
|
|
||||||
digitalhub.com
|
|
||||||
discussionsapple.com
|
|
||||||
dot-mac.de
|
|
||||||
dotmac.de
|
|
||||||
dvdstudiopro.biz
|
|
||||||
dvdstudiopro.com
|
|
||||||
dvdstudiopro.info
|
|
||||||
dvdstudiopro.net
|
|
||||||
dvdstudiopro.org
|
|
||||||
dvdstudiopro.us
|
|
||||||
earpod.net
|
|
||||||
ecgapp.com.cn @cn
|
|
||||||
ecgapp.net
|
|
||||||
edu-research.org
|
|
||||||
emac.co.in
|
|
||||||
emac.in
|
|
||||||
emagic.de
|
|
||||||
eworld.com
|
|
||||||
faceid99.com
|
|
||||||
faceid99.net
|
|
||||||
faceidglobal.com
|
|
||||||
faceshift.cn @cn
|
|
||||||
facetime.net
|
|
||||||
finalcutpro.com
|
|
||||||
find-apple.com
|
|
||||||
firewire.cl
|
|
||||||
firewire.eu
|
|
||||||
geoport.com
|
|
||||||
homepod.cn @cn
|
|
||||||
hopstop.tv
|
|
||||||
ichat.co.in
|
|
||||||
idvd.eu
|
|
||||||
ikids.com
|
|
||||||
ilecture.co.nz
|
|
||||||
ilife.eu
|
|
||||||
ilife.gr
|
|
||||||
ilife.wang
|
|
||||||
imessage.tv
|
|
||||||
insidear.cn @cn
|
|
||||||
insidemacintosh.com
|
|
||||||
iosinthecar.com
|
|
||||||
ipa-iphone.net
|
|
||||||
ipple.com
|
|
||||||
ischool.com
|
|
||||||
itools.info
|
|
||||||
iwork.com
|
|
||||||
iwork.se
|
|
||||||
iwork.wang
|
|
||||||
jetfuelapp.com
|
|
||||||
jetfuelapps.com
|
|
||||||
latticedata.com
|
|
||||||
livephotos.cn @cn
|
|
||||||
livephotos.com.cn @cn
|
|
||||||
livephotos.tv
|
|
||||||
lojaiphone.com.br
|
|
||||||
mac-mini.com
|
|
||||||
mac.com
|
|
||||||
mac.com.au
|
|
||||||
mac.eu
|
|
||||||
mac.rs
|
|
||||||
macappsto.re
|
|
||||||
macboxset.com
|
|
||||||
mach-os.com
|
|
||||||
mach-os.net
|
|
||||||
machos.net
|
|
||||||
macintosh.eu
|
|
||||||
macintoshsoftware.com
|
|
||||||
macmini.com
|
|
||||||
macos.com.au
|
|
||||||
macossierra.com
|
|
||||||
macosx.info
|
|
||||||
macosxlion.com
|
|
||||||
macpazar.com
|
|
||||||
macreach.com
|
|
||||||
macreach.net
|
|
||||||
mobileme.dk
|
|
||||||
mr-apple.com.tw
|
|
||||||
mzstatic.com
|
|
||||||
newton.com
|
|
||||||
next.com
|
|
||||||
overapple.com
|
|
||||||
powerbook.eu
|
|
||||||
pullstring.net
|
|
||||||
quatrowireless.com
|
|
||||||
quicktime.cc
|
|
||||||
quicktime.com
|
|
||||||
quicktime.com.au
|
|
||||||
quicktime.eu
|
|
||||||
quicktime.net
|
|
||||||
quicktime.tv
|
|
||||||
reform-apple.com
|
|
||||||
services-apple.net
|
|
||||||
siri.com
|
|
||||||
spektral.cc
|
|
||||||
texture.com
|
|
||||||
thinkdifferent.us
|
|
||||||
touchid.tv
|
|
||||||
touchid.wang
|
|
||||||
tracking-location.com
|
|
||||||
truedepth3d.com
|
|
||||||
tryrating.com
|
|
||||||
webobjects.co.uk
|
|
||||||
webobjects.de
|
|
||||||
webobjects.eu
|
|
||||||
webobjects.net
|
|
||||||
wuxiapple.com
|
|
||||||
wwapple.net
|
|
||||||
www-sms-apple.com
|
|
||||||
wwwapple.com
|
|
||||||
wwwapple.net
|
|
||||||
wwwlapple.com
|
|
||||||
xn--czrs0t4phtr3a.cn @cn # 苹果商店.cn
|
|
||||||
xn--fiqs8sxootzz.cn @cn # 苹果中国.cn
|
|
||||||
xn--fiqs8sxootzz.xn--hxt814e # 苹果中国.网店
|
|
||||||
xn--gtvq61aiijy0b.xn--hxt814e # 苹果电脑.网店
|
|
||||||
xn--gtvz22d.wang # 苹果.wang
|
|
||||||
xn--gtvz22d.xn--hxt814e # 苹果.网店
|
|
||||||
xn--hxtr4rozx.xn--czr694b # 苹果店.商标
|
|
||||||
xn--kput3imi374g.xn--hxt814e # 苹果手机.网店
|
|
||||||
xn--ohq11k7pl25iyo8a.cn @cn # 苹果专卖店.cn
|
|
||||||
xn--ruq8a011kt6y.xn--hxt814e # 苹果保修.网店
|
|
||||||
|
|
||||||
full:apple.com.akadns.net
|
|
||||||
full:configuration-lb.ls-apple.com.akadns.net
|
|
||||||
full:push-apple.com.akadns.net
|
|
||||||
courier-push-apple.com.akadns.net
|
|
||||||
|
|
||||||
# Domains and services below are available in China mainland
|
|
||||||
# Use in config file like this: "geosite:apple@cn"
|
|
||||||
full:amp-api-edge-lb-cn.itunes-apple.com.akadns.net @cn
|
|
||||||
full:amp-api-edge-lb.itunes-apple.com.akadns.net @cn
|
|
||||||
full:amp-api-edge.apps.apple.com @cn
|
|
||||||
full:amp-api-edge.music.apple.com @cn
|
|
||||||
full:amp-api-search-edge.apps.apple.com @cn
|
|
||||||
full:amp-api.apps.apple.com @cn
|
|
||||||
full:amp-api.music.apple.com @cn
|
|
||||||
full:aod-ssl.itunes.apple.com @cn
|
|
||||||
full:aod.itunes.apple.com @cn
|
|
||||||
full:api-edge.apps.apple.com @cn
|
|
||||||
full:apptrailers.itunes.apple.com @cn
|
|
||||||
full:auth.music.apple.com @cn
|
|
||||||
full:bag.itunes.apple.com @cn
|
|
||||||
full:bookkeeper.itunes.apple.com @cn
|
|
||||||
full:client-api.itunes.apple.com @cn
|
|
||||||
full:cma.itunes.apple.com @cn
|
|
||||||
full:communities.apple.com @cn
|
|
||||||
full:discussionschinese.apple.com @cn
|
|
||||||
full:downloaddispatch.itunes.apple.com @cn
|
|
||||||
full:fides-pol.apple.com @cn
|
|
||||||
full:gspe11-2-cn-ssl.ls.apple.com @cn
|
|
||||||
full:gspe12-cn-ssl.ls.apple.com @cn
|
|
||||||
full:gspe85-cn-ssl.ls.apple.com @cn
|
|
||||||
full:inappcheck-cn.itunes-apple.com.akadns.net @cn
|
|
||||||
full:inappcheck-lb.itunes-apple.com.akadns.net @cn
|
|
||||||
full:inappcheck.itunes.apple.com @cn
|
|
||||||
full:init.gc-lb.apple.com.akadns.net @cn
|
|
||||||
full:init.gc.apple.com @cn
|
|
||||||
full:init.itunes.apple.com @cn
|
|
||||||
full:iosapps.itunes.apple.com @cn
|
|
||||||
full:js-cdn.music.apple.com @cn
|
|
||||||
full:km.support.apple.com @cn
|
|
||||||
full:maps.apple.com @cn
|
|
||||||
full:misc-assets.itunes.apple.com @cn
|
|
||||||
full:musicstatus.music.apple.com @cn
|
|
||||||
full:mvod.itunes.apple.com @cn
|
|
||||||
full:myapp.itunes.apple.com @cn
|
|
||||||
full:np-edge.itunes.apple.com @cn
|
|
||||||
full:osxapps.itunes.apple.com @cn
|
|
||||||
full:pd-nk.itunes.apple.com @cn
|
|
||||||
full:pd.itunes.apple.com @cn
|
|
||||||
full:play.itunes.apple.com @cn
|
|
||||||
full:play.music.apple.com @cn
|
|
||||||
full:se-edge.itunes.apple.com @cn
|
|
||||||
full:se2.itunes.apple.com @cn
|
|
||||||
full:search.itunes.apple.com @cn
|
|
||||||
full:sf-api-token-service.itunes.apple.com @cn
|
|
||||||
full:sp.itunes.apple.com @cn
|
|
||||||
full:speedysub.music.apple.com @cn
|
|
||||||
full:streamingaudio.itunes.apple.com @cn
|
|
||||||
full:su.itunes.apple.com @cn
|
|
||||||
full:sync.itunes.apple.com @cn
|
|
||||||
full:tf-feedback.itunes.apple.com @cn
|
|
||||||
full:upp.itunes.apple.com @cn
|
|
||||||
full:www.support.apple.com @cn
|
|
||||||
|
|
||||||
# regexp:^a[1-5]\.mzstatic\.com$ @cn
|
|
||||||
full:a1.mzstatic.com @cn
|
|
||||||
full:a2.mzstatic.com @cn
|
|
||||||
full:a3.mzstatic.com @cn
|
|
||||||
full:a4.mzstatic.com @cn
|
|
||||||
full:a5.mzstatic.com @cn
|
|
||||||
|
|
||||||
# regexp:^cdn(-cn)?[1-4]?\.apple-mapkit\.com$ @cn
|
|
||||||
full:cdn.apple-mapkit.com @cn
|
|
||||||
full:cdn1.apple-mapkit.com @cn
|
|
||||||
full:cdn2.apple-mapkit.com @cn
|
|
||||||
full:cdn3.apple-mapkit.com @cn
|
|
||||||
full:cdn4.apple-mapkit.com @cn
|
|
||||||
full:cdn-cn.apple-mapkit.com @cn
|
|
||||||
full:cdn-cn1.apple-mapkit.com @cn
|
|
||||||
full:cdn-cn2.apple-mapkit.com @cn
|
|
||||||
full:cdn-cn3.apple-mapkit.com @cn
|
|
||||||
full:cdn-cn4.apple-mapkit.com @cn
|
|
||||||
|
|
||||||
# regexp:^cl[1-5]-cdn\.origin-apple\.com\.akadns\.net$ @cn
|
|
||||||
full:cl1-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:cl2-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:cl3-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:cl4-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:cl5-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
|
|
||||||
# regexp:^cl[1-5]\.apple\.com$ @cn
|
|
||||||
full:cl1.apple.com @cn
|
|
||||||
full:cl2.apple.com @cn
|
|
||||||
full:cl3.apple.com @cn
|
|
||||||
full:cl4.apple.com @cn
|
|
||||||
full:cl5.apple.com @cn
|
|
||||||
|
|
||||||
# regexp:^is[1-5](-ssl)?\.mzstatic\.com$ @cn
|
|
||||||
full:is1.mzstatic.com @cn
|
|
||||||
full:is1-ssl.mzstatic.com @cn
|
|
||||||
full:is2.mzstatic.com @cn
|
|
||||||
full:is2-ssl.mzstatic.com @cn
|
|
||||||
full:is3.mzstatic.com @cn
|
|
||||||
full:is3-ssl.mzstatic.com @cn
|
|
||||||
full:is4.mzstatic.com @cn
|
|
||||||
full:is4-ssl.mzstatic.com @cn
|
|
||||||
full:is5.mzstatic.com @cn
|
|
||||||
full:is5-ssl.mzstatic.com @cn
|
|
||||||
|
|
||||||
# regexp:^s[1-5]?\.mzstatic\.com$ @cn
|
|
||||||
full:s.mzstatic.com @cn
|
|
||||||
full:s1.mzstatic.com @cn
|
|
||||||
full:s2.mzstatic.com @cn
|
|
||||||
full:s3.mzstatic.com @cn
|
|
||||||
full:s4.mzstatic.com @cn
|
|
||||||
full:s5.mzstatic.com @cn
|
|
||||||
|
|
||||||
# The rules below are from https://github.com/felixonmars/dnsmasq-china-list/blob/master/apple.china.conf
|
|
||||||
# Revision: f6a2093b254a7d2baca959bd16581666ca394303
|
|
||||||
# Duplicates removed
|
|
||||||
# According to the consensus in #503, do not include the domain name apps.apple.com directly.
|
|
||||||
# Use in config file like this: "geosite:apple@cn"
|
|
||||||
full:adcdownload.apple.com @cn
|
|
||||||
full:adcdownload.apple.com.akadns.net @cn
|
|
||||||
full:amp-api-updates.apps.apple.com @cn
|
|
||||||
full:amp-api.media.apple.com @cn
|
|
||||||
full:app-site-association.cdn-apple.com @cn
|
|
||||||
full:appldnld.apple.com @cn
|
|
||||||
full:appldnld.g.aaplimg.com @cn
|
|
||||||
full:appleid.cdn-apple.com @cn
|
|
||||||
full:apps.mzstatic.com @cn
|
|
||||||
full:bag-cdn.itunes-apple.com.akadns.net @cn
|
|
||||||
full:cds-cdn.v.aaplimg.com @cn
|
|
||||||
full:cds.apple.com @cn
|
|
||||||
full:cds.apple.com.akadns.net @cn
|
|
||||||
full:cdsassets.apple.com @cn
|
|
||||||
full:cl2-cn.apple.com @cn
|
|
||||||
full:cl4-cn.apple.com @cn
|
|
||||||
full:clientflow.apple.com @cn
|
|
||||||
full:clientflow.apple.com.akadns.net @cn
|
|
||||||
full:cn-smp-paymentservices.apple.com @cn
|
|
||||||
full:configuration.apple.com @cn
|
|
||||||
full:configuration.apple.com.akadns.net @cn
|
|
||||||
full:cstat.apple.com @cn
|
|
||||||
full:cstat.cdn-apple.com @cn
|
|
||||||
full:dd-cdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:dejavu.apple.com @cn
|
|
||||||
full:devimages-cdn.apple.com @cn
|
|
||||||
full:devstreaming-cdn.apple.com @cn
|
|
||||||
full:download.developer.apple.com @cn
|
|
||||||
full:experiments.apple.com @cn
|
|
||||||
full:gs-loc-cn.apple.com @cn
|
|
||||||
full:gs-loc.apple.com @cn
|
|
||||||
full:gsp10-ssl-cn.ls.apple.com @cn
|
|
||||||
full:gsp12-cn.ls.apple.com @cn
|
|
||||||
full:gsp13-cn.ls.apple.com @cn
|
|
||||||
full:gsp4-cn.ls.apple.com @cn
|
|
||||||
full:gsp4-cn.ls.apple.com.edgekey.net.globalredir.akadns.net @cn
|
|
||||||
full:gsp5-cn.ls.apple.com @cn
|
|
||||||
full:gsp85-cn-ssl.ls.apple.com @cn
|
|
||||||
full:gspe19-2-cn-ssl.ls-apple.com.akadns.net @cn
|
|
||||||
full:gspe19-2-cn-ssl.ls.apple.com @cn
|
|
||||||
full:gspe19-cn-ssl.ls.apple.com @cn
|
|
||||||
full:gspe19-cn.ls-apple.com.akadns.net @cn
|
|
||||||
full:gspe19-cn.ls.apple.com @cn
|
|
||||||
full:gspe21-ssl.ls.apple.com @cn
|
|
||||||
full:gspe35-ssl.ls.apple.com @cn
|
|
||||||
full:gspe79-cn-ssl.ls.apple.com @cn
|
|
||||||
full:guzzoni-apple-com.v.aaplimg.com @cn
|
|
||||||
full:guzzoni.apple.com @cn
|
|
||||||
full:guzzoni.smoot.apple.com @cn
|
|
||||||
full:icloud-cdn.icloud.com.akadns.net @cn
|
|
||||||
full:icloud.cdn-apple.com @cn
|
|
||||||
full:images.apple.com.edgekey.net.globalredir.akadns.net @cn
|
|
||||||
full:init-kt.apple.com @cn
|
|
||||||
full:init-p01md-lb.push-apple.com.akadns.net @cn
|
|
||||||
full:init-p01md.apple.com @cn
|
|
||||||
full:init-p01st-lb.push-apple.com.akadns.net @cn
|
|
||||||
full:init-p01st.push.apple.com @cn
|
|
||||||
full:init-s01st-lb.push-apple.com.akadns.net @cn
|
|
||||||
full:init-s01st.push.apple.com @cn
|
|
||||||
full:init.ess.apple.com @cn
|
|
||||||
full:iosapps.itunes.g.aaplimg.com @cn
|
|
||||||
full:ipcdn.apple.com @cn
|
|
||||||
full:iphone-ld.apple.com @cn
|
|
||||||
full:iphone-ld.origin-apple.com.akadns.net @cn
|
|
||||||
full:is-ssl.mzstatic.com-cn-lb.itunes-apple.com.akadns.net @cn
|
|
||||||
full:itunes-apple.com.akadns.net @cn
|
|
||||||
full:itunes.apple.com @cn
|
|
||||||
full:itunesconnect.apple.com @cn
|
|
||||||
full:mesu-cdn.apple.com.akadns.net @cn
|
|
||||||
full:mesu-china.apple.com.akadns.net @cn
|
|
||||||
full:mesu.apple.com @cn
|
|
||||||
full:ml.cdn-apple.com @cn
|
|
||||||
full:music.apple.com @cn
|
|
||||||
full:oscdn.apple.com @cn
|
|
||||||
full:oscdn.origin-apple.com.akadns.net @cn
|
|
||||||
full:osxapps.itunes.g.aaplimg.com @cn
|
|
||||||
full:pancake.apple.com @cn
|
|
||||||
full:pancake.cdn-apple.com.akadns.net @cn
|
|
||||||
full:pba0.apple.com @cn
|
|
||||||
full:probe.siri.apple.com @cn
|
|
||||||
full:prod-support.apple-support.akadns.net @cn
|
|
||||||
full:publicassets.cdn-apple.com @cn
|
|
||||||
full:reserve-prime.apple.com @cn
|
|
||||||
full:seed-sequoia.siri.apple.com @cn
|
|
||||||
full:seed-swallow.siri.apple.com @cn
|
|
||||||
full:seed.siri.apple.com @cn
|
|
||||||
full:sequoia.apple.com @cn
|
|
||||||
full:sh-pod2-smp-device.apple.com @cn
|
|
||||||
full:shazam-insights.cdn-apple.com @cn
|
|
||||||
full:smp-device-content.apple.com @cn
|
|
||||||
full:static.gc.apple.com @cn
|
|
||||||
full:stocks-sparkline-lb.apple.com.akadns.net @cn
|
|
||||||
full:stocks-sparkline.apple.com @cn
|
|
||||||
full:store.apple.com @cn
|
|
||||||
full:store.apple.com.edgekey.net @cn
|
|
||||||
full:store.apple.com.edgekey.net.globalredir.akadns.net @cn
|
|
||||||
full:store.storeimages.apple.com.akadns.net @cn
|
|
||||||
full:store.storeimages.cdn-apple.com @cn
|
|
||||||
full:support-china.apple-support.akadns.net @cn
|
|
||||||
full:support.apple.com @cn
|
|
||||||
full:swallow-apple-com.v.aaplimg.com @cn
|
|
||||||
full:swallow.apple.com @cn
|
|
||||||
full:swcatalog-cdn.apple.com.akadns.net @cn
|
|
||||||
full:swcatalog.apple.com @cn
|
|
||||||
full:swcdn.apple.com @cn
|
|
||||||
full:swcdn.g.aaplimg.com @cn
|
|
||||||
full:swdist.apple.com @cn
|
|
||||||
full:swdist.apple.com.akadns.net @cn
|
|
||||||
full:swscan-cdn.apple.com.akadns.net @cn
|
|
||||||
full:swscan.apple.com @cn
|
|
||||||
full:sylvan.apple.com @cn
|
|
||||||
full:tj-pod1-smp-device.apple.com @cn
|
|
||||||
full:updates-http.cdn-apple.com @cn
|
|
||||||
full:updates-http.cdn-apple.com.akadns.net @cn
|
|
||||||
full:updates.cdn-apple.com @cn
|
|
||||||
full:weather-data.apple.com @cn
|
|
||||||
full:weather-data.apple.com.akadns.net @cn
|
|
||||||
full:weather-map.apple.com @cn
|
|
||||||
full:weather-map2.apple.com @cn
|
|
||||||
full:weatherkit.apple.com @cn
|
|
||||||
full:www.apple.com @cn
|
|
||||||
full:www.apple.com.edgekey.net.globalredir.akadns.net @cn
|
|
||||||
full:xp.apple.com @cn
|
|
||||||
|
|
||||||
# Ads/tracking
|
|
||||||
advertising.apple.com @ads
|
|
||||||
api-adservices.apple.com @ads
|
|
||||||
iadsdk.apple.com @ads
|
|
||||||
iad.apple.com @ads
|
|
||||||
qwapi.com @ads
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
include:swift
|
|
||||||
|
|
||||||
# Calendar and Contact Server
|
|
||||||
calendarserver.org
|
|
||||||
|
|
||||||
# CloudKit
|
|
||||||
apple-cloudkit.com
|
|
||||||
|
|
||||||
# CUPS
|
|
||||||
cups.org
|
|
||||||
|
|
||||||
# Developer
|
|
||||||
developer.apple.com
|
|
||||||
devimages-cdn.apple.com
|
|
||||||
devstreaming-cdn.apple.com
|
|
||||||
developerservices2.apple.com
|
|
||||||
timestamp.apple.com
|
|
||||||
full:notary-submissions-prod.s3-accelerate.amazonaws.com
|
|
||||||
full:notary-submissions-prod.s3.us-west-2.amazonaws.com
|
|
||||||
|
|
||||||
# FoundationDB
|
|
||||||
foundationdb.org
|
|
||||||
|
|
||||||
# macOS forge
|
|
||||||
macosforge.org
|
|
||||||
|
|
||||||
# MacRuby
|
|
||||||
macruby.com
|
|
||||||
macruby.net
|
|
||||||
macruby.org
|
|
||||||
|
|
||||||
# MapKit
|
|
||||||
apple-mapkit.com
|
|
||||||
|
|
||||||
# Playgrounds
|
|
||||||
playgrounds-cdn.apple.com
|
|
||||||
|
|
||||||
# Research & Care
|
|
||||||
carekit.org
|
|
||||||
researchandcare.org
|
|
||||||
researchkit.cn @cn
|
|
||||||
researchkit.com.cn @cn
|
|
||||||
researchkit.hk
|
|
||||||
researchkit.net
|
|
||||||
researchkit.org
|
|
||||||
researchkit.tv
|
|
||||||
|
|
||||||
# ServiceTalk
|
|
||||||
servicetalk.io
|
|
||||||
|
|
||||||
# WebKit
|
|
||||||
webkit.org
|
|
||||||
webkitgtk.org
|
|
||||||
wpewebkit.org
|
|
||||||
|
|
||||||
# Other
|
|
||||||
webobjects.com
|
|
||||||
|
|
||||||
full:appleworldwidedeveloper.hb-api.omtrdc.net
|
|
||||||
full:appleworldwidedeveloper.sc.omtrdc.net
|
|
||||||
full:p-events-delivery.akamaized.net
|
|
||||||
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
# ChatGPT Extension
|
|
||||||
full:apple-relay.apple.com
|
|
||||||
full:apple-relay.cloudflare.com
|
|
||||||
full:apple-relay.fastly-edge.com
|
|
||||||
full:apple-relay.mask.apple-dns.net
|
|
||||||
|
|
||||||
# Potentially affected services include:
|
|
||||||
# * eSIM region determination for devices in China
|
|
||||||
# * China-specific version of Apple Maps
|
|
||||||
# * Availability region detection for Apple Watch notifications (High Blood Pressure / Sleep Apnea)
|
|
||||||
# * Enabling Wi-Fi Calling for certain carriers
|
|
||||||
full:gspe1-ssl.ls.apple.com
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
full:certs-lb.apple.com.akadns.net @cn
|
|
||||||
full:certs.apple.com @cn
|
|
||||||
full:crl-lb.apple.com.akadns.net @cn
|
|
||||||
full:crl.apple.com @cn
|
|
||||||
full:ocsp-lb.apple.com.akadns.net @cn
|
|
||||||
full:ocsp.apple.com @cn
|
|
||||||
full:ocsp2-lb.apple.com.akadns.net @cn
|
|
||||||
full:ocsp2.apple.com @cn
|
|
||||||
full:valid.apple.com @cn
|
|
||||||
full:valid.origin-apple.com.akadns.net @cn
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# Apple TV+
|
|
||||||
full:apple-tv-plus-press.apple.com
|
|
||||||
full:hls-amt.itunes.apple.com
|
|
||||||
full:hls.itunes.apple.com
|
|
||||||
full:np-edge.itunes.apple.com
|
|
||||||
full:play-edge.itunes.apple.com
|
|
||||||
full:tv.applemusic.com
|
|
||||||
full:uts-api.itunes.apple.com
|
|
||||||
|
|
||||||
tv.apple.com
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# https://support.apple.com/en-us/HT210060
|
|
||||||
|
|
||||||
appldnld.apple.com
|
|
||||||
configuration.apple.com
|
|
||||||
fcs-keys-pub-prod.cdn-apple.com
|
|
||||||
gdmf-ados.apple.com
|
|
||||||
gdmf.apple.com
|
|
||||||
gg.apple.com
|
|
||||||
gs.apple.com
|
|
||||||
gsra.apple.com
|
|
||||||
ig.apple.com
|
|
||||||
mesu.apple.com
|
|
||||||
oscdn.apple.com
|
|
||||||
osrecovery.apple.com
|
|
||||||
skl.apple.com
|
|
||||||
swcdn.apple.com
|
|
||||||
swdist.apple.com
|
|
||||||
swdownload.apple.com
|
|
||||||
swscan.apple.com
|
|
||||||
updates-http.cdn-apple.com
|
|
||||||
updates.cdn-apple.com
|
|
||||||
wkms-public.apple.com
|
|
||||||
xp.apple.com
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
# Reference: https://zh.wikipedia.org/wiki/%E5%A3%B9%E5%82%B3%E5%AA%92
|
|
||||||
|
|
||||||
appledaily.com
|
|
||||||
appledaily.com.hk
|
|
||||||
appledaily.com.tw
|
|
||||||
appledaily.hk
|
|
||||||
applefruity.com
|
|
||||||
applehealth.com.hk
|
|
||||||
atnext.com
|
|
||||||
bestmallawards.com
|
|
||||||
deluxe.com.hk
|
|
||||||
eracom.com.tw
|
|
||||||
next.hk
|
|
||||||
nextdigital.com.hk
|
|
||||||
nextdigital.com.tw
|
|
||||||
nextfilm.com.hk
|
|
||||||
nextmag.com.tw
|
|
||||||
nextmedia.com
|
|
||||||
nextmedia.com.tw
|
|
||||||
nextmgz.com
|
|
||||||
nextplus.com.hk
|
|
||||||
nexttv.com.tw
|
|
||||||
nextwork.com.hk
|
|
||||||
nextwork.com.tw
|
|
||||||
nextwork.hk
|
|
||||||
nextwork.tw
|
|
||||||
nxtdig.com.hk
|
|
||||||
nxtdig.com.tw
|
|
||||||
omoplanet.com
|
|
||||||
privilege.hk
|
|
||||||
privilege.tw
|
|
||||||
sharpdaily.tw
|
|
||||||
tomonews.net
|
|
||||||
twnextdigital.com
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user