├── .github └── workflows │ ├── .placeholder │ ├── blank.yml │ └── optimize_other.yaml ├── .placeholder ├── 10007.rule ├── Adaway_white_list.prop ├── LICENSE ├── README.md ├── README_en.md ├── adb.txt ├── add.prop ├── all ├── busybox ├── configure ├── .placeholder ├── Adclose.rule ├── add.prop ├── 保留奖励.prop ├── 广告奖励.prop ├── 排除列表.prop ├── 自定义.prop └── 魅族.conf ├── index.html ├── reward ├── update_README.sh └── update_action.sh /.github/workflows/.placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- 1 | name: add_hosts_master 2 | on: 3 | workflow_dispatch: 4 | watch: 5 | types: [started] 6 | schedule: 7 | - cron: '0 */14 * * *' 8 | 9 | jobs: 10 | master: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v3 14 | with: 15 | persist-credentials: false 16 | - name: Create local changes 17 | run: | 18 | sudo rm -rf /etc/localtime 19 | sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 20 | sudo apt-get install -y dos2unix 21 | bash update_action.sh && bash update_README.sh 22 | - name: Commit files 23 | run: | 24 | git pull 25 | git config --local user.email ${{ secrets.MYEMAIL }} 26 | git config --local user.name ${{ secrets.MYUSERNAME }} 27 | git add . 28 | git commit -m "hosts update" -a 29 | - name: Push changes 30 | uses: ad-m/github-push-action@master 31 | with: 32 | github_token: ${{ secrets.GITHUB_TOKEN }} 33 | branch: ${{ github.ref }} 34 | force : true 35 | 36 | developer: 37 | runs-on: ubuntu-latest 38 | steps: 39 | - uses: actions/checkout@v2 40 | with: 41 | ref: developer 42 | - name: Create local changes developer 43 | run: | 44 | sudo rm -rf /etc/localtime 45 | sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 46 | sudo apt-get install -y dos2unix 47 | bash update_action.sh && bash update_README.sh 48 | - name: Commit files developer 49 | run: | 50 | git pull 51 | git config --local user.email ${{ secrets.MYEMAIL }} 52 | git config --local user.name ${{ secrets.MYUSERNAME }} 53 | git add . 54 | git commit -m "hosts update" -a 55 | - name: Push changes developer 56 | uses: ad-m/github-push-action@master 57 | with: 58 | github_token: ${{ secrets.GITHUB_TOKEN }} 59 | branch: developer 60 | force : true 61 | 62 | Feature: 63 | runs-on: ubuntu-latest 64 | steps: 65 | - uses: actions/checkout@v2 66 | with: 67 | ref: Feature 68 | - name: Create local changes Feature 69 | run: | 70 | sudo rm -rf /etc/localtime 71 | sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 72 | sudo apt-get install -y dos2unix 73 | bash update_action.sh && bash update_README.sh 74 | - name: Commit files Feature 75 | run: | 76 | git pull 77 | git config --local user.email ${{ secrets.MYEMAIL }} 78 | git config --local user.name ${{ secrets.MYUSERNAME }} 79 | git add . 80 | git commit -m "hosts update" -a 81 | - name: Push changes Feature 82 | uses: ad-m/github-push-action@master 83 | with: 84 | github_token: ${{ secrets.GITHUB_TOKEN }} 85 | branch: Feature 86 | force : true 87 | 88 | PC_For_Test: 89 | runs-on: ubuntu-latest 90 | steps: 91 | - uses: actions/checkout@v2 92 | with: 93 | ref: PC_For_Test 94 | - name: Create local changes PC_For_Test 95 | run: | 96 | sudo rm -rf /etc/localtime 97 | sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 98 | sudo apt-get install -y dos2unix 99 | bash update_action.sh && bash update_README.sh 100 | - name: Commit files PC_For_Test 101 | run: | 102 | git pull 103 | git config --local user.email ${{ secrets.MYEMAIL }} 104 | git config --local user.name ${{ secrets.MYUSERNAME }} 105 | git add . 106 | git commit -m "hosts update" -a 107 | - name: Push changes PC_For_Test 108 | uses: ad-m/github-push-action@master 109 | with: 110 | github_token: ${{ secrets.GITHUB_TOKEN }} 111 | branch: PC_For_Test 112 | force : true 113 | 114 | Feature1: 115 | runs-on: ubuntu-latest 116 | steps: 117 | - uses: actions/checkout@v2 118 | with: 119 | ref: Feature1 120 | - name: Create local changes Feature1 121 | run: | 122 | sudo rm -rf /etc/localtime 123 | sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 124 | sudo apt-get install -y dos2unix 125 | bash update_action.sh && bash update_README.sh 126 | - name: Commit files Feature1 127 | run: | 128 | git pull 129 | git config --local user.email ${{ secrets.MYEMAIL }} 130 | git config --local user.name ${{ secrets.MYUSERNAME }} 131 | git add . 132 | git commit -m "hosts update" -a 133 | - name: Push changes Feature1 134 | uses: ad-m/github-push-action@master 135 | with: 136 | github_token: ${{ secrets.GITHUB_TOKEN }} 137 | branch: Feature1 138 | force : true 139 | 140 | -------------------------------------------------------------------------------- /.github/workflows/optimize_other.yaml: -------------------------------------------------------------------------------- 1 | name: Optimize Repository 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: '0 0 1 */3 *' 7 | 8 | jobs: 9 | master: 10 | runs-on: ubuntu-latest 11 | permissions: 12 | contents: write 13 | actions: write 14 | 15 | steps: 16 | - uses: actions/checkout@v2 17 | with: 18 | ref: master 19 | 20 | - name: Run git cleanup commands 21 | run: | 22 | git reflog expire --expire=now --all 23 | git gc --aggressive --prune=now 24 | 25 | - name: Clear commit history 26 | run: | 27 | git config --local user.email "${{ secrets.MYEMAIL }}" 28 | git config --local user.name "${{ secrets.MYUSERNAME }}" 29 | git checkout --orphan temp_branch 30 | git add . 31 | git commit -m "clear" 32 | git branch -D master 33 | git branch -m master 34 | git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" 35 | git push -f origin master 36 | 37 | developer: 38 | runs-on: ubuntu-latest 39 | permissions: 40 | contents: write 41 | actions: write 42 | 43 | steps: 44 | - uses: actions/checkout@v2 45 | with: 46 | ref: developer 47 | 48 | - name: Run git cleanup commands 49 | run: | 50 | git reflog expire --expire=now --all 51 | git gc --aggressive --prune=now 52 | 53 | - name: Clear commit history 54 | run: | 55 | git config --local user.email "${{ secrets.MYEMAIL }}" 56 | git config --local user.name "${{ secrets.MYUSERNAME }}" 57 | git checkout --orphan temp_branch 58 | git add . 59 | git commit -m "clear" 60 | git branch -D developer 61 | git branch -m developer 62 | git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" 63 | git push -f origin developer 64 | 65 | Feature: 66 | runs-on: ubuntu-latest 67 | permissions: 68 | contents: write 69 | actions: write 70 | 71 | steps: 72 | - uses: actions/checkout@v2 73 | with: 74 | ref: Feature 75 | 76 | - name: Run git cleanup commands 77 | run: | 78 | git reflog expire --expire=now --all 79 | git gc --aggressive --prune=now 80 | 81 | - name: Clear commit history 82 | run: | 83 | git config --local user.email "${{ secrets.MYEMAIL }}" 84 | git config --local user.name "${{ secrets.MYUSERNAME }}" 85 | git checkout --orphan temp_branch 86 | git add . 87 | git commit -m "clear" 88 | git branch -D Feature 89 | git branch -m Feature 90 | git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" 91 | git push -f origin Feature 92 | 93 | Feature1: 94 | runs-on: ubuntu-latest 95 | permissions: 96 | contents: write 97 | actions: write 98 | 99 | steps: 100 | - uses: actions/checkout@v2 101 | with: 102 | ref: Feature1 103 | 104 | - name: Run git cleanup commands 105 | run: | 106 | git reflog expire --expire=now --all 107 | git gc --aggressive --prune=now 108 | 109 | - name: Clear commit history 110 | run: | 111 | git config --local user.email "${{ secrets.MYEMAIL }}" 112 | git config --local user.name "${{ secrets.MYUSERNAME }}" 113 | git checkout --orphan temp_branch 114 | git add . 115 | git commit -m "clear" 116 | git branch -D Feature1 117 | git branch -m Feature1 118 | git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" 119 | git push -f origin Feature1 120 | 121 | PC_For_Test: 122 | runs-on: ubuntu-latest 123 | permissions: 124 | contents: write 125 | actions: write 126 | 127 | steps: 128 | - uses: actions/checkout@v2 129 | with: 130 | ref: PC_For_Test 131 | 132 | - name: Run git cleanup commands 133 | run: | 134 | git reflog expire --expire=now --all 135 | git gc --aggressive --prune=now 136 | 137 | - name: Clear commit history 138 | run: | 139 | git config --local user.email "${{ secrets.MYEMAIL }}" 140 | git config --local user.name "${{ secrets.MYUSERNAME }}" 141 | git checkout --orphan temp_branch 142 | git add . 143 | git commit -m "clear" 144 | git branch -D PC_For_Test 145 | git branch -m PC_For_Test 146 | git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" 147 | git push -f origin PC_For_Test 148 | -------------------------------------------------------------------------------- /.placeholder: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Adaway_white_list.prop: -------------------------------------------------------------------------------- 1 | ######### 2 | #Adaway专用白名单 3 | #禁止用在拦截黑名单或者Adguard订阅 4 | # _ ___ ___ _____ 5 | #/ |/ _ \ / _ \___ | 6 | #| | | | | | | | / / 7 | #| | |_| | |_| |/ / 8 | #|_|\___/ \___//_/ 9 | # 10 | ########### 11 | #host屏蔽的域名 12 | #X5内核 13 | cfg.imtt.qq.com 14 | soft.tbs.imtt.qq.com 15 | res.imtt.qq.com 16 | #手机搜狗输入法 17 | shouji.sougou.com 18 | #MIUI 流量中心 19 | api.miui.security.xiaomi.com 20 | api.sec.intl.miui.com 21 | api.sec.miui.com 22 | #涉及流量校正以及应用列表上传 23 | adv.sec.miui.com 24 | flash.sec.miui.com 25 | #QQ直播 26 | livew.l.qq.com 27 | l.qq.com 28 | #魅族 29 | aider.meizu.com 30 | www.meizu.com 31 | store.meizu.com 32 | #魅族天气 33 | aider-res.meizu.com 34 | #爱奇艺、腾讯视频 35 | mdevstat.qqlive.qq.com 36 | t7z.cupid.iqiyi.com 37 | msg.video.qiyi.com 38 | #抖音小程序、今日头条搜索 39 | is.snssdk.com 40 | i*.snssdk.com 41 | #QQ邮箱 42 | iwx.mail.qq.com 43 | #腾讯活动 44 | aegis.qq.com 45 | ios.bugly.qq.com 46 | msdk.qq.com 47 | ssl.msdk.qq.com 48 | img.ssl.msdk.qq.com 49 | ap6.ssl.msdk.qq.com 50 | #QQ微信小(程序)游戏 51 | game.weixin.qq.com 52 | #dir.minigame.qq.com 53 | #game.html5.qq.com 54 | #user1.game.qq.com 55 | #MIUI 天气预报 56 | wtradv.market.xiaomi.com 57 | #推特(第三方调用) 58 | api.twitter.com 59 | mobile.twitter.com 60 | twitter.com 61 | www.twitter.com 62 | #MIUI 快应用 63 | www.api.hybrid.intl.xiaomi.com 64 | api.hybrid.intl.xiaomi.com 65 | #网易某版本 66 | api.iplay.163.com 67 | #九游游戏中心 68 | api.open.uc.cn 69 | #百度小程序 70 | ossapi.baidu.com 71 | #UC文章 72 | mparticle.uc.cn 73 | #微信福利/活动中心 74 | isee.weishi.qq.com 75 | #京东图片api 76 | img14.360buyimg.com 77 | #腾讯充值 78 | midas.gtimg.cn 79 | api.unipay.qq.com 80 | #皮皮虾/字节跳动 81 | mon.snssdk.com 82 | mon.isnssdk.com 83 | dig.bdurl.net 84 | is-hl.snssdk.com 85 | p**-ppx.byteimg.com 86 | dig.zjurl.cn 87 | i.snssdk.com 88 | #sf3-ttcdn-tos.pstatp.com 89 | dm.toutiao.com 90 | #应用宝 91 | pp.myapp.com 92 | #淘宝授权 93 | acs4baichuan.m.taobao.com 94 | #淘宝活动 95 | s.click.taobao.com 96 | s.click.alimama.com 97 | s.click.tmall.com 98 | #pornhub 99 | ss.phncdn.com 100 | ei.phncdn.com 101 | dm1.phncdn.com 102 | di.phncdn.com 103 | cdn1d-static-shared.phncdn.com 104 | cdn1-smallimg.phncdn.com 105 | cn.pornhub.com 106 | www.pornhub.com 107 | #知乎小程序 108 | sugar.zhihu.com 109 | #支付宝生活号 110 | gm.mmstat.com 111 | #支付宝扫码支付 112 | pingjs.qq.com 113 | #支付宝运动 114 | wgo.mmstat.com 115 | #迅雷影音api 116 | api-shoulei-ssl.xunlei.com 117 | #MIUI浏览器在线翻译 118 | ssl-cdn.static.browser.mi-img.com 119 | #MIUI浏览器关键词联想 120 | #activity.browser.intl.miui.com 121 | #reader.browser.miui.com 122 | #X5内核文档插件下载 123 | static.res.qq.com 124 | #MIUI天星金融钱包 125 | api.jr.mi.com 126 | #豌豆荚网络下载 127 | alissl.ucdl.pp.uc.cn 128 | #微博国际版图片保存 129 | wx2.sinaimg.cn 130 | #百度百科 131 | baikebcs.bdimg.com 132 | bkimg.cdn.bcebos.com 133 | #QQ安全网址访问 134 | c.pc.qq.com 135 | #cdn加速 136 | cdn.bootcdn.net 137 | #未知的白名单 138 | #rpc-php.trafficfactory.biz 139 | #adv.sec.miui.com 140 | #data.mistat.xiaomi.com 141 | #adash.man.aliyuncs.com 142 | #微信广告政策 143 | ads.privacy.qq.com 144 | #百度求医问药网 145 | med-fe.cdn.bcebos.com 146 | #微信部分小程序登陆 147 | pv.sohu.com 148 | #百度百家号 149 | f10.baidu.com 150 | #MIUI 主题 151 | zhuti.xiaomi.com 152 | #爱(i)茅台 153 | mm1.365dmp.com 154 | mm3.365dmp.com 155 | sfp.safe.baidu.com 156 | sofire.bdstatic.com 157 | sofire.baidu.com 158 | #MIUI浏览器 159 | hot.browser.intl.miui.com 160 | hot.browser.miui.com 161 | #360清理大师 162 | sjws.ssl.qihucdn.com 163 | mvconf.f.360.cn 164 | #腾讯新闻 165 | #news.l.qq.com 166 | #xw.qq.com 167 | pacaio.match.qq.com 168 | #news.ssp.qq.com 169 | #UC浏览器 170 | emoji.uc.cn 171 | #m.uczzd.cn 172 | iflow.uc.cn 173 | iflow-api.uc.cn 174 | iflow.uczzd.cn 175 | #夸克浏览器下载插件 176 | pdds-c1-cdn.uc.cn 177 | pdds.ucweb.com 178 | #DNS服务器 179 | dns9.quad9.net 180 | dns.cloudflare.com 181 | dns.rubyfish.cn 182 | 1dot1dot1dot1.cloudflare-dns.com 183 | dns.alidns.com 184 | dns.google.com 185 | #腾讯追踪 186 | #btrace.qq.com 187 | #h.trace.qq.com 188 | #淘宝菜鸟裹裹 189 | #zconfig.alibabausercontent.com 190 | #sjarvis.taobao.com 191 | appdownload.alicdn.com 192 | #QQ微信头像 193 | wx.qlogo.cn 194 | py.qlogo.cn 195 | py2.qlogo.cn 196 | p.qlogo.cn 197 | #抖音网页版验证图片 198 | verify.snssdk.com 199 | mcs.snssdk.com 200 | vcs.snssdk.com 201 | #小米隐私收集 202 | data.mistat.*xiaomi.com 203 | www.data.mistat.*xiaomi.com 204 | o.data.mistat.xiaomi.com 205 | #QQ安全中心 206 | aq.qq.com 207 | #QQ头像 208 | #pgdt.gtimg.cn 209 | #美团外卖 210 | #pingma.qq.com 211 | #小米隐私收集(为了省电,所以排除) 212 | tracking.*miui.com 213 | www.tracking.*miui.com 214 | #小米广告配置文件 215 | sdkconfig.ad*.xiaomi.com 216 | www.sdkconfig.ad*.xiaomi.com 217 | #MIUI手机管家 218 | data.sec*.miui.com 219 | www.data.sec*.miui.com 220 | #小米文件下载 221 | api.airpush.com 222 | file.xmpush.xiaomi.com 223 | api.airpush.com 224 | api-push.meizu.com 225 | file.xiaomi.com 226 | f8.market.xiaomi.com 227 | f4.market.xiaomi.com 228 | #MIUI黄页 229 | api.huangye.miui.com 230 | #MIUI垃圾清理 231 | flash.sec.miui.com 232 | flash.sec.intl.miui.com 233 | staging.flash.sec.miui.com 234 | #小爱同学个人信息获取 235 | tracker.ai.xiaomi.com 236 | #小米主题设计师注册 237 | market.xiaomi.com 238 | #百度贴吧表情误杀 239 | static.tieba.baidu.com 240 | gsp0.baidu.com 241 | #咪咕爱看视频 242 | aikanvod.miguvideo.com 243 | aikanlive.miguvideo.com 244 | #部分设备的小米推送 245 | resolver.msg.xiaomi.net 246 | resolver.gslb.mi-idc.com 247 | register.xmpush.xiaomi.com 248 | register*mi.com 249 | resolver*mi.com 250 | app.chat.xiaomi.net 251 | cn.app.chat.xiaomi.net 252 | *?.mistat.xiaomi.com 253 | abtest.mistat.xiaomi.com 254 | data.mistat.xiaomi.com 255 | cn.register.xmpush.xiaomi.com 256 | idmb.register.xmpush.global.xiaomi.com 257 | ru.register.xmpush.global.xiaomi.com 258 | fr.register.xmpush.global.xiaomi.com 259 | register.xmpush.global.xiaomi.com 260 | #部分设备的小米云服务 261 | api.g.micloud.xiaomi.net 262 | #小米云备份 263 | #a0.app.xiaomi.com 264 | #api.ad.xiaomi.com 265 | #globalapi.ad.xiaomi.com 266 | #QQ浏览器插件误杀 267 | tbsone.imtt.qq.com 268 | #UC浏览器网盘 269 | #uc.ucweb.com 270 | puds.ucweb.com 271 | #OPPO账号相关? 272 | u.oppomobile.com 273 | #新浪新闻图片 274 | k.sinaimg.cn 275 | #酷安推送来自酷安@ck388(http://www.coolapk.com/u/1347977) 276 | guid.tpns.tencent.com 277 | access1.tpns.tencent.com 278 | #有道翻译官网页翻译 279 | c.youdao.com 280 | #百度网盘签到图片界面 281 | staticsns.cdn.bcebos.com 282 | #大众养生网 283 | mipcache.bdstatic.com 284 | #阿里云盘网络验证码(酷安@我是真爱kun) 285 | acs.m.taobao.com 286 | #夸克网盘扫码登陆 287 | t.uc.cn 288 | #Flyme 游戏下载(酷安@何言与君识) 289 | api-game.meizu.com 290 | game.res.meizu.com 291 | #OPPO商店登陆 292 | client-uc.heytapmobi.com 293 | dragate.dc.oppomobile.com 294 | dragate-cn.dc.heytapmobi.com 295 | #网易云音乐 音效下载 296 | d*.music.126.net 297 | #新浪新闻网页误杀 298 | mix.sina.com.cn 299 | cre.dp.sina.cn 300 | gk.sina.cn 301 | #头条授权登陆 302 | open.snssdk.com 303 | #网易年度总结 304 | count.mail.163.com 305 | #360翻译 306 | gw.shouji.360.cn 307 | msedown.360safe.com 308 | #移动一键登录 309 | da.mmarket.com 310 | #OPPO应用配置 311 | appconf.heytapdownload.com 312 | #京东 313 | gia.jd.com 314 | me-api.jd.com 315 | api.m.jd.com 316 | ms.jr.jd.com 317 | active.jd.com 318 | pro.m.jd.com 319 | m.jd.watbe.top 320 | m.jd.watbc.top 321 | #百度手机广告 322 | ecmb.bdimg.com 323 | ecma.bdimg.com 324 | #百度手机输入法 325 | udpolimenew.baidu.com 326 | mime.baidu.com 327 | #淘宝 328 | amdc.m.taobao.com 329 | click.mz.simba.taobao.com 330 | s.click.taobao.com 331 | eco.taobao.com 332 | err.taobao.com 333 | tunion-api.m.taobao.com 334 | zconfig.alibabausercontent.com 335 | #OPPO 应用商店 主题 开屏广告 336 | api-cn.store.heytapmobi.com 337 | api-cn.theme.heytapmobi.com 338 | #网易光遇 sky 登录 339 | #感谢*(https://github.com/niani2)反馈 340 | fp-upload.dun.163.com 341 | #放行一堆click 342 | click-trk.com 343 | clickcease.com 344 | clickdimensions.com 345 | clickiocdn.com 346 | clicktale.net 347 | intercom-clicks.com 348 | klclick*.com 349 | personaclick.com 350 | click.aliexpress.com 351 | click.allkeyshop.com 352 | click.alternate.de 353 | click.member.americanexpress.com 354 | click.appcast.io 355 | clicks.aweber.com 356 | click.emcom.bankofamerica.com 357 | click.em.blizzard.com 358 | click.myctm.canadiantire.ca 359 | target.clickfunnels.com 360 | click.cptrack.de 361 | click.mc.crimsontrace.com 362 | clickserve.dartsearch.net 363 | click.o.delta.com 364 | click.discord.com 365 | click.dji.com 366 | ad.doubleclick.net 367 | click*.experian.com 368 | click.fidelityinvestments.com 369 | click.holidayinnclubemail.com 370 | click.instantink.hpsmart.com 371 | click.icptrack.com 372 | click.email.jcpenney.com 373 | click.justwatch.com 374 | click.klarna.de 375 | click.chp.kohls.com 376 | click.s.kohls.com 377 | click.e.krogermail.com 378 | click.landsend.com 379 | click.linksynergy.com 380 | click.e.lowes.com 381 | click.mail.macmillan.com 382 | click.microsoft*.com 383 | click.mlsend.com 384 | click.email.newegg.com 385 | click.members.nra.org 386 | clicks.pipaffiliates.com 387 | click.pstmrk.it 388 | click.redditmail.com 389 | click.royalcaribbeanmarketing.com 390 | click.e.safelite.com 391 | click.em.samsclub.com 392 | click.e.sees.com 393 | click.snapshat.com 394 | click.email.sonos.com 395 | click*.taobao.com 396 | click.mailing.ticketmaster.com 397 | clicks.trx-hub.com 398 | cdn.webclicks24.com 399 | click.zoom.us 400 | # 抖音小程序 401 | #pitaya.bytedance.com 402 | # 网易云蜗牛阅读 403 | du.163.com 404 | #网易云音乐听歌统计 405 | clientlog*music.163.com 406 | clientlogdep.music.163.com 407 | clientlogsf.music.163.com 408 | clientlog3.music.163.com 409 | # 抖音订单 410 | haohuo.snssdk.com 411 | # 联通营业厅 412 | ad.10010.com 413 | # 其他规则白名单 414 | # play商店 415 | app.adjust.com 416 | # 阿里巴巴 417 | ad.alimama.com 418 | alimama.com 419 | ad.jp 420 | ad.ourgame.com 421 | retcode.taobao.com 422 | m.intl.taobao.com 423 | advertisement.taobao.com 424 | tbskip.taobao.com 425 | eco.taobao.com 426 | #抖音 427 | ads.com 428 | ads.tiktok.com 429 | adv.blogupp.com 430 | # adobe 431 | na1r.services.adobe.com 432 | ereg.adobe.com 433 | lmlicenses.wip4.adobe.com 434 | #哔哩哔哩 435 | live-trace.bilibili.com 436 | g.msn.com 437 | # 腾讯视频 438 | c.gj.qq.com 439 | vd.l.qq.com 440 | mini2015.qq.com 441 | soup.v.qq.com 442 | # 百度贴吧 443 | gsp1.baidu.com 444 | sp1.baidu.com 445 | sp0.baidu.com 446 | sp2.baidu.com 447 | fexclick.baidu.com 448 | bce.baidu.com 449 | bj.bcebos.com 450 | #新浪微博 451 | sax.sina.com.cn 452 | wbapp.mobile.sina.cn 453 | u1.img.mobile.sina.cn 454 | # NOMO APP 455 | sdkapi.sms.mob.com 456 | news-l.play.aiseet.atianqi.com 457 | p-l.play.aiseet.atianqi.com 458 | # 支付宝 459 | mmstat.com 460 | # 支付宝以及淘宝农场任务 461 | audid-api.taobao.com 462 | audid-api-sg.taobao.com 463 | #139邮箱 464 | ad.mcloud.139.com 465 | #百度贴吧签到 466 | als.baidu.com 467 | #skype 468 | browser.pipe.aria.microsoft.com 469 | evtubescms.phncdn.com 470 | c1.skype.com 471 | events.data.microsoft.com 472 | mobile.pipe.aria.microsoft.com 473 | #mytvsuper 474 | imasdk.googleapis.com 475 | #123云盘卡开屏 476 | sdk-api.beizi.biz 477 | #快手送礼物 478 | w1.kskwai.com 479 | #唯品会APP 480 | api.union.vip.com 481 | #云闪付领券 482 | #ads.cup.com.cn 483 | #analytics.95516.com 484 | #百度部分UI图标 485 | gips1.baidu.com 486 | gips2.baidu.com 487 | #抖音人脸验证 488 | saveu*.zijieapi.com 489 | saveu.zijieapi.com 490 | mcs.zijieapi.com 491 | rcs.cmpassport.com 492 | saveu3-normal-lq.zijieapi.com 493 | saveu5-normal-lq.zijieapi.com 494 | #MIUI在线权限管理器服务获取 495 | srv.sec.miui.com 496 | srv.sec.intl.miui.com 497 | #美图在线聊天 498 | api.neixin.cn 499 | #神马搜索建议 500 | sugs.m.sm.cn 501 | #奇异果Tv 502 | sdk.ptqy.gitv.tv 503 | #推送服务 504 | android.push.126.net 505 | httpdns.push.oppomobile.com 506 | #一堆ads 507 | ad.10010.com 508 | ad.12306.cn 509 | ad.3.cn 510 | ad.alimama.com 511 | ad.ourgame.com 512 | ad.thsi.cn 513 | ad.vivo.com.cn 514 | ad4.on.cc 515 | addon.dismall.com 516 | adjs.8591.com.tw 517 | adnet.qq.com 518 | adnxs.com 519 | adobedtm.com 520 | ads.lingxing.com 521 | ads.privacy.qq.com 522 | ads.tiktok.com 523 | #腾讯视频第三方API 524 | h5vv6.video.qq.com 525 | #手机性能排行 526 | img14.360buyimg.com 527 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 去广告订阅自动更新 2 | ## [English](./README_en.md) 3 | 4 | ## 统计 (2025-06-02 22:22:56) 5 | ``` 6 | 完整版累积拦截域名: 50361 7 | 保留广告奖励累积拦截域名: 50291 8 | ``` 9 | ### 访问量 : ![visitors](http://006.freecounters.co.uk/count-133.pl?count=qe1milbo7p68gg219fmj&type=links&prog=unique) 10 | 11 | ## 订阅 12 | ### 国内请用 **镜像链接** 13 | 14 | | **名称** | **链接** | **镜像链接** | **Github订阅加速链接** | 15 | | :-- | :-- | :-- | :-- | 16 | | **完整版** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/all) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/all) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/all) | 17 | | **保留广告奖励** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/reward) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/reward) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/reward) | 18 | | **Adblock规则** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/adb.txt) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/adb.txt) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/adb.txt) | 19 | | **Adaway白名单** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/Adaway_white_list.prop) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/Adaway_white_list.prop) | 20 | | **Adclose规则订阅** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/10007.rule) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/10007.rule) | 21 | 22 | 23 | 24 | ## **[捐赠地址](https://github.com/lingeringsound/10007)** 25 | 26 | 27 | ## 引用和致谢 28 | | **Hosts引用链接** | 感谢各位大佬 | 29 | | :-- | :-- | 30 | | [大圣净化](https://github.com/jdlingyu/ad-wars) | ❤感谢!❤ | 31 | | [yhost](https://github.com/VeleSila/yhosts) | ❤感谢!❤ | 32 | | [Steven Black](https://github.com/StevenBlack/hosts) | ❤感谢!❤ | 33 | | [oisd](https://oisd.nl/howto) | ❤感谢!❤ | 34 | | [neodevhost](https://raw.githubusercontent.com/neodevpro/neodevhost/master/host) | ❤感谢!❤ | 35 | | [1024](https://github.com/Goooler/1024_hosts) | ❤感谢!❤ | 36 | | [adhost](https://github.com/E7KMbb/AD-hosts) | ❤感谢!❤ | 37 | | [hblock](https://hblock.molinero.dev/hosts) | ❤感谢!❤ | 38 | | [1Host](https://o0.pages.dev/Lite/hosts.txt) | ❤感谢!❤ | 39 | 40 | -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- 1 | ## REmove Ads Host 2 | ## [中文](./README.md) 3 | 4 | ## count 5 | ``` 6 | all: 50361 7 | reward: 50291 8 | ``` 9 | ### ![visitors](https://visitor-badge.glitch.me/badge?page_id=lingeringsound.10007&left_color=green&right_color=red) 10 | 11 | | **name** | **links** | 12 | | :-- | :-- | 13 | | **all** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/all) | 14 | | **reward** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/reward) | 15 | | **Adblock** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/adb.txt) | 16 | 17 | ## **[Donate](https://github.com/lingeringsound/10007)** 18 | 19 | ## 引用和致谢 20 | | **Hosts引用链接** | 感谢各位大佬 | 21 | | :-- | :-- | 22 | | [大圣净化](https://github.com/jdlingyu/ad-wars) | ❤感谢!❤ | 23 | | [yhost](https://github.com/VeleSila/yhosts) | ❤感谢!❤ | 24 | | [Steven Black](https://github.com/StevenBlack/hosts) | ❤感谢!❤ | 25 | | [oisd](https://oisd.nl/howto) | ❤感谢!❤ | 26 | | [1024](https://github.com/Goooler/1024_hosts) | ❤感谢!❤ | 27 | | [adhost](https://github.com/E7KMbb/AD-hosts) | ❤感谢!❤ | 28 | | [hlock](https://hblock.molinero.dev/hosts) | ❤感谢!❤ | 29 | | [1Host](https://o0.pages.dev/Lite/hosts.txt) | ❤感谢!❤ | 30 | 31 | -------------------------------------------------------------------------------- /add.prop: -------------------------------------------------------------------------------- 1 | ! 爱奇艺腾讯视频网页版广告,删除了客户端没广告,网页就打不开。 2 | ! 这两没用了 3 | @@||t7z.cupid.iqiyi.com^$document 4 | @@||mdevstat.qqlive.qq.com^$document 5 | 6 | ||adsmind.gdtimg.com^ 7 | ||c2.gdt.qq.com^ 8 | ||d.gdt.qq.com^ 9 | ||gw.365you.com^ 10 | ||h5.gdt.qq.com^ 11 | ||i.gdt.qq.com^ 12 | ||ii.gdt.qq.com^ 13 | ||ipv4.gdt.qq.com^ 14 | ||m.gdt.qq.com^ 15 | ||mi.gdt.qq.com^ 16 | ||nc.gdt.qq.com^ 17 | ||pgdt.ugdtimg.com^ 18 | ||pgdt.gtimg.cn^ 19 | ||pv.sohu.com^ 20 | ||q.i.gdt.qq.com^ 21 | ||rm.gdt.qq.com^ 22 | ||sdk.e.qq.com^ 23 | ||t.gdt.qq.com^ 24 | ||v2.gdt.qq.com^ 25 | ||v3.gdt.qq.com^ 26 | ||vr.gdt.qq.com^ 27 | ||x.adnet.qq.com^ 28 | ||xc.gdt.qq.com^ 29 | ! QQ广告奖励 30 | ||win.gdt.qq.com^ 31 | ! 抖音广告奖励 32 | ! ||is.snssdk.com^ 33 | ! 微信广告奖励 34 | ! ||wxsnsad.tc.qq.com^ 35 | ! ||wxsnsdy.tc.qq.com^ 36 | ! ||wxsnsdy.video.qq.com^ 37 | ! 微信红包封面/某些图片也是这个域名加载不出来就自己放行。 38 | ! ||wxsnsdy.wxs.qq.com 39 | ! ||wxsnsdythumb.wxs.qq.com^ 40 | ! 微信小程序奖励 41 | ! ||wxa.wxs.qq.com^ 42 | ! ||wximg.wxs.qq.com^ 43 | ! ||wxsmw.wxs.qq.com^ 44 | ! 百度云视频广告奖励 45 | ! ||nadvideo.baidu.com^ 46 | ! ||nadvideo2.baidu.com^ 47 | ! 快手支持 48 | ! 删掉会使得部分开屏广告复燃 49 | ||open.e.kuaishou.com^ 50 | ||e.kuaishou.com^ 51 | ||api2.e.kuaishou.com^ 52 | ||api.e.kuaishou.com^ 53 | ! APP分享 54 | ! 注释掉可获得广告奖励 55 | ! 但是也会有部广告重新出现,毕竟穿山甲是目前最恶心的广告联盟 56 | ||log-api.pangolin-sdk-toutiao-b.com^ 57 | ||log-api.pangolin-sdk-toutiao.com^ 58 | ||api-access.pangolin-sdk-toutiao.com^ 59 | ||api-access.pangolin-sdk-toutiao-b.com^ 60 | ! QQ音乐免费时长广告奖励 61 | ||adstats.tencentmusic.com^ 62 | ||ad.tencentmusic.com^ 63 | ||adexpo.tencentmusic.com^ 64 | ||adcdn.tencentmusic.com^ 65 | ||adclick.tencentmusic.com^ 66 | ||adsmind.gdtimg.com^ 67 | ||rpt.gdt.qq.com^ 68 | ||v.gdt.qq.com^ 69 | ||c.gdt.qq.com^ 70 | ||tmead.y.qq.com^ 71 | ||tmeadcomm.y.qq.com^ 72 | ! QQ音乐广告奖励检测 73 | ||oth.eve.mdt.qq.com^ 74 | ||oth.str.mdt.qq.com^ 75 | ||oth.update.mdt.qq.com^ 76 | ||mtt.eve.mdt.qq.com^ 77 | ||mtt.str.mdt.qq.com^ 78 | ! biubiu加速器 79 | ||adx-bj.anythinktech.com^ 80 | ||adx-bj-req.anythinktech.com^ 81 | ||dc.sigmob.cn^ 82 | ||cn-api.anythinktech.com^ 83 | ||cn-tk.anythinktech.com^ 84 | ||tk.anythinktech.com^ 85 | ||adx.anythinktech.com^ 86 | 87 | 88 | ! 放行一些规则防止误杀 89 | ! 日志收集,禁用会占用大量CPU 90 | @@||ulog*.*.com^$important 91 | @@||toblog.ctobsnssdk.com^$important 92 | ! 阿里/支付宝 93 | @@||mmstat.com^$important 94 | ! 小米商店登陆 95 | @@||sdkconfig.ad.xiaomi.com^$important 96 | ! 360域名 97 | @@||360.cn^$document 98 | ! X5内核 99 | @@||cfg.imtt.qq.com^$document 100 | @@||soft.tbs.imtt.qq.com^$document 101 | @@||res.imtt.qq.com^$document 102 | ! 手机搜狗输入法 103 | @@||shouji.sougou.com^$document 104 | ! MIUI 流量中心 105 | @@||api.miui.security.xiaomi.com^$document 106 | @@||api.sec.intl.miui.com^$document 107 | @@||api.sec.miui.com^$document 108 | ! QQ直播 109 | @@||livew.l.qq.com^$document 110 | ! 魅族 111 | @@||aider.meizu.com^$document 112 | @@||www.meizu.com^$document 113 | @@||store.meizu.com^$document 114 | ! 魅族天气 115 | @@||aider-res.meizu.com^$document 116 | ! 抖音小程序、今日头条搜索 117 | @@||is.snssdk.com^$document 118 | ! QQ邮箱 119 | @@||iwx.mail.qq.com^$document 120 | ! MIUI 天气预报 121 | @@||wtradv.market.xiaomi.com^$document 122 | ! 推特(第三方调用) 123 | @@||api.twitter.com^$document 124 | @@||mobile.twitter.com^$document 125 | @@||twitter.com^$document 126 | @@||www.twitter.com^$document 127 | ! MIUI 快应用 128 | @@||www.api.hybrid.intl.xiaomi.com^$document 129 | @@||api.hybrid.intl.xiaomi.com^$document 130 | ! 网易某版本 131 | @@||api.iplay.163.com^$document 132 | ! 九游游戏中心 133 | @@||api.open.uc.cn^$document 134 | ! 百度小程序 135 | @@||ossapi.baidu.com^$document 136 | ! UC文章 137 | @@||mparticle.uc.cn^$document 138 | ! 微信福利/活动中心 139 | @@||isee.weishi.qq.com^$document 140 | ! 京东图片api 141 | @@||img14.360buyimg.com^$document 142 | ! 腾讯充值 143 | @@||midas.gtimg.cn^$document 144 | @@||api.unipay.qq.com^$document 145 | ! 皮皮虾/字节跳动 146 | @@||mon.snssdk.com^$document 147 | @@||mon.isnssdk.com^$document 148 | @@||dig.bdurl.net^$document 149 | @@||is-hl.snssdk.com^$document 150 | @@||p*-ppx.byteimg.com^ 151 | @@||dig.zjurl.cn^$document 152 | @@||i.snssdk.com^$document 153 | @@||dm.toutiao.com^$document 154 | ! 应用宝 155 | @@||pp.myapp.com^$document 156 | ! 淘宝授权 157 | @@||acs4baichuan.m.taobao.com^$document 158 | ! 淘宝活动 159 | @@||s.click.taobao.com^$document 160 | @@||s.click.alimama.com^$document 161 | @@||s.click.tmall.com^$document 162 | ! pornhub 163 | @@||ss.phncdn.com^$document 164 | @@||ei.phncdn.com^$document 165 | @@||dm1.phncdn.com^$document 166 | @@||di.phncdn.com^$document 167 | @@||cdn1d-static-shared.phncdn.com^$document 168 | @@||cdn1-smallimg.phncdn.com^$document 169 | @@||cn.pornhub.com^$document 170 | @@||www.pornhub.com^$document 171 | ! 知乎小程序 172 | @@||sugar.zhihu.com^$document 173 | ! 支付宝生活号 174 | @@||gm.mmstat.com^$document 175 | ! 支付宝扫码支付 176 | @@||pingjs.qq.com^$document 177 | ! 支付宝运动 178 | @@||wgo.mmstat.com^$document 179 | ! 迅雷影音api 180 | @@||api-shoulei-ssl.xunlei.com^$document 181 | ! MIUI浏览器在线翻译 182 | @@||ssl-cdn.static.browser.mi-img.com^$document 183 | ! X5内核文档插件下载 184 | @@||static.res.qq.com^$document 185 | ! MIUI天星金融钱包 186 | @@||api.jr.mi.com^$document 187 | ! 豌豆荚网络下载 188 | @@||alissl.ucdl.pp.uc.cn^$document 189 | ! 微博国际版图片保存 190 | @@||wx2.sinaimg.cn^$document 191 | ! 百度百科 192 | @@||baikebcs.bdimg.com^$document 193 | @@||bkimg.cdn.bcebos.com^$document 194 | ! QQ安全网址访问 195 | @@||c.pc.qq.com^$document 196 | ! cdn加速 197 | @@||cdn.bootcdn.net^$document 198 | ! 微信广告政策 199 | @@||ads.privacy.qq.com^$document 200 | ! 百度求医问药网 201 | @@||med-fe.cdn.bcebos.com^$document 202 | ! 微信部分小程序登陆 203 | @@||pv.sohu.com^$document 204 | ! 百度百家号 205 | @@||f10.baidu.com^$document 206 | ! MIUI 主题 207 | @@||zhuti.xiaomi.com^$document 208 | ! 爱(i)茅台 209 | @@||mm1.365dmp.com^$document 210 | @@||mm3.365dmp.com^$document 211 | @@||sfp.safe.baidu.com^$document 212 | @@||sofire.bdstatic.com^$document 213 | @@||sofire.baidu.com^$document 214 | ! MIUI浏览器 215 | @@||hot.browser.intl.miui.com^$document 216 | @@||hot.browser.miui.com^$document 217 | ! 360清理大师 218 | @@||sjws.ssl.qihucdn.com^$document 219 | @@||mvconf.f.360.cn^$document 220 | ! 腾讯新闻 221 | @@||pacaio.match.qq.com^$document 222 | ! UC浏览器 223 | @@||emoji.uc.cn^$document 224 | @@||iflow.uc.cn^$document 225 | @@||iflow-api.uc.cn^$document 226 | @@||iflow.uczzd.cn^$document 227 | ! 夸克浏览器下载插件 228 | @@||pdds-c1-cdn.uc.cn^$document 229 | @@||pdds.ucweb.com^$document 230 | ! DNS服务器 231 | @@||dns9.quad9.net^$document 232 | @@||dns.cloudflare.com^$document 233 | @@||dns.rubyfish.cn^$document 234 | @@||1dot1dot1dot1.cloudflare-dns.com^$document 235 | @@||dns.alidns.com^$document 236 | @@||dns.google.com^$document 237 | ! 淘宝菜鸟裹裹 238 | @@||appdownload.alicdn.com^$document 239 | ! QQ微信头像 240 | @@||wx.qlogo.cn^$document 241 | @@||py.qlogo.cn^$document 242 | @@||py2.qlogo.cn^$document 243 | @@||p.qlogo.cn^$document 244 | ! 抖音网页版验证图片 245 | @@||verify.snssdk.com^$document 246 | ! QQ安全中心 247 | @@||aq.qq.com^$document 248 | ! 小米文件下载 249 | @@||api.airpush.com^$document 250 | @@||file.xmpush.xiaomi.com^$document 251 | @@||api.airpush.com^$document 252 | @@||api-push.meizu.com^$document 253 | @@||file.xiaomi.com^$document 254 | @@||f8.market.xiaomi.com^$document 255 | @@||f4.market.xiaomi.com^$document 256 | ! MIUI黄页 257 | @@||api.huangye.miui.com^$document 258 | ! MIUI垃圾清理 259 | @@||flash.sec.miui.com^$document 260 | @@||flash.sec.intl.miui.com^$document 261 | @@||staging.flash.sec.miui.com^$document 262 | ! 小爱同学个人信息获取 263 | @@||tracker.ai.xiaomi.com^$document 264 | ! 小米主题设计师注册 265 | @@||market.xiaomi.com^$document 266 | ! 百度贴吧表情误杀 267 | @@||static.tieba.baidu.com^$document 268 | @@||gsp0.baidu.com^$document 269 | ! 咪咕爱看视频 270 | @@||aikanvod.miguvideo.com^$document 271 | @@||aikanlive.miguvideo.com^$document 272 | ! 部分设备的小米推送 273 | @@||resolver.msg.xiaomi.net^$document 274 | @@||register.xmpush.xiaomi.com^$document 275 | @@||app.chat.xiaomi.net^$document 276 | @@||resolver.gslb.mi-idc.com^$document 277 | @@||mistat.xiaomi.com^ 278 | @@||register*mi.com^ 279 | @@||resolver*mi.com^ 280 | ! 部分设备的小米云服务 281 | @@||api.g.micloud.xiaomi.net^$document 282 | ! QQ浏览器插件误杀 283 | @@||tbsone.imtt.qq.com^$document 284 | ! UC浏览器网盘 285 | ! @@||uc.ucweb.com 286 | @@||puds.ucweb.com^$document 287 | ! OPPO账号相关? 288 | @@||u.oppomobile.com^$document 289 | ! 新浪新闻图片 290 | @@||k.sinaimg.cn^$document 291 | ! 酷安推送来自酷安@ck388(http://www.coolapk.com/u/1347977) 292 | @@||guid.tpns.tencent.com^$document 293 | @@||access1.tpns.tencent.com^$document 294 | ! 有道翻译官网页翻译 295 | @@||c.youdao.com^$document 296 | ! 百度网盘签到图片界面 297 | @@||staticsns.cdn.bcebos.com^$document 298 | ! 大众养生网 299 | @@||mipcache.bdstatic.com^$document 300 | ! 阿里云盘网络验证码(酷安@我是真爱kun) 301 | @@||acs.m.taobao.com^$document 302 | ! 夸克网盘扫码登陆 303 | @@||t.uc.cn^$document 304 | ! Flyme 游戏下载(酷安@何言与君识) 305 | @@||api-game.meizu.com^$document 306 | @@||game.res.meizu.com^$document 307 | ! OPPO商店登陆 308 | @@||dragate.dc.oppomobile.com^$important,document 309 | @@||client-uc.heytapmobi.com^$important,document 310 | @@||dragate-cn.dc.heytapmobi.com^$important,document 311 | ! 网易云音乐 音效下载 312 | @@||d*.music.126.net^$document 313 | ! 新浪网页误杀 314 | @@||gk.sina.cn^ 315 | @@||cre.dp.sina.cn^ 316 | @@||mix.sina.com.cn^ 317 | ! 头条授权登陆 318 | @@||open.snssdk.com^$document 319 | ! 网易年度总结 320 | @@||count.mail.163.com^$document 321 | ! 360翻译 322 | @@||gw.shouji.360.cn^$document 323 | ! 移动一键登录 324 | @@||da.mmarket.com^$document 325 | ! OPPO应用配置 326 | @@||appconf.heytapdownload.com^$document 327 | ! 京东 328 | @@||gia.jd.com^$document 329 | @@||me-api.jd.com^$document 330 | @@||api.m.jd.com^$document 331 | @@||ms.jr.jd.com^$document 332 | @@||active.jd.com^$document 333 | @@||pro.m.jd.com^$document 334 | ! 王者活动 335 | @@||msdk.qq.com^ 336 | @@||ssl.msdk.qq.com^$document 337 | @@||img.ssl.msdk.qq.com^$document 338 | @@||ap6.ssl.msdk.qq.com^$document 339 | ! 京东领卷 340 | @@||m.jd.watbe.top^$document 341 | @@||m.jd.watbc.top^$document 342 | ! 百度手机广告 343 | @@||ecmb.bdimg.com^$document 344 | @@||ecma.bdimg.com^$document 345 | ! 百度手机输入法 346 | @@||udpolimenew.baidu.com^$document 347 | @@||mime.baidu.com^$document 348 | #淘宝 349 | @@||amdc.m.taobao.com^$document 350 | @@||click.mz.simba.taobao.com^$document 351 | @@||s.click.taobao.com^$document 352 | @@||eco.taobao.com^$document 353 | @@||err.taobao.com^$document 354 | @@||tunion-api.m.taobao.com^$document 355 | @@||zconfig.alibabausercontent.com^$document 356 | ! OPPO 应用商店 主题 开屏广告 357 | @@||api-cn.store.heytapmobi.com^$document 358 | @@||api-cn.theme.heytapmobi.com^$document 359 | ! 网易光遇 sky 登录 360 | ! 感谢[@niani2](https://github.com/niani2)反馈 361 | @@||fp-upload.dun.163.com^$document 362 | ! 放行一堆click 363 | @@||click-trk.com^$document 364 | @@||clickcease.com^$document 365 | @@||clickdimensions.com^$document 366 | @@||clickiocdn.com^$document 367 | @@||clicktale.net^$document 368 | @@||intercom-clicks.com^$document 369 | @@||klclick*.com^$document 370 | @@||personaclick.com^$document 371 | @@||click.aliexpress.com^$document 372 | @@||click.allkeyshop.com^$document 373 | @@||click.alternate.de^$document 374 | @@||click.member.americanexpress.com^$document 375 | @@||click.appcast.io^$document 376 | @@||clicks.aweber.com^$document 377 | @@||click.emcom.bankofamerica.com^$document 378 | @@||click.em.blizzard.com^$document 379 | @@||click.myctm.canadiantire.ca^$document 380 | @@||target.clickfunnels.com^$document 381 | @@||click.cptrack.de^$document 382 | @@||click.mc.crimsontrace.com^$document 383 | @@||clickserve.dartsearch.net^$document 384 | @@||click.o.delta.com^$document 385 | @@||click.discord.com^$document 386 | @@||click.dji.com^$document 387 | @@||ad.doubleclick.net^$document 388 | @@||click.*.experian.com^$document 389 | @@||click.fidelityinvestments.com^$document 390 | @@||click.holidayinnclubemail.com^$document 391 | @@||click.instantink.hpsmart.com^$document 392 | @@||click.icptrack.com^$document 393 | @@||click.email.jcpenney.com^$document 394 | @@||click.justwatch.com^$document 395 | @@||click.klarna.de^$document 396 | @@||click.chp.kohls.com^$document 397 | @@||click.s.kohls.com^$document 398 | @@||click.e.krogermail.com^$document 399 | @@||click.landsend.com^$document 400 | @@||click.linksynergy.com^$document 401 | @@||click.e.lowes.com^$document 402 | @@||click.mail.macmillan.com^$document 403 | @@||click.microsoft*.com^$document 404 | @@||click.mlsend.com^$document 405 | @@||click.email.newegg.com^$document 406 | @@||click.members.nra.org^$document 407 | @@||clicks.pipaffiliates.com^$document 408 | @@||click.pstmrk.it^$document 409 | @@||click.redditmail.com^$document 410 | @@||click.royalcaribbeanmarketing.com^$document 411 | @@||click.e.safelite.com^$document 412 | @@||click.em.samsclub.com^$document 413 | @@||click.e.sees.com^$document 414 | @@||click.snapshat.com^$document 415 | @@||click.email.sonos.com^$document 416 | @@||click*.taobao.com^$document 417 | @@||click.mailing.ticketmaster.com^$document 418 | @@||clicks.trx-hub.com^$document 419 | @@||cdn.webclicks24.com^$document 420 | @@||click.zoom.us^$document 421 | ! 小米桌面云备份 422 | ! @@||a0.app.xiaomi.com^$document 423 | ! @@||api.ad.xiaomi.com^$document 424 | ! @@||globalapi.ad.xiaomi.com^$document 425 | ! 网易云蜗牛阅读 426 | @@||du.163.com^$document 427 | ! 网易云音乐听歌统计 428 | @@||clientlog*music.163.com^$document 429 | @@||clientlog3.music.163.com^$document 430 | 431 | 432 | ! 添加一些规则 433 | ||s.360.cn^$important 434 | ||p.s.360.cn^$important 435 | ||sconf.f.360.cn^$important 436 | ||qurl.f.360.cn^$important 437 | 438 | ! 酷安重写 439 | ! 手机壳推广 440 | ||api2.coolapk.com/v6/feed/replyList$replace=/"entities":/"10007":/ 441 | ! 优惠券领取 442 | ||api2.coolapk.com/v6/feed/detail$replace=/"detailSponsorCard":/"10007":/ 443 | ! 提到的好物 444 | ||api2.coolapk.com/v6/feed/detail$replace=/"include_goods":/"10007":/ 445 | ! 囧次元 446 | /app/loadAdPositionConfig?app_id= 447 | ! 豆瓣 448 | /app_ads/splash_show 449 | /app_ads/splash_preload 450 | /static/upload/ads 451 | /api/index/splash_ad 452 | ||frodo.douban.com/api/v2/erebor/feed_ad 453 | ||douban.com/count/ 454 | ! 网易云音乐 455 | ||interface*.music.163.com/eapi/ad 456 | ! 书旗小说 457 | ||shuqireader.com/api/ad/adserver 458 | /api/ad/adserver/ 459 | ! 微信公众号 460 | ||mp.weixin.qq.com/mp/advertisement 461 | ||mp.weixin.qq.com/mp/getappmsgad 462 | ||mp.weixin.qq.com/mp/ad_monitor 463 | ||mp.weixin.qq.com/mp/ad_biz_info 464 | 465 | 466 | 467 | 468 | -------------------------------------------------------------------------------- /busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingeringsound/10007_auto/1a96125a263ffb09b5c37f549e263181b21d4bb0/busybox -------------------------------------------------------------------------------- /configure/.placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /configure/Adclose.rule: -------------------------------------------------------------------------------- 1 | #广告奖励 2 | Domain, adsmind.gdtimg.com 3 | Domain, c2.gdt.qq.com 4 | Domain, d.gdt.qq.com 5 | Domain, gw.365you.com 6 | Domain, h5.gdt.qq.com 7 | Domain, i.gdt.qq.com 8 | Domain, ii.gdt.qq.com 9 | Domain, ipv4.gdt.qq.com 10 | Domain, m.gdt.qq.com 11 | Domain, mi.gdt.qq.com 12 | Domain, nc.gdt.qq.com 13 | Domain, pgdt.ugdtimg.com 14 | Domain, pgdt.gtimg.cn 15 | Domain, pv.sohu.com 16 | Domain, q.i.gdt.qq.com 17 | Domain, rm.gdt.qq.com 18 | Domain, sdk.e.qq.com 19 | Domain, t.gdt.qq.com 20 | Domain, v2.gdt.qq.com 21 | Domain, v3.gdt.qq.com 22 | Domain, vr.gdt.qq.com 23 | Domain, x.adnet.qq.com 24 | Domain, xc.gdt.qq.com 25 | Domain, win.gdt.qq.com 26 | Domain, wxsnsad.tc.qq.com 27 | Domain, wxsnsdy.tc.qq.com 28 | Domain, wxsnsdy.video.qq.com 29 | Domain, wxsnsdy.wxs.qq.com 30 | Domain, wxsnsdythumb.wxs.qq.com 31 | Domain, wxa.wxs.qq.com 32 | Domain, wximg.wxs.qq.com 33 | Domain, wxsmw.wxs.qq.com 34 | Domain, nadvideo.baidu.com 35 | Domain, nadvideo2.baidu.com 36 | Domain, open.e.kuaishou.com 37 | Domain, e.kuaishou.com 38 | Domain, api2.e.kuaishou.com 39 | Domain, api.e.kuaishou.com 40 | Domain, log-api.pangolin-sdk-toutiao-b.com 41 | Domain, log-api.pangolin-sdk-toutiao.com 42 | Domain, api-access.pangolin-sdk-toutiao.com 43 | Domain, api-access.pangolin-sdk-toutiao-b.com 44 | Domain, adstats.tencentmusic.com 45 | Domain, ad.tencentmusic.com 46 | Domain, adexpo.tencentmusic.com 47 | Domain, adcdn.tencentmusic.com 48 | Domain, adclick.tencentmusic.com 49 | Domain, adsmind.gdtimg.com 50 | Domain, rpt.gdt.qq.com 51 | Domain, v.gdt.qq.com 52 | Domain, c.gdt.qq.com 53 | Domain, tmead.y.qq.com 54 | Domain, tmeadcomm.y.qq.com 55 | Domain, tmeadbak.y.qq.com 56 | Domain, oth.eve.mdt.qq.com 57 | Domain, oth.str.mdt.qq.com 58 | Domain, oth.update.mdt.qq.com 59 | Domain, mtt.eve.mdt.qq.com 60 | Domain, mtt.str.mdt.qq.com 61 | Domain, adx-bj.anythinktech.com 62 | Domain, adx-bj-req.anythinktech.com 63 | Domain, dc.sigmob.cn 64 | Domain, cn-api.anythinktech.com 65 | Domain, cn-tk.anythinktech.com 66 | Domain, tk.anythinktech.com 67 | Domain, adx.anythinktech.com 68 | Domain, s.360.cn 69 | Domain, p.s.360.cn 70 | Domain, sconf.f.360.cn 71 | Domain, qurl.f.360.cn 72 | Domain, t7z.cupid.iqiyi.com 73 | #END 74 | 75 | #URL 或者 keyword 76 | KeyWord, /app/loadAdPositionConfig?app_id= 77 | KeyWord, /app_ads/splash_show 78 | KeyWord, /app_ads/splash_preload 79 | KeyWord, /static/upload/ads 80 | KeyWord, /api/index/splash_ad 81 | KeyWord, /api/ad/adserver/ 82 | URL, https://frodo.douban.com/api/v2/erebor/feed_ad 83 | URL, https://frodo.douban.com/api/v2/movie/ad 84 | URL, https://douban.com/rexxar/api/v2/market/products/ 85 | URL, https://douban.com/v2/app_ads 86 | URL, https://douban.com/*/*_ads 87 | URL, https://douban.com/api/v2/home_ads 88 | URL, https://douban.com/count/ 89 | URL, https://interface*.music.163.com/eapi/ad 90 | URL, https://interface.music.163.com/eapi/ad 91 | URL, https://interface3.music.163.com/eapi/ad 92 | URL, https://shuqireader.com/api/ad/adserver 93 | URL, https://mp.weixin.qq.com/mp/advertisement 94 | URL, https://mp.weixin.qq.com/mp/getappmsgad 95 | URL, https://mp.weixin.qq.com/mp/ad_monitor 96 | URL, https://mp.weixin.qq.com/mp/ad_biz_info 97 | URL, https://mddcloud.com.cn/adApi 98 | URL, https://ib.snssdk.com/api/ad 99 | URL, https://api.union.vip.com/*/advert 100 | URL, https://app.bilibili.com/x/v2/splash/show 101 | URL, https://app.bilibili.com/x/v2/splash/list 102 | URL, https://api.bilibili.com/x/v2/dm/ad 103 | URL, https://api.bilibili.com/x/vip/ads 104 | URL, https://api.bilibili.com/pgc/season/player/cards 105 | URL, https://api.live.bilibili.com/xlive/e-commerce-interface/v1/ecommerce-user/get_shopping_info? 106 | URL, https://ad.12306.cn/ad/ 107 | URL, https://api.zuihuimai.com/static/*/hongbao 108 | URL, https://dat.ruanmei.com/ithome/money/acd.json 109 | URL, https://api.gotokeep.com/guide-webapp/v1/popup/getPopUp 110 | URL, https://kad.gotokeep.com/op-engine-webapp/v1/ad 111 | URL, https://mime.baidu.com/*/start_screen_ads 112 | URL, https://mime.baidu.com/v5/start_screen_ads 113 | URL, https://pan.baidu.com/rest/*/pcs/adv 114 | URL, https://afd.baidu.com/afd/entry?action=update 115 | URL, https://afd.baidu.com/afd/entry?action=query 116 | URL, https://maphotel.baidu.com/hotel/goextranet/activity/detail? 117 | URL, https://yongche.baidu.com/goorder/passenger/baseinfo 118 | URL, https://yongche.baidu.com/goorder/passenger/cobuild/pull? 119 | URL, https://yongche.baidu.com/goorder/passenger/operationgirdle 120 | URL, https://ecom.map.baidu.com/ad-ops/ 121 | URL, https://manga.bilibili.com/twirp/comic.v*.Comic/GetBubbles 122 | URL, https://manga.bilibili.com/twirp/comic.v*.Comic/SearchBanner 123 | URL, https://manga.bilibili.com/twirp/comic.v*.Comic/GetCommonBanner 124 | URL, https://manga.bilibili.com/twirp/comic.v*.Comic/ListFlash 125 | URL, https://douyucdn.cn/japi/sign/app/getinfo 126 | URL, https://video-dsp.pddpic.com/market-dsp-video/ 127 | URL, https://t-dsp.pinduoduo.com/dspcb/i/mrk_union 128 | URL, https://images.pinduoduo.com/mrk/ 129 | URL, https://images.pinduoduo.com/marketing_api/ 130 | URL, https://api.pinduoduo.com/api/cappuccino/splash 131 | URL, https://api.yangkeduo.com/api/cappuccino/splash 132 | URL, https://api.pinduoduo.com/api/brand-olay/goods_detail/bybt_guide 133 | URL, https://kuaiduizuoye.com/init/ad/ 134 | URL, https://kuaiduizuoye.com/kdapi/conf/appbanners 135 | URL, https://kuaiduizuoye.com/kdapi/conf/initbanner 136 | URL, https://fcard.api.moji.com/flycard/flyCard 137 | URL, https://vdo.api.moji.com/shortvideo/card/subscribe 138 | URL, https://vdo.api.moji.com/shortvideo/video/index_flow 139 | URL, https://vdo.api.moji.com/shortvideo/video_user/hotGuyRcm 140 | URL, https://vdo.api.moji.com/shortvideo/zone/follow_src_zone 141 | URL, https://sns.api.moji.com/user/dynamic_v9/json/someone_interest 142 | URL, https://api.pipix.com/api/ad/* 143 | URL, https://api5-lq.pipix.com/api/ad/* 144 | URL, https://api.pipix.com/bds/banner/* 145 | URL, https://api5-lq.pipix.com/bds/banner/* 146 | URL, https://api*.pipix.com/bds/banner/* 147 | URL, https://api*.pipix.com/api/ad/* 148 | URL, https://api-cfg.wtzw.com/v1/splash/ 149 | URL, https://api-cfg.wtzw.com/v*/splash/ 150 | URL, https://api-bc.wtzw.com/api/v*/book-store/config 151 | URL, https://api-bc.wtzw.com/api/v*/book-store/push-book 152 | URL, https://api-bc.wtzw.com/api/v*/operation 153 | URL, https://cdn.wtzw.com/bookimg/free/api/v*/reader/reader-copy-paragraph-all.json 154 | URL, https://api-cfg.wtzw.com/v*/reward 155 | URL, https://api-cfg.wtzw.com/v*/adv 156 | URL, https://api-cfg.wtzw.com/v*/offline-adv/index 157 | URL, https://api-cfg.wtzw.com/v*/operation/index?ad_personal_switch 158 | URL, https://xiaoshuo.wtzw.com/api/v*/withdraw/init 159 | URL, https://gorgon.youdao.com/gorgon/brand/prefetch.s? 160 | URL, https://gorgon.youdao.com/gorgon/request.s? 161 | URL, https://api.weibo.cn/*/sug/list/finderchange? 162 | URL, https://api.weibo.cn/*/was/finder/searchbarchange? 163 | URL, https://api.weibo.cn/2/*/chaohua/discovery/home_bottom/switch? 164 | URL, https://api.weibo.cn/2/*/huati/discovery_home_bottom_getdotinfo 165 | URL, https://api.weibo.cn/2/*/huati/mobile_discovery_searchchange 166 | URL, https://api.weibo.cn/2/*/live/media_homelist? 167 | URL, https://api.weibo.cn/2/*/wbox/*/home_bottom_modal 168 | URL, https://api.weibo.cn/2/*/wbox/*/interest_category 169 | URL, https://api.weibo.cn/2/ad/weibointl? 170 | URL, https://api.weibo.cn/2/comments/bullet_screens? 171 | URL, https://api.weibo.cn/2/hot/hours_spotlight? 172 | URL, https://api.weibo.cn/2/photo/info? 173 | URL, https://api.weibo.cn/2/push/daily 174 | URL, https://api.weibo.cn/2/remind/*unread* 175 | URL, https://api.weibo.cn/2/remind/group_unread? 176 | URL, https://api.weibo.cn/2/remind/unread_count? 177 | URL, https://api.weibo.cn/2/search/container_discover? 178 | URL, https://api.weibo.cn/2/statuses/container_positive 179 | URL, https://api.weibo.cn/2/statuses/push_info 180 | URL, https://api.weibo.cn/2/ug/checkin/list 181 | URL, https://api.weibo.cn/2/video/redpacket? 182 | URL, https://api.weibo.cn/2/video/tiny_video_info_show? 183 | URL, https://api.weibo.cn/2/vote/get_vote_detail? 184 | URL, https://bootrealtime.uve.weibo.com/v*/ad/realtime 185 | URL, https://bootrealtime.uve.weibo.com/v2/ad/realtime 186 | URL, https://bootrealtime.uve.weibo.com/v3/ad/realtime 187 | URL, https://card.weibo.com/article/m/aj/reward 188 | URL, https://card.weibo.com/article/m/aj/uvead 189 | URL, https://sdkapp.uve.weibo.com/interface/sdk/get-lbs-cell-info.php 190 | URL, https://sdkapp.uve.weibo.com/interface/sdk/sdkconfig.php 191 | URL, https://weibo.com/ttarticle/x/m/aj/reward 192 | URL, https://weibo.com/ttarticle/x/m/aj/uvead 193 | URL, https://edith.xiaohongshu.com/api/sns/v1/surprisebox/get_style 194 | URL, https://edith.xiaohongshu.com/api/sns/v1/surprisebox/open 195 | URL, https://edith.xiaohongshu.com/api/sns/v1/surprisebox/submit_action 196 | URL, https://www.xiaohongshu.com/api/marketing/box/trigger? 197 | URL, https://edith.xiaohongshu.com/api/sns/v2/guide/user_banner 198 | URL, https://edith.xiaohongshu.com/api/sns/v3/note/guide 199 | URL, https://www.xiaohongshu.com/api/sns/v1/ads/resource 200 | URL, https://www.xiaohongshu.com/api/sns/v2/hey/*/hey_gallery 201 | URL, https://api.xiaoheihe.cn/account/get_ads_info_v2 202 | URL, https://api.izuiyou.com/ad/ 203 | URL, https://api.izuiyou.com/config/get_banner 204 | URL, https://file-share.izuiyou.com/octopus/media/templates/search_home_page_nv/search_home_page_nv 205 | URL, https://file-share.izuiyou.com/octopus/media/templates/search_home_page_nv_v2/search_home_page_nv 206 | URL, https://mercury-gateway.ixiaochuan.cn/mercury/v1/ad/ 207 | URL, https://zyfile.izuiyou.com/zyfile/c2/a0/*.json 208 | URL, https://jzts.cmpassport.com/personalized/getPushContent 209 | URL, https://ad.mcloud.139.com/advertapi 210 | #END 211 | -------------------------------------------------------------------------------- /configure/add.prop: -------------------------------------------------------------------------------- 1 | ! 爱奇艺腾讯视频网页版广告,删除了客户端没广告,网页就打不开。 2 | ! 这两没用了 3 | @@||t7z.cupid.iqiyi.com^$document 4 | @@||mdevstat.qqlive.qq.com^$document 5 | 6 | ||adsmind.gdtimg.com^ 7 | ||c2.gdt.qq.com^ 8 | ||d.gdt.qq.com^ 9 | ||gw.365you.com^ 10 | ||h5.gdt.qq.com^ 11 | ||i.gdt.qq.com^ 12 | ||ii.gdt.qq.com^ 13 | ||ipv4.gdt.qq.com^ 14 | ||m.gdt.qq.com^ 15 | ||mi.gdt.qq.com^ 16 | ||nc.gdt.qq.com^ 17 | ||pgdt.ugdtimg.com^ 18 | ||pgdt.gtimg.cn^ 19 | ||pv.sohu.com^ 20 | ||q.i.gdt.qq.com^ 21 | ||rm.gdt.qq.com^ 22 | ||sdk.e.qq.com^ 23 | ||t.gdt.qq.com^ 24 | ||v2.gdt.qq.com^ 25 | ||v3.gdt.qq.com^ 26 | ||vr.gdt.qq.com^ 27 | ||x.adnet.qq.com^ 28 | ||xc.gdt.qq.com^ 29 | ! QQ广告奖励 30 | ||win.gdt.qq.com^ 31 | ! 抖音广告奖励 32 | ! ||is.snssdk.com^ 33 | ! 微信广告奖励 34 | ||wxsnsad.tc.qq.com^ 35 | ||wxsnsdy.tc.qq.com^ 36 | ||wxsnsdy.video.qq.com^ 37 | ! 微信红包封面/某些图片也是这个域名加载不出来就自己放行。 38 | ||wxsnsdy.wxs.qq.com 39 | ||wxsnsdythumb.wxs.qq.com^ 40 | ! 微信小程序奖励 41 | ||wxa.wxs.qq.com^ 42 | ||wximg.wxs.qq.com^ 43 | ||wxsmw.wxs.qq.com^ 44 | ! 百度云视频广告奖励 45 | ||nadvideo.baidu.com^ 46 | ||nadvideo2.baidu.com^ 47 | ! 快手支持 48 | ! 删掉会使得部分开屏广告复燃 49 | ||open.e.kuaishou.com^ 50 | ||e.kuaishou.com^ 51 | ||api2.e.kuaishou.com^ 52 | ||api.e.kuaishou.com^ 53 | ! APP分享 54 | ! 注释掉可获得广告奖励 55 | ! 但是也会有部广告重新出现,毕竟穿山甲是目前最恶心的广告联盟 56 | ||log-api.pangolin-sdk-toutiao-b.com^ 57 | ||log-api.pangolin-sdk-toutiao.com^ 58 | ||api-access.pangolin-sdk-toutiao.com^ 59 | ||api-access.pangolin-sdk-toutiao-b.com^ 60 | ! QQ音乐免费时长广告奖励 61 | ||adstats.tencentmusic.com^ 62 | ||ad.tencentmusic.com^ 63 | ||adexpo.tencentmusic.com^ 64 | ||adcdn.tencentmusic.com^ 65 | ||adclick.tencentmusic.com^ 66 | ||adsmind.gdtimg.com^ 67 | ||rpt.gdt.qq.com^ 68 | ||v.gdt.qq.com^ 69 | ||c.gdt.qq.com^ 70 | ||tmead.y.qq.com^ 71 | ||tmeadcomm.y.qq.com^ 72 | ||tmeadbak.y.qq.com^ 73 | ! QQ音乐广告奖励检测 74 | ||oth.eve.mdt.qq.com^ 75 | ||oth.str.mdt.qq.com^ 76 | ||oth.update.mdt.qq.com^ 77 | ||mtt.eve.mdt.qq.com^ 78 | ||mtt.str.mdt.qq.com^ 79 | ! biubiu加速器 80 | ||adx-bj.anythinktech.com^ 81 | ||adx-bj-req.anythinktech.com^ 82 | ||dc.sigmob.cn^ 83 | ||cn-api.anythinktech.com^ 84 | ||cn-tk.anythinktech.com^ 85 | ||tk.anythinktech.com^ 86 | ||adx.anythinktech.com^ 87 | 88 | 89 | ! 放行一些规则防止误杀 90 | ! 日志收集,禁用会占用大量CPU 91 | @@||ulog*.*.com^$important 92 | @@||toblog.ctobsnssdk.com^$important 93 | ! 阿里/支付宝 94 | @@||mmstat.com^$important 95 | ! 小米商店登陆 96 | @@||sdkconfig.ad.xiaomi.com^$important 97 | ! 360域名 98 | @@||360.cn^$document 99 | ! X5内核 100 | @@||cfg.imtt.qq.com^$document 101 | @@||soft.tbs.imtt.qq.com^$document 102 | @@||res.imtt.qq.com^$document 103 | ! 手机搜狗输入法 104 | @@||shouji.sougou.com^$document 105 | ! MIUI 流量中心 106 | @@||api.miui.security.xiaomi.com^$document 107 | @@||api.sec.intl.miui.com^$document 108 | @@||api.sec.miui.com^$document 109 | ! QQ直播 110 | @@||livew.l.qq.com^$document 111 | @@||l.qq.com^$document 112 | ! 魅族 113 | @@||aider.meizu.com^$document 114 | @@||www.meizu.com^$document 115 | @@||store.meizu.com^$document 116 | ! 魅族天气 117 | @@||aider-res.meizu.com^$document 118 | ! 抖音小程序、今日头条搜索 119 | @@||is.snssdk.com^$document 120 | @@||ib.snssdk.com^$document 121 | @@||ic.snssdk.com^$document 122 | @@||i*.snssdk.com^$document 123 | ! QQ邮箱 124 | @@||iwx.mail.qq.com^$document 125 | ! MIUI 天气预报 126 | @@||wtradv.market.xiaomi.com^$document 127 | ! 推特(第三方调用) 128 | @@||api.twitter.com^$document 129 | @@||mobile.twitter.com^$document 130 | @@||twitter.com^$document 131 | @@||www.twitter.com^$document 132 | ! MIUI 快应用 133 | @@||www.api.hybrid.intl.xiaomi.com^$document 134 | @@||api.hybrid.intl.xiaomi.com^$document 135 | ! 网易某版本 136 | @@||api.iplay.163.com^$document 137 | ! 九游游戏中心 138 | @@||api.open.uc.cn^$document 139 | ! 百度小程序 140 | @@||ossapi.baidu.com^$document 141 | ! UC文章 142 | @@||mparticle.uc.cn^$document 143 | ! 微信福利/活动中心 144 | @@||isee.weishi.qq.com^$document 145 | ! 京东图片api 146 | @@||img14.360buyimg.com^$document 147 | ! 腾讯充值 148 | @@||midas.gtimg.cn^$document 149 | @@||api.unipay.qq.com^$document 150 | ! 皮皮虾/字节跳动 151 | @@||mon.snssdk.com^$document 152 | @@||mon.isnssdk.com^$document 153 | @@||dig.bdurl.net^$document 154 | @@||is-hl.snssdk.com^$document 155 | @@||p*-ppx.byteimg.com^ 156 | @@||dig.zjurl.cn^$document 157 | @@||i.snssdk.com^$document 158 | @@||dm.toutiao.com^$document 159 | ! 应用宝 160 | @@||pp.myapp.com^$document 161 | ! 淘宝授权 162 | @@||acs4baichuan.m.taobao.com^$document 163 | ! 淘宝活动 164 | @@||s.click.taobao.com^$document 165 | @@||s.click.alimama.com^$document 166 | @@||s.click.tmall.com^$document 167 | ! pornhub 168 | @@||ss.phncdn.com^$document 169 | @@||ei.phncdn.com^$document 170 | @@||dm1.phncdn.com^$document 171 | @@||di.phncdn.com^$document 172 | @@||cdn1d-static-shared.phncdn.com^$document 173 | @@||cdn1-smallimg.phncdn.com^$document 174 | @@||cn.pornhub.com^$document 175 | @@||www.pornhub.com^$document 176 | ! 知乎小程序 177 | @@||sugar.zhihu.com^$document 178 | ! 支付宝生活号 179 | @@||gm.mmstat.com^$document 180 | ! 支付宝扫码支付 181 | @@||pingjs.qq.com^$document 182 | ! 支付宝运动 183 | @@||wgo.mmstat.com^$document 184 | ! 迅雷影音api 185 | @@||api-shoulei-ssl.xunlei.com^$document 186 | ! MIUI浏览器在线翻译 187 | @@||ssl-cdn.static.browser.mi-img.com^$document 188 | ! X5内核文档插件下载 189 | @@||static.res.qq.com^$document 190 | ! MIUI天星金融钱包 191 | @@||api.jr.mi.com^$document 192 | ! 豌豆荚网络下载 193 | @@||alissl.ucdl.pp.uc.cn^$document 194 | ! 微博国际版图片保存 195 | @@||wx2.sinaimg.cn^$document 196 | ! 百度百科 197 | @@||baikebcs.bdimg.com^$document 198 | @@||bkimg.cdn.bcebos.com^$document 199 | ! QQ安全网址访问 200 | @@||c.pc.qq.com^$document 201 | ! cdn加速 202 | @@||cdn.bootcdn.net^$document 203 | ! 微信广告政策 204 | @@||ads.privacy.qq.com^$document 205 | ! 百度求医问药网 206 | @@||med-fe.cdn.bcebos.com^$document 207 | ! 微信部分小程序登陆 208 | @@||pv.sohu.com^$document 209 | ! 百度百家号 210 | @@||f10.baidu.com^$document 211 | ! MIUI 主题 212 | @@||zhuti.xiaomi.com^$document 213 | ! 爱(i)茅台 214 | @@||mm1.365dmp.com^$document 215 | @@||mm3.365dmp.com^$document 216 | @@||sfp.safe.baidu.com^$document 217 | @@||sofire.bdstatic.com^$document 218 | @@||sofire.baidu.com^$document 219 | ! MIUI浏览器 220 | @@||hot.browser.intl.miui.com^$document 221 | @@||hot.browser.miui.com^$document 222 | ! 360清理大师 223 | @@||sjws.ssl.qihucdn.com^$document 224 | @@||mvconf.f.360.cn^$document 225 | ! 腾讯新闻 226 | @@||pacaio.match.qq.com^$document 227 | ! UC浏览器 228 | @@||emoji.uc.cn^$document 229 | @@||iflow.uc.cn^$document 230 | @@||iflow-api.uc.cn^$document 231 | @@||iflow.uczzd.cn^$document 232 | ! 夸克浏览器下载插件 233 | @@||pdds-c1-cdn.uc.cn^$document 234 | @@||pdds.ucweb.com^$document 235 | ! DNS服务器 236 | @@||dns9.quad9.net^$document 237 | @@||dns.cloudflare.com^$document 238 | @@||dns.rubyfish.cn^$document 239 | @@||1dot1dot1dot1.cloudflare-dns.com^$document 240 | @@||dns.alidns.com^$document 241 | @@||dns.google.com^$document 242 | ! 淘宝菜鸟裹裹 243 | @@||appdownload.alicdn.com^$document 244 | ! QQ微信头像 245 | @@||wx.qlogo.cn^$document 246 | @@||py.qlogo.cn^$document 247 | @@||py2.qlogo.cn^$document 248 | @@||p.qlogo.cn^$document 249 | ! 抖音网页版验证图片 250 | @@||verify.snssdk.com^$document 251 | @@||mcs.snssdk.com^$document 252 | @@||vcs.snssdk.com^$document 253 | ! QQ安全中心 254 | @@||aq.qq.com^$document 255 | ! 小米文件下载 256 | @@||api.airpush.com^$document 257 | @@||file.xmpush.xiaomi.com^$document 258 | @@||api.airpush.com^$document 259 | @@||api-push.meizu.com^$document 260 | @@||file.xiaomi.com^$document 261 | @@||f8.market.xiaomi.com^$document 262 | @@||f4.market.xiaomi.com^$document 263 | ! MIUI黄页 264 | @@||api.huangye.miui.com^$document 265 | ! MIUI垃圾清理 266 | @@||flash.sec.miui.com^$document 267 | @@||flash.sec.intl.miui.com^$document 268 | @@||staging.flash.sec.miui.com^$document 269 | ! 小爱同学个人信息获取 270 | @@||tracker.ai.xiaomi.com^$document 271 | ! 小米主题设计师注册 272 | @@||market.xiaomi.com^$document 273 | ! 百度贴吧表情误杀 274 | @@||static.tieba.baidu.com^$document 275 | @@||gsp0.baidu.com^$document 276 | ! 咪咕爱看视频 277 | @@||aikanvod.miguvideo.com^$document 278 | @@||aikanlive.miguvideo.com^$document 279 | ! 部分设备的小米推送 280 | @@||resolver.msg.xiaomi.net^$document 281 | @@||register.xmpush.xiaomi.com^$document 282 | @@||app.chat.xiaomi.net^$document 283 | @@||resolver.gslb.mi-idc.com^$document 284 | @@||mistat.xiaomi.com^ 285 | @@||register*mi.com^ 286 | @@||resolver*mi.com^ 287 | ! 部分设备的小米云服务 288 | @@||api.g.micloud.xiaomi.net^$document 289 | ! QQ浏览器插件误杀 290 | @@||tbsone.imtt.qq.com^$document 291 | ! UC浏览器网盘 292 | ! @@||uc.ucweb.com 293 | @@||puds.ucweb.com^$document 294 | ! OPPO账号相关? 295 | @@||u.oppomobile.com^$document 296 | ! 新浪新闻图片 297 | @@||k.sinaimg.cn^$document 298 | ! 酷安推送来自酷安@ck388(http://www.coolapk.com/u/1347977) 299 | @@||guid.tpns.tencent.com^$document 300 | @@||access1.tpns.tencent.com^$document 301 | ! 有道翻译官网页翻译 302 | @@||c.youdao.com^$document 303 | ! 百度网盘签到图片界面 304 | @@||staticsns.cdn.bcebos.com^$document 305 | ! 大众养生网 306 | @@||mipcache.bdstatic.com^$document 307 | ! 阿里云盘网络验证码(酷安@我是真爱kun) 308 | @@||acs.m.taobao.com^$document 309 | ! 夸克网盘扫码登陆 310 | @@||t.uc.cn^$document 311 | ! Flyme 游戏下载(酷安@何言与君识) 312 | @@||api-game.meizu.com^$document 313 | @@||game.res.meizu.com^$document 314 | ! OPPO商店登陆 315 | @@||dragate.dc.oppomobile.com^$important,document 316 | @@||client-uc.heytapmobi.com^$important,document 317 | @@||dragate-cn.dc.heytapmobi.com^$important,document 318 | ! 网易云音乐 音效下载 319 | @@||d*.music.126.net^$document 320 | ! 新浪网页误杀 321 | @@||gk.sina.cn^ 322 | @@||cre.dp.sina.cn^ 323 | @@||mix.sina.com.cn^ 324 | ! 头条授权登陆 325 | @@||open.snssdk.com^$document 326 | ! 网易年度总结 327 | @@||count.mail.163.com^$document 328 | ! 360翻译 329 | @@||gw.shouji.360.cn^$document 330 | ! 移动一键登录 331 | @@||da.mmarket.com^$document 332 | ! OPPO应用配置 333 | @@||appconf.heytapdownload.com^$document 334 | ! 京东 335 | @@||gia.jd.com^$document 336 | @@||me-api.jd.com^$document 337 | @@||api.m.jd.com^$document 338 | @@||ms.jr.jd.com^$document 339 | @@||active.jd.com^$document 340 | @@||pro.m.jd.com^$document 341 | ! 王者活动 342 | @@||msdk.qq.com^ 343 | @@||ssl.msdk.qq.com^$document 344 | @@||img.ssl.msdk.qq.com^$document 345 | @@||ap6.ssl.msdk.qq.com^$document 346 | ! 京东领卷 347 | @@||m.jd.watbe.top^$document 348 | @@||m.jd.watbc.top^$document 349 | ! 百度手机广告 350 | @@||ecmb.bdimg.com^$document 351 | @@||ecma.bdimg.com^$document 352 | ! 百度手机输入法 353 | @@||udpolimenew.baidu.com^$document 354 | @@||mime.baidu.com^$document 355 | ! 淘宝 356 | @@||amdc.m.taobao.com^$document 357 | @@||click.mz.simba.taobao.com^$document 358 | @@||s.click.taobao.com^$document 359 | @@||eco.taobao.com^$document 360 | @@||err.taobao.com^$document 361 | @@||tunion-api.m.taobao.com^$document 362 | @@||zconfig.alibabausercontent.com^$document 363 | ! OPPO 应用商店 主题 开屏广告 364 | @@||api-cn.store.heytapmobi.com^$document 365 | @@||api-cn.theme.heytapmobi.com^$document 366 | ! 网易光遇 sky 登录 367 | ! 感谢[@niani2](https://github.com/niani2)反馈 368 | @@||fp-upload.dun.163.com^$document 369 | ! 放行一堆click 370 | @@||click-trk.com^$document 371 | @@||clickcease.com^$document 372 | @@||clickdimensions.com^$document 373 | @@||clickiocdn.com^$document 374 | @@||clicktale.net^$document 375 | @@||intercom-clicks.com^$document 376 | @@||klclick*.com^$document 377 | @@||personaclick.com^$document 378 | @@||click.aliexpress.com^$document 379 | @@||click.allkeyshop.com^$document 380 | @@||click.alternate.de^$document 381 | @@||click.member.americanexpress.com^$document 382 | @@||click.appcast.io^$document 383 | @@||clicks.aweber.com^$document 384 | @@||click.emcom.bankofamerica.com^$document 385 | @@||click.em.blizzard.com^$document 386 | @@||click.myctm.canadiantire.ca^$document 387 | @@||target.clickfunnels.com^$document 388 | @@||click.cptrack.de^$document 389 | @@||click.mc.crimsontrace.com^$document 390 | @@||clickserve.dartsearch.net^$document 391 | @@||click.o.delta.com^$document 392 | @@||click.discord.com^$document 393 | @@||click.dji.com^$document 394 | @@||ad.doubleclick.net^$document 395 | @@||click.*.experian.com^$document 396 | @@||click.fidelityinvestments.com^$document 397 | @@||click.holidayinnclubemail.com^$document 398 | @@||click.instantink.hpsmart.com^$document 399 | @@||click.icptrack.com^$document 400 | @@||click.email.jcpenney.com^$document 401 | @@||click.justwatch.com^$document 402 | @@||click.klarna.de^$document 403 | @@||click.chp.kohls.com^$document 404 | @@||click.s.kohls.com^$document 405 | @@||click.e.krogermail.com^$document 406 | @@||click.landsend.com^$document 407 | @@||click.linksynergy.com^$document 408 | @@||click.e.lowes.com^$document 409 | @@||click.mail.macmillan.com^$document 410 | @@||click.microsoft*.com^$document 411 | @@||click.mlsend.com^$document 412 | @@||click.email.newegg.com^$document 413 | @@||click.members.nra.org^$document 414 | @@||clicks.pipaffiliates.com^$document 415 | @@||click.pstmrk.it^$document 416 | @@||click.redditmail.com^$document 417 | @@||click.royalcaribbeanmarketing.com^$document 418 | @@||click.e.safelite.com^$document 419 | @@||click.em.samsclub.com^$document 420 | @@||click.e.sees.com^$document 421 | @@||click.snapshat.com^$document 422 | @@||click.email.sonos.com^$document 423 | @@||click*.taobao.com^$document 424 | @@||click.mailing.ticketmaster.com^$document 425 | @@||clicks.trx-hub.com^$document 426 | @@||cdn.webclicks24.com^$document 427 | @@||click.zoom.us^$document 428 | ! 小米桌面云备份 429 | ! @@||a0.app.xiaomi.com^$document 430 | ! @@||api.ad.xiaomi.com^$document 431 | ! @@||globalapi.ad.xiaomi.com^$document 432 | ! 网易云蜗牛阅读 433 | @@||du.163.com^$document 434 | ! 网易云音乐听歌统计 435 | @@||clientlog*music.163.com^$document 436 | @@||clientlog3.music.163.com^$document 437 | @@||clientlogdep.music.163.com^document 438 | @@||clientlogsf.music.163.com^$document 439 | ! 抖音订单 440 | @@||haohuo.snssdk.com^$document 441 | ! 联通营业厅 442 | @@||ad.10010.com^$document 443 | ! 其他规则白名单 444 | ! play商店 445 | @@||app.adjust.com^$document 446 | ! 阿里巴巴 447 | @@||ad.alimama.com^$document 448 | @@||alimama.com^$document 449 | @@||ad.jp^$document 450 | @@||ad.ourgame.com^$document 451 | @@||retcode.taobao.com^$document 452 | @@||m.intl.taobao.com^$document 453 | @@||advertisement.taobao.com^$document 454 | @@||tbskip.taobao.com^$document 455 | @@||eco.taobao.com^$document 456 | ! 抖音 457 | @@||ads.com^$document 458 | @@||ads.tiktok.com^$document 459 | @@||adv.blogupp.com^$document 460 | ! adobe 461 | @@||na1r.services.adobe.com^$document 462 | @@||ereg.adobe.com^$document 463 | @@||lmlicenses.wip4.adobe.com^$document 464 | ! 哔哩哔哩 465 | @@||live-trace.bilibili.com^$document 466 | @@||g.msn.com^$document 467 | ! 腾讯视频 468 | @@||c.gj.qq.com^$document 469 | @@||vd.l.qq.com^$document 470 | @@||mini2015.qq.com^$document 471 | @@||soup.v.qq.com^$document 472 | ! 百度贴吧 473 | @@||gsp1.baidu.com^$document 474 | @@||sp0.baidu.com^$document 475 | @@||sp2.baidu.com^$document 476 | @@||fexclick.baidu.com^$document 477 | @@||bce.baidu.com^$document 478 | @@||bj.bcebos.com^$document 479 | ! 新浪微博 480 | @@||sax.sina.com.cn^$document 481 | ! NOMO APP 482 | @@||sdkapi.sms.mob.com^$document 483 | @@||news-l.play.aiseet.atianqi.com^$document 484 | @@||p-l.play.aiseet.atianqi.com^$document 485 | ! 支付宝 486 | @@||mmstat.com^$document 487 | ! 支付宝以及淘宝农场任务 488 | @@||audid-api.taobao.com^$document 489 | @@||audid-api-sg.taobao.com^$document 490 | ! 139邮箱 491 | @@||ad.mcloud.139.com^$document 492 | ! 百度贴吧签到 493 | @@||als.baidu.com^$document 494 | ! skype 495 | @@||browser.pipe.aria.microsoft.com^$document 496 | @@||evtubescms.phncdn.com^$document 497 | @@||c1.skype.com^$document 498 | @@||events.data.microsoft.com^$document 499 | @@||mobile.pipe.aria.microsoft.com^$document 500 | ! mytvsuper 501 | @@||imasdk.googleapis.com^$document 502 | ! 123云盘卡开屏 503 | @@||sdk-api.beizi.biz^$document 504 | ! 快手送礼 505 | @@||w1.kskwai.com^$app=com.smile.gifmaker 506 | ! 唯品会APP 507 | @@||api.union.vip.com^$document 508 | ! 百度部分UI图标 509 | @@||gips1.baidu.com^$document 510 | @@||gips2.baidu.com^$document 511 | ! 抖音人脸验证 512 | @@||saveu*.zijieapi.com^$document 513 | @@||saveu.zijieapi.com^$document 514 | @@||mcs.zijieapi.com^$document 515 | @@||rcs.cmpassport.com^$document 516 | @@||saveu3-normal-lq.zijieapi.com^$document 517 | @@||saveu5-normal-lq.zijieapi.com^$document 518 | ! MIUI在线权限管理器服务获取 519 | @@||srv.sec.miui.com^$document 520 | @@||srv.sec.intl.miui.com^$document 521 | ! 美图在线聊天 522 | @@||api.neixin.cn^$document 523 | ! 神马搜索建议 524 | @@||sugs.m.sm.cn^$document 525 | ! 奇异果Tv 526 | @@||sdk.ptqy.gitv.tv^$document 527 | ! 推送服务 528 | @@||android.push.126.net^$document 529 | @@||httpdns.push.oppomobile.com^$document 530 | ! 一堆ads 531 | @@||ad.10010.com^$document 532 | @@||ad.12306.cn^$document 533 | @@||ad.3.cn^$document 534 | @@||ad.alimama.com^$document 535 | @@||ad.ourgame.com^$document 536 | @@||ad.thsi.cn^$document 537 | @@||ad.vivo.com.cn^$document 538 | @@||ad4.on.cc^$document 539 | @@||addon.dismall.com^$document 540 | @@||adjs.8591.com.tw^$document 541 | @@||adnet.qq.com^$document 542 | @@||adnxs.com^$document 543 | @@||adobedtm.com^$document 544 | @@||ads.lingxing.com^$document 545 | @@||ads.privacy.qq.com^$document 546 | @@||ads.tiktok.com^$document 547 | ! 腾讯视频第三方API 548 | @@||h5vv6.video.qq.com^ 549 | ! 手机性能排行 550 | @@||img14.360buyimg.com^$document 551 | 552 | 553 | ! 添加一些规则 554 | ||s.360.cn^$important 555 | ||p.s.360.cn^$important 556 | ||sconf.f.360.cn^$important 557 | ||qurl.f.360.cn^$important 558 | ||t7z.cupid.iqiyi.com^$app=com.qiyi.video 559 | 560 | 561 | ! 酷安重写 562 | ! 手机壳推广 563 | ||api2.coolapk.com/v6/feed/replyList$replace=/"entities":/"10007":/ 564 | ! 优惠券领取 565 | ||api2.coolapk.com/v6/feed/detail$replace=/"detailSponsorCard":/"10007":/ 566 | ! 提到的好物 567 | ||api2.coolapk.com/v6/feed/detail$replace=/"include_goods":/"10007":/ 568 | ! 囧次元 569 | /app/loadAdPositionConfig?app_id= 570 | ! 豆瓣 571 | /app_ads/splash_show 572 | /app_ads/splash_preload 573 | /static/upload/ads 574 | /api/index/splash_ad 575 | ||frodo.douban.com/api/v2/erebor/feed_ad 576 | ||frodo.douban.com/api/v2/movie/ad 577 | ||douban.com/rexxar/api/v2/market/products/ 578 | ||douban.com/v2/app_ads 579 | ||douban.com/*/*_ads 580 | ||douban.com/api/v2/home_ads 581 | ||douban.com/count/ 582 | ! 网易云音乐 583 | ||interface*.music.163.com/eapi/ad 584 | ||interface.music.163.com/eapi/ad 585 | ||interface3.music.163.com/eapi/ad 586 | ! 书旗小说 587 | ||shuqireader.com/api/ad/adserver 588 | /api/ad/adserver/ 589 | ! 微信公众号 590 | ||mp.weixin.qq.com/mp/advertisement 591 | ||mp.weixin.qq.com/mp/getappmsgad 592 | ||mp.weixin.qq.com/mp/ad_monitor 593 | ||mp.weixin.qq.com/mp/ad_biz_info 594 | ! 埋堆堆 595 | ||mddcloud.com.cn/adApi 596 | ! 部分广告开屏 597 | ||ib.snssdk.com/api/ad 598 | ! 唯品会 599 | ||api.union.vip.com/*/advert 600 | ! bilibili 601 | ||app.bilibili.com/x/v2/feed/index?$replace=/ad_info// 602 | ||app.bilibili.com/x/v2/view?$replace=/ad_info// 603 | ||app.bilibili.com/x/v2/splash/show 604 | ||app.bilibili.com/x/v2/splash/list 605 | ||api.bilibili.com/x/v2/dm/ad 606 | ||api.bilibili.com/x/vip/ads 607 | ||api.bilibili.com/pgc/season/player/cards 608 | ||api.live.bilibili.com/xlive/e-commerce-interface/v1/ecommerce-user/get_shopping_info? 609 | ! 12306 610 | ||ad.12306.cn/ad/ 611 | ! IT之家 612 | ||api.zuihuimai.com/static/*/hongbao 613 | ||dat.ruanmei.com/ithome/money/acd.json 614 | ! keep 615 | ||api.gotokeep.com/guide-webapp/v1/popup/getPopUp 616 | ||kad.gotokeep.com/op-engine-webapp/v1/ad 617 | ! 百度输入法 618 | ||mime.baidu.com/*/start_screen_ads 619 | ||mime.baidu.com/v5/start_screen_ads 620 | ! 百度网盘 621 | ||pan.baidu.com/rest/*/pcs/adv 622 | ! 百度地图 623 | ||afd.baidu.com/afd/entry?action=update 624 | ||afd.baidu.com/afd/entry?action=query 625 | ||maphotel.baidu.com/hotel/goextranet/activity/detail? 626 | ||yongche.baidu.com/goorder/passenger/baseinfo 627 | ||yongche.baidu.com/goorder/passenger/cobuild/pull? 628 | ||yongche.baidu.com/goorder/passenger/operationgirdle 629 | ||ecom.map.baidu.com/ad-ops/ 630 | ! 哔哩哔哩漫画 631 | ||manga.bilibili.com/twirp/comic.v*.Comic/GetBubbles 632 | ||manga.bilibili.com/twirp/comic.v*.Comic/SearchBanner 633 | ||manga.bilibili.com/twirp/comic.v*.Comic/GetCommonBanner 634 | ||manga.bilibili.com/twirp/comic.v*.Comic/ListFlash 635 | ! 斗鱼 636 | ||douyucdn.cn/japi/sign/app/getinfo 637 | ! 拼多多第三方页面 638 | ||video-dsp.pddpic.com/market-dsp-video/ 639 | ||t-dsp.pinduoduo.com/dspcb/i/mrk_union 640 | ||images.pinduoduo.com/mrk/ 641 | ||images.pinduoduo.com/marketing_api/ 642 | ! 拼多多 643 | ||api.pinduoduo.com/api/cappuccino/splash 644 | ||api.yangkeduo.com/api/cappuccino/splash 645 | ||api.pinduoduo.com/api/brand-olay/goods_detail/bybt_guide 646 | ! 快对 647 | ||kuaiduizuoye.com/init/ad/ 648 | ||kuaiduizuoye.com/kdapi/conf/appbanners 649 | ||kuaiduizuoye.com/kdapi/conf/initbanner 650 | ! 墨迹天气 651 | ||p*-be-pack-sign.pglstatp-toutiao.com/ad-app-package/*$app=com.moji.mjweather.light 652 | ||p*-be-pack-sign.pglstatp-toutiao.com/web.business.image/*$app=com.moji.mjweather.light 653 | ||p*-be-pack-sign.pglstatp-toutiao.com/ad-app-package/*$app=com.moji.mjweather 654 | ||p*-be-pack-sign.pglstatp-toutiao.com/web.business.image/*$app=com.moji.mjweather 655 | ||fcard.api.moji.com/flycard/flyCard 656 | ||vdo.api.moji.com/shortvideo/card/subscribe 657 | ||vdo.api.moji.com/shortvideo/video/index_flow 658 | ||vdo.api.moji.com/shortvideo/video_user/hotGuyRcm 659 | ||vdo.api.moji.com/shortvideo/zone/follow_src_zone 660 | ||sns.api.moji.com/user/dynamic_v9/json/someone_interest 661 | ! 皮皮虾 662 | ||api.pipix.com/api/ad/* 663 | ||api5-lq.pipix.com/api/ad/* 664 | ||api.pipix.com/bds/banner/* 665 | ||api5-lq.pipix.com/bds/banner/* 666 | ||api*.pipix.com/bds/banner/* 667 | ||api*.pipix.com/api/ad/* 668 | ! 七猫小说 669 | ||api-cfg.wtzw.com/v1/splash/ 670 | ||api-cfg.wtzw.com/v*/splash/ 671 | ||api-bc.wtzw.com/api/v*/book-store/config 672 | ||api-bc.wtzw.com/api/v*/book-store/push-book 673 | ||api-bc.wtzw.com/api/v*/operation 674 | ||cdn.wtzw.com/bookimg/free/api/v*/reader/reader-copy-paragraph-all.json 675 | ||api-cfg.wtzw.com/v*/reward 676 | ||api-cfg.wtzw.com/v*/adv 677 | ||api-cfg.wtzw.com/v*/offline-adv/index 678 | ||api-cfg.wtzw.com/v*/operation/index?ad_personal_switch 679 | ||xiaoshuo.wtzw.com/api/v*/withdraw/init 680 | ! 有道词典 681 | ||gorgon.youdao.com/gorgon/brand/prefetch.s? 682 | ||gorgon.youdao.com/gorgon/request.s? 683 | ! 微博 684 | ||api.weibo.cn/*/sug/list/finderchange? 685 | ||api.weibo.cn/*/was/finder/searchbarchange? 686 | ||api.weibo.cn/2/*/chaohua/discovery/home_bottom/switch? 687 | ||api.weibo.cn/2/*/huati/discovery_home_bottom_getdotinfo 688 | ||api.weibo.cn/2/*/huati/mobile_discovery_searchchange 689 | ||api.weibo.cn/2/*/live/media_homelist? 690 | ||api.weibo.cn/2/*/wbox/*/home_bottom_modal 691 | ||api.weibo.cn/2/*/wbox/*/interest_category 692 | ||api.weibo.cn/2/ad/weibointl? 693 | ||api.weibo.cn/2/comments/bullet_screens? 694 | ||api.weibo.cn/2/hot/hours_spotlight? 695 | ||api.weibo.cn/2/photo/info? 696 | ||api.weibo.cn/2/push/daily 697 | ||api.weibo.cn/2/remind/*unread* 698 | ||api.weibo.cn/2/remind/group_unread? 699 | ||api.weibo.cn/2/remind/unread_count? 700 | ||api.weibo.cn/2/search/container_discover? 701 | ||api.weibo.cn/2/statuses/container_positive 702 | ||api.weibo.cn/2/statuses/push_info 703 | ||api.weibo.cn/2/ug/checkin/list 704 | ||api.weibo.cn/2/video/redpacket? 705 | ||api.weibo.cn/2/video/tiny_video_info_show? 706 | ||api.weibo.cn/2/vote/get_vote_detail? 707 | ||bootrealtime.uve.weibo.com/v*/ad/realtime 708 | ||bootrealtime.uve.weibo.com/v2/ad/realtime 709 | ||bootrealtime.uve.weibo.com/v3/ad/realtime 710 | ||card.weibo.com/article/m/aj/reward 711 | ||card.weibo.com/article/m/aj/uvead 712 | ||sdkapp.uve.weibo.com/interface/sdk/get-lbs-cell-info.php 713 | ||sdkapp.uve.weibo.com/interface/sdk/sdkconfig.php 714 | ||weibo.com/ttarticle/x/m/aj/reward 715 | ||weibo.com/ttarticle/x/m/aj/uvead 716 | ! 小红书 717 | ||edith.xiaohongshu.com/api/sns/v1/surprisebox/get_style 718 | ||edith.xiaohongshu.com/api/sns/v1/surprisebox/open 719 | ||edith.xiaohongshu.com/api/sns/v1/surprisebox/submit_action 720 | ||www.xiaohongshu.com/api/marketing/box/trigger? 721 | ||edith.xiaohongshu.com/api/sns/v2/guide/user_banner 722 | ||edith.xiaohongshu.com/api/sns/v3/note/guide 723 | ||www.xiaohongshu.com/api/sns/v1/ads/resource 724 | ||www.xiaohongshu.com/api/sns/v2/hey/*/hey_gallery 725 | ! 小黑盒 726 | ||api.xiaoheihe.cn/account/get_ads_info_v2 727 | ! 最右 728 | ||api.izuiyou.com/ad/ 729 | ||api.izuiyou.com/config/get_banner 730 | ||file-share.izuiyou.com/octopus/media/templates/search_home_page_nv/search_home_page_nv 731 | ||file-share.izuiyou.com/octopus/media/templates/search_home_page_nv_v2/search_home_page_nv 732 | ||mercury-gateway.ixiaochuan.cn/mercury/v1/ad/ 733 | ||zyfile.izuiyou.com/zyfile/c2/a0/*.json 734 | ! 移动云盘 735 | ||jzts.cmpassport.com/personalized/getPushContent 736 | ||ad.mcloud.139.com/advertapi 737 | 738 | 739 | -------------------------------------------------------------------------------- /configure/保留奖励.prop: -------------------------------------------------------------------------------- 1 | c2.gdt.qq.com 2 | d.gdt.qq.com 3 | gw.365you.com 4 | h5.gdt.qq.com 5 | i.gdt.qq.com 6 | ii.gdt.qq.com 7 | ipv4.gdt.qq.com 8 | m.gdt.qq.com 9 | mi.gdt.qq.com 10 | nc.gdt.qq.com 11 | pgdt.gtimg.cn 12 | pgdt.ugdtimg.com 13 | pv.sohu.com 14 | q.i.gdt.qq.com 15 | rm.gdt.qq.com 16 | sdk.e.qq.com 17 | t.gdt.qq.com 18 | tangram.e.qq.com 19 | v2.gdt.qq.com 20 | v3.gdt.qq.com 21 | v6ii.gdt.qq.com 22 | vr.gdt.qq.com 23 | x.adnet.qq.com 24 | xc.gdt.qq.com 25 | #QQ广告奖励 26 | win.gdt.qq.com 27 | #抖音广告奖励 28 | #is.snssdk.com 29 | #微信广告奖励 30 | wxsnsad.tc.qq.com 31 | wxsnsdy.tc.qq.com 32 | wxsnsdy.video.qq.com 33 | #微信红包封面/某些图片也是这个域名加载不出来就自己放行。 34 | wxsnsdy.wxs.qq.com 35 | wxsnsdythumb.wxs.qq.com 36 | #微信小程序奖励 37 | wxa.wxs.qq.com 38 | wximg.wxs.qq.com 39 | wxsmw.wxs.qq.com 40 | #百度云视频广告奖励 41 | nadvideo.baidu.com 42 | nadvideo2.baidu.com 43 | #快手支持 44 | #删掉会使得部分开屏广告复燃 45 | open.e.kuaishou.com 46 | e.kuaishou.com 47 | api2.e.kuaishou.com 48 | api.e.kuaishou.com 49 | #APP分享 50 | #注释掉可获得广告奖励 51 | #但是也会有部广告重新出现,毕竟穿山甲是目前最恶心的广告联盟 52 | log-api.pangolin-sdk-toutiao-b.com 53 | log-api.pangolin-sdk-toutiao.com 54 | api-access.pangolin-sdk-toutiao.com 55 | api-access.pangolin-sdk-toutiao-b.com 56 | #QQ音乐免费时长广告奖励 57 | adstats.tencentmusic.com 58 | ad.tencentmusic.com 59 | adexpo.tencentmusic.com 60 | adcdn.tencentmusic.com 61 | adclick.tencentmusic.com 62 | adsmind.gdtimg.com 63 | rpt.gdt.qq.com 64 | v.gdt.qq.com 65 | c.gdt.qq.com 66 | tmead.y.qq.com 67 | tmeadcomm.y.qq.com 68 | tmeadbak.y.qq.com 69 | #QQ音乐广告奖励检测 70 | oth.eve.mdt.qq.com 71 | oth.str.mdt.qq.com 72 | oth.update.mdt.qq.com 73 | mtt.eve.mdt.qq.com 74 | mtt.str.mdt.qq.com 75 | #biubiu加速器 76 | adx-bj.anythinktech.com 77 | adx-bj-req.anythinktech.com 78 | dc.sigmob.cn 79 | cn-api.anythinktech.com 80 | cn-tk.anythinktech.com 81 | tk.anythinktech.com 82 | adx.anythinktech.com 83 | v1-lm.adukwai.com 84 | v2-lm.adukwai.com 85 | v4-lm.adukwai.com 86 | -------------------------------------------------------------------------------- /configure/广告奖励.prop: -------------------------------------------------------------------------------- 1 | c2.gdt.qq.com 2 | d.gdt.qq.com 3 | gw.365you.com 4 | h5.gdt.qq.com 5 | i.gdt.qq.com 6 | ii.gdt.qq.com 7 | ipv4.gdt.qq.com 8 | m.gdt.qq.com 9 | mi.gdt.qq.com 10 | nc.gdt.qq.com 11 | pgdt.gtimg.cn 12 | pgdt.ugdtimg.com 13 | pv.sohu.com 14 | q.i.gdt.qq.com 15 | rm.gdt.qq.com 16 | sdk.e.qq.com 17 | t.gdt.qq.com 18 | tangram.e.qq.com 19 | v2.gdt.qq.com 20 | v3.gdt.qq.com 21 | v6ii.gdt.qq.com 22 | vr.gdt.qq.com 23 | x.adnet.qq.com 24 | xc.gdt.qq.com 25 | #QQ广告奖励 26 | win.gdt.qq.com 27 | #抖音广告奖励 28 | #is.snssdk.com 29 | #微信广告奖励 30 | wxsnsad.tc.qq.com 31 | wxsnsdy.tc.qq.com 32 | wxsnsdy.video.qq.com 33 | #微信红包封面/某些图片也是这个域名加载不出来就自己放行。 34 | wxsnsdy.wxs.qq.com 35 | wxsnsdythumb.wxs.qq.com 36 | #微信小程序奖励 37 | wxa.wxs.qq.com 38 | wximg.wxs.qq.com 39 | wxsmw.wxs.qq.com 40 | #百度云视频广告奖励 41 | nadvideo.baidu.com 42 | nadvideo2.baidu.com 43 | #快手支持 44 | #删掉会使得部分开屏广告复燃 45 | open.e.kuaishou.com 46 | e.kuaishou.com 47 | api2.e.kuaishou.com 48 | api.e.kuaishou.com 49 | #APP分享 50 | #注释掉可获得广告奖励 51 | #但是也会有部广告重新出现,毕竟穿山甲是目前最恶心的广告联盟 52 | log-api.pangolin-sdk-toutiao-b.com 53 | log-api.pangolin-sdk-toutiao.com 54 | api-access.pangolin-sdk-toutiao.com 55 | api-access.pangolin-sdk-toutiao-b.com 56 | #QQ音乐免费时长广告奖励 57 | adstats.tencentmusic.com 58 | ad.tencentmusic.com 59 | adexpo.tencentmusic.com 60 | adcdn.tencentmusic.com 61 | adclick.tencentmusic.com 62 | adsmind.gdtimg.com 63 | rpt.gdt.qq.com 64 | v.gdt.qq.com 65 | c.gdt.qq.com 66 | tmead.y.qq.com 67 | tmeadcomm.y.qq.com 68 | tmeadbak.y.qq.com 69 | #QQ音乐广告奖励检测 70 | oth.eve.mdt.qq.com 71 | oth.str.mdt.qq.com 72 | oth.update.mdt.qq.com 73 | mtt.eve.mdt.qq.com 74 | mtt.str.mdt.qq.com 75 | #biubiu加速器 76 | adx-bj.anythinktech.com 77 | adx-bj-req.anythinktech.com 78 | dc.sigmob.cn 79 | cn-api.anythinktech.com 80 | cn-tk.anythinktech.com 81 | tk.anythinktech.com 82 | adx.anythinktech.com 83 | v1-lm.adukwai.com 84 | v2-lm.adukwai.com 85 | v4-lm.adukwai.com 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /configure/排除列表.prop: -------------------------------------------------------------------------------- 1 | #host屏蔽的域名 2 | #X5内核 3 | ^0.0.0.0[[:space:]]cfg.imtt.qq.com$ 4 | ^0.0.0.0[[:space:]]soft.tbs.imtt.qq.com$ 5 | ^0.0.0.0[[:space:]]res.imtt.qq.com$ 6 | #手机搜狗输入法 7 | ^0.0.0.0[[:space:]]shouji.sougou.com$ 8 | #MIUI 流量中心 9 | ^0.0.0.0[[:space:]]api.miui.security.xiaomi.com$ 10 | ^0.0.0.0[[:space:]]api.sec.intl.miui.com$ 11 | ^0.0.0.0[[:space:]]api.sec.miui.com$ 12 | #涉及流量校正以及应用列表上传 13 | ^0.0.0.0[[:space:]]adv.sec.miui.com$ 14 | ^0.0.0.0[[:space:]]flash.sec.miui.com$ 15 | #QQ直播 16 | ^0.0.0.0[[:space:]]livew.l.qq.com$ 17 | ^0.0.0.0[[:space:]]l.qq.com$ 18 | #魅族 19 | ^0.0.0.0[[:space:]]aider.meizu.com$ 20 | ^0.0.0.0[[:space:]]www.meizu.com$ 21 | ^0.0.0.0[[:space:]]store.meizu.com$ 22 | #魅族天气 23 | ^0.0.0.0[[:space:]]aider-res.meizu.com$ 24 | #爱奇艺、腾讯视频 25 | ^0.0.0.0[[:space:]]mdevstat.qqlive.qq.com$ 26 | ^0.0.0.0[[:space:]]t7z.cupid.iqiyi.com$ 27 | ^0.0.0.0[[:space:]]msg.video.qiyi.com$ 28 | #抖音小程序、今日头条搜索 29 | ^0.0.0.0[[:space:]]is.snssdk.com$ 30 | ^0.0.0.0[[:space:]]i[a-z].snssdk.com$ 31 | #QQ邮箱 32 | ^0.0.0.0[[:space:]]iwx.mail.qq.com$ 33 | #腾讯活动 34 | ^0.0.0.0[[:space:]]aegis.qq.com$ 35 | ^0.0.0.0[[:space:]]ios.bugly.qq.com$ 36 | ^0.0.0.0[[:space:]]msdk.qq.com$ 37 | ^0.0.0.0[[:space:]]ssl.msdk.qq.com$ 38 | ^0.0.0.0[[:space:]]img.ssl.msdk.qq.com$ 39 | ^0.0.0.0[[:space:]]ap6.ssl.msdk.qq.com$ 40 | #QQ微信小(程序)游戏 41 | ^0.0.0.0[[:space:]]game.weixin.qq.com$ 42 | #^0.0.0.0[[:space:]]dir.minigame.qq.com$ 43 | #^0.0.0.0[[:space:]]game.html5.qq.com$ 44 | #^0.0.0.0[[:space:]]user1.game.qq.com$ 45 | #MIUI 天气预报 46 | ^0.0.0.0[[:space:]]wtradv.market.xiaomi.com$ 47 | #推特(第三方调用) 48 | ^0.0.0.0[[:space:]]api.twitter.com$ 49 | ^0.0.0.0[[:space:]]mobile.twitter.com$ 50 | ^0.0.0.0[[:space:]]twitter.com$ 51 | ^0.0.0.0[[:space:]]www.twitter.com$ 52 | #MIUI 快应用 53 | ^0.0.0.0[[:space:]]www.api.hybrid.intl.xiaomi.com$ 54 | ^0.0.0.0[[:space:]]api.hybrid.intl.xiaomi.com$ 55 | #网易某版本 56 | ^0.0.0.0[[:space:]]api.iplay.163.com$ 57 | #九游游戏中心 58 | ^0.0.0.0[[:space:]]api.open.uc.cn$ 59 | #百度小程序 60 | ^0.0.0.0[[:space:]]ossapi.baidu.com$ 61 | #UC文章 62 | ^0.0.0.0[[:space:]]mparticle.uc.cn$ 63 | #微信福利/活动中心 64 | ^0.0.0.0[[:space:]]isee.weishi.qq.com$ 65 | #京东图片api 66 | ^0.0.0.0[[:space:]]img14.360buyimg.com$ 67 | #腾讯充值 68 | ^0.0.0.0[[:space:]]midas.gtimg.cn$ 69 | ^0.0.0.0[[:space:]]api.unipay.qq.com$ 70 | #皮皮虾/字节跳动 71 | ^0.0.0.0[[:space:]]mon.snssdk.com$ 72 | ^0.0.0.0[[:space:]]mon.isnssdk.com$ 73 | ^0.0.0.0[[:space:]]dig.bdurl.net$ 74 | ^0.0.0.0[[:space:]]is-hl.snssdk.com$ 75 | ^0.0.0.0[[:space:]]p.*[[:digit:]]-ppx.byteimg.com$ 76 | ^0.0.0.0[[:space:]]dig.zjurl.cn$ 77 | ^0.0.0.0[[:space:]]i.snssdk.com$ 78 | #^0.0.0.0[[:space:]]sf3-ttcdn-tos.pstatp.com$ 79 | ^0.0.0.0[[:space:]]dm.toutiao.com$ 80 | #应用宝 81 | ^0.0.0.0[[:space:]]pp.myapp.com$ 82 | #淘宝授权 83 | ^0.0.0.0[[:space:]]acs4baichuan.m.taobao.com$ 84 | #淘宝活动 85 | ^0.0.0.0[[:space:]]s.click.taobao.com$ 86 | ^0.0.0.0[[:space:]]s.click.alimama.com$ 87 | ^0.0.0.0[[:space:]]s.click.tmall.com$ 88 | #pornhub 89 | ^0.0.0.0[[:space:]]ss.phncdn.com$ 90 | ^0.0.0.0[[:space:]]ei.phncdn.com$ 91 | ^0.0.0.0[[:space:]]dm1.phncdn.com$ 92 | ^0.0.0.0[[:space:]]di.phncdn.com$ 93 | ^0.0.0.0[[:space:]]cdn1d-static-shared.phncdn.com$ 94 | ^0.0.0.0[[:space:]]cdn1-smallimg.phncdn.com$ 95 | ^0.0.0.0[[:space:]]cn.pornhub.com$ 96 | ^0.0.0.0[[:space:]]www.pornhub.com$ 97 | 98 | #知乎小程序 99 | ^0.0.0.0[[:space:]]sugar.zhihu.com$ 100 | #支付宝生活号 101 | ^0.0.0.0[[:space:]]gm.mmstat.com$ 102 | #支付宝扫码支付 103 | ^0.0.0.0[[:space:]]pingjs.qq.com$ 104 | #支付宝运动 105 | ^0.0.0.0[[:space:]]wgo.mmstat.com$ 106 | #迅雷影音api 107 | ^0.0.0.0[[:space:]]api-shoulei-ssl.xunlei.com$ 108 | #MIUI浏览器在线翻译 109 | ^0.0.0.0[[:space:]]ssl-cdn.static.browser.mi-img.com$ 110 | #MIUI浏览器关键词联想 111 | #^0.0.0.0[[:space:]]activity.browser.intl.miui.com$ 112 | #^0.0.0.0[[:space:]]reader.browser.miui.com$ 113 | #X5内核文档插件下载 114 | ^0.0.0.0[[:space:]]static.res.qq.com$ 115 | #MIUI天星金融钱包 116 | ^0.0.0.0[[:space:]]api.jr.mi.com$ 117 | #豌豆荚网络下载 118 | ^0.0.0.0[[:space:]]alissl.ucdl.pp.uc.cn$ 119 | #微博国际版图片保存 120 | ^0.0.0.0[[:space:]]wx2.sinaimg.cn$ 121 | #百度百科 122 | ^0.0.0.0[[:space:]]baikebcs.bdimg.com$ 123 | ^0.0.0.0[[:space:]]bkimg.cdn.bcebos.com$ 124 | #QQ安全网址访问 125 | ^0.0.0.0[[:space:]]c.pc.qq.com$ 126 | #cdn加速 127 | ^0.0.0.0[[:space:]]cdn.bootcdn.net$ 128 | #未知的白名单 129 | #^0.0.0.0[[:space:]]rpc-php.trafficfactory.biz$ 130 | #^0.0.0.0[[:space:]]adv.sec.miui.com$ 131 | #^0.0.0.0[[:space:]]data.mistat.xiaomi.com$ 132 | #^0.0.0.0[[:space:]]adash.man.aliyuncs.com$ 133 | #微信广告政策 134 | ^0.0.0.0[[:space:]]ads.privacy.qq.com$ 135 | #百度求医问药网 136 | ^0.0.0.0[[:space:]]med-fe.cdn.bcebos.com$ 137 | #微信部分小程序登陆 138 | ^0.0.0.0[[:space:]]pv.sohu.com$ 139 | #百度百家号 140 | ^0.0.0.0[[:space:]]f10.baidu.com$ 141 | #MIUI 主题 142 | ^0.0.0.0[[:space:]]zhuti.xiaomi.com$ 143 | #爱(i)茅台 144 | ^0.0.0.0[[:space:]]mm1.365dmp.com$ 145 | ^0.0.0.0[[:space:]]mm3.365dmp.com$ 146 | ^0.0.0.0[[:space:]]sfp.safe.baidu.com$ 147 | ^0.0.0.0[[:space:]]sofire.bdstatic.com$ 148 | ^0.0.0.0[[:space:]]sofire.baidu.com$ 149 | #MIUI浏览器 150 | ^0.0.0.0[[:space:]]hot.browser.intl.miui.com$ 151 | ^0.0.0.0[[:space:]]hot.browser.miui.com$ 152 | #360清理大师 153 | ^0.0.0.0[[:space:]]sjws.ssl.qihucdn.com$ 154 | ^0.0.0.0[[:space:]]mvconf.f.360.cn$ 155 | #腾讯新闻 156 | #^0.0.0.0[[:space:]]news.l.qq.com$ 157 | #^0.0.0.0[[:space:]]xw.qq.com$ 158 | ^0.0.0.0[[:space:]]pacaio.match.qq.com$ 159 | #^0.0.0.0[[:space:]]news.ssp.qq.com$ 160 | #UC浏览器 161 | ^0.0.0.0[[:space:]]emoji.uc.cn$ 162 | #^0.0.0.0[[:space:]]m.uczzd.cn$ 163 | ^0.0.0.0[[:space:]]iflow.uc.cn$ 164 | ^0.0.0.0[[:space:]]iflow-api.uc.cn$ 165 | ^0.0.0.0[[:space:]]iflow.uczzd.cn$ 166 | #夸克浏览器下载插件 167 | ^0.0.0.0[[:space:]]pdds-c1-cdn.uc.cn$ 168 | ^0.0.0.0[[:space:]]pdds.ucweb.com$ 169 | #DNS服务器 170 | ^0.0.0.0[[:space:]]dns9.quad9.net$ 171 | ^0.0.0.0[[:space:]]dns.cloudflare.com$ 172 | ^0.0.0.0[[:space:]]dns.rubyfish.cn$ 173 | ^0.0.0.0[[:space:]]1dot1dot1dot1.cloudflare-dns.com$ 174 | ^0.0.0.0[[:space:]]dns.alidns.com$ 175 | ^0.0.0.0[[:space:]]dns.google.com$ 176 | #腾讯追踪 177 | #^0.0.0.0[[:space:]]btrace.qq.com$ 178 | #^0.0.0.0[[:space:]]h.trace.qq.com$ 179 | #淘宝菜鸟裹裹 180 | #^0.0.0.0[[:space:]]zconfig.alibabausercontent.com$ 181 | #^0.0.0.0[[:space:]]sjarvis.taobao.com$ 182 | ^0.0.0.0[[:space:]]appdownload.alicdn.com$ 183 | #QQ微信头像 184 | ^0.0.0.0[[:space:]]wx.qlogo.cn$ 185 | ^0.0.0.0[[:space:]]py.qlogo.cn$ 186 | ^0.0.0.0[[:space:]]py2.qlogo.cn$ 187 | ^0.0.0.0[[:space:]]p.qlogo.cn$ 188 | #抖音网页版验证图片 189 | ^0.0.0.0[[:space:]]verify.snssdk.com$ 190 | ^0.0.0.0[[:space:]]mcs.snssdk.com$ 191 | ^0.0.0.0[[:space:]]vcs.snssdk.com$ 192 | #小米隐私收集 193 | ^0.0.0.0[[:space:]]data\.mistat\..*xiaomi.com$ 194 | ^0.0.0.0[[:space:]]www\.data\.mistat\..*xiaomi.com$ 195 | ^0.0.0.0[[:space:]]o.data.mistat.xiaomi.com$ 196 | #QQ安全中心 197 | ^0.0.0.0[[:space:]]aq.qq.com$ 198 | #QQ头像 199 | #^0.0.0.0[[:space:]]pgdt.gtimg.cn$ 200 | #美团外卖 201 | #^0.0.0.0[[:space:]]pingma.qq.com$ 202 | #小米隐私收集(为了省电,所以排除) 203 | ^0.0.0.0[[:space:]]tracking\..*miui\.com$ 204 | ^0.0.0.0[[:space:]]www\.tracking\..*miui\.com$ 205 | #小米广告配置文件 206 | ^0.0.0.0[[:space:]]sdkconfig\.ad.*\.xiaomi\.com$ 207 | ^0.0.0.0[[:space:]]www\.sdkconfig\.ad.*\.xiaomi\.com$ 208 | #MIUI手机管家 209 | ^0.0.0.0[[:space:]]data\.sec.*\.miui\.com$ 210 | ^0.0.0.0[[:space:]]www\.data\.sec.*\.miui\.com$ 211 | #小米文件下载 212 | ^0.0.0.0[[:space:]]api.airpush.com$ 213 | ^0.0.0.0[[:space:]]file.xmpush.xiaomi.com$ 214 | ^0.0.0.0[[:space:]]api.airpush.com$ 215 | ^0.0.0.0[[:space:]]api-push.meizu.com$ 216 | ^0.0.0.0[[:space:]]file.xiaomi.com$ 217 | ^0.0.0.0[[:space:]]f8.market.xiaomi.com$ 218 | ^0.0.0.0[[:space:]]f4.market.xiaomi.com$ 219 | #MIUI黄页 220 | ^0.0.0.0[[:space:]]api.huangye.miui.com$ 221 | #MIUI垃圾清理 222 | ^0.0.0.0[[:space:]]flash.sec.miui.com$ 223 | ^0.0.0.0[[:space:]]flash.sec.intl.miui.com$ 224 | ^0.0.0.0[[:space:]]staging.flash.sec.miui.com$ 225 | #小爱同学个人信息获取 226 | ^0.0.0.0[[:space:]]tracker.ai.xiaomi.com$ 227 | #小米主题设计师注册 228 | ^0.0.0.0[[:space:]]market.xiaomi.com$ 229 | #百度贴吧表情误杀 230 | ^0.0.0.0[[:space:]]static.tieba.baidu.com$ 231 | ^0.0.0.0[[:space:]]gsp0.baidu.com$ 232 | #咪咕爱看视频 233 | ^0.0.0.0[[:space:]]aikanvod.miguvideo.com$ 234 | ^0.0.0.0[[:space:]]aikanlive.miguvideo.com$ 235 | #部分设备的小米推送 236 | ^0.0.0.0[[:space:]]resolver.msg.xiaomi.net$ 237 | ^0.0.0.0[[:space:]]resolver.gslb.mi-idc.com$ 238 | ^0.0.0.0[[:space:]]register.xmpush.xiaomi.com$ 239 | ^0.0.0.0[[:space:]]register*mi.com$ 240 | ^0.0.0.0[[:space:]]resolver*mi.com$ 241 | ^0.0.0.0[[:space:]]app.chat.xiaomi.net$ 242 | ^0.0.0.0[[:space:]]cn.app.chat.xiaomi.net$ 243 | ^0.0.0.0[[:space:]][:alpha:]+.mistat.xiaomi.com$ 244 | ^0.0.0.0[[:space:]]abtest.mistat.xiaomi.com$ 245 | ^0.0.0.0[[:space:]]data.mistat.xiaomi.com$ 246 | ^0.0.0.0[[:space:]]cn.register.xmpush.xiaomi.com$ 247 | ^0.0.0.0[[:space:]]idmb.register.xmpush.global.xiaomi.com$ 248 | ^0.0.0.0[[:space:]]ru.register.xmpush.global.xiaomi.com$ 249 | ^0.0.0.0[[:space:]]fr.register.xmpush.global.xiaomi.com$ 250 | ^0.0.0.0[[:space:]]register.xmpush.global.xiaomi.com$ 251 | #部分设备的小米云服务 252 | ^0.0.0.0[[:space:]]api.g.micloud.xiaomi.net$ 253 | #小米云备份 254 | #^0.0.0.0[[:space:]]a0.app.xiaomi.com$ 255 | #^0.0.0.0[[:space:]]api.ad.xiaomi.com$ 256 | #^0.0.0.0[[:space:]]globalapi.ad.xiaomi.com$ 257 | #QQ浏览器插件误杀 258 | ^0.0.0.0[[:space:]]tbsone.imtt.qq.com$ 259 | #UC浏览器网盘 260 | #^0.0.0.0[[:space:]]uc.ucweb.com$ 261 | ^0.0.0.0[[:space:]]puds.ucweb.com$ 262 | #OPPO账号相关? 263 | ^0.0.0.0[[:space:]]u.oppomobile.com$ 264 | #新浪新闻图片 265 | ^0.0.0.0[[:space:]]k.sinaimg.cn$ 266 | #酷安推送来自酷安@ck388(http://www.coolapk.com/u/1347977) 267 | ^0.0.0.0[[:space:]]guid.tpns.tencent.com$ 268 | ^0.0.0.0[[:space:]]access1.tpns.tencent.com$ 269 | #有道翻译官网页翻译 270 | ^0.0.0.0[[:space:]]c.youdao.com$ 271 | #百度网盘签到图片界面 272 | ^0.0.0.0[[:space:]]staticsns.cdn.bcebos.com$ 273 | #大众养生网 274 | ^0.0.0.0[[:space:]]mipcache.bdstatic.com$ 275 | #阿里云盘网络验证码(酷安@我是真爱kun) 276 | ^0.0.0.0[[:space:]]acs.m.taobao.com$ 277 | #夸克网盘扫码登陆 278 | ^0.0.0.0[[:space:]]t.uc.cn$ 279 | #Flyme 游戏下载(酷安@何言与君识) 280 | ^0.0.0.0[[:space:]]api-game.meizu.com$ 281 | ^0.0.0.0[[:space:]]game.res.meizu.com$ 282 | #OPPO商店登陆 283 | ^0.0.0.0[[:space:]]client-uc.heytapmobi.com$ 284 | ^0.0.0.0[[:space:]]dragate.dc.oppomobile.com$ 285 | ^0.0.0.0[[:space:]]dragate-cn.dc.heytapmobi.com$ 286 | #网易云音乐 音效下载 287 | ^0.0.0.0[[:space:]]d[0-9].music.126.net$ 288 | #新浪新闻网页误杀 289 | ^0.0.0.0[[:space:]]mix.sina.com.cn$ 290 | ^0.0.0.0[[:space:]]cre.dp.sina.cn$ 291 | ^0.0.0.0[[:space:]]gk.sina.cn$ 292 | #头条授权登陆 293 | ^0.0.0.0[[:space:]]open.snssdk.com$ 294 | #网易年度总结 295 | ^0.0.0.0[[:space:]]count.mail.163.com$ 296 | #360翻译 297 | ^0.0.0.0[[:space:]]gw.shouji.360.cn$ 298 | ^0.0.0.0[[:space:]]msedown.360safe.com$ 299 | #移动一键登录 300 | ^0.0.0.0[[:space:]]da.mmarket.com$ 301 | #OPPO应用配置 302 | ^0.0.0.0[[:space:]]appconf.heytapdownload.com$ 303 | #京东 304 | ^0.0.0.0[[:space:]]gia.jd.com$ 305 | ^0.0.0.0[[:space:]]me-api.jd.com$ 306 | ^0.0.0.0[[:space:]]api.m.jd.com$ 307 | ^0.0.0.0[[:space:]]ms.jr.jd.com$ 308 | ^0.0.0.0[[:space:]]active.jd.com$ 309 | ^0.0.0.0[[:space:]]pro.m.jd.com$ 310 | ^0.0.0.0[[:space:]]m.jd.watbe.top$ 311 | ^0.0.0.0[[:space:]]m.jd.watbc.top$ 312 | #百度手机广告 313 | ^0.0.0.0[[:space:]]ecmb.bdimg.com$ 314 | ^0.0.0.0[[:space:]]ecma.bdimg.com$ 315 | #百度手机输入法 316 | ^0.0.0.0[[:space:]]udpolimenew.baidu.com$ 317 | ^0.0.0.0[[:space:]]mime.baidu.com$ 318 | #淘宝 319 | ^0.0.0.0[[:space:]]amdc.m.taobao.com$ 320 | ^0.0.0.0[[:space:]]click.mz.simba.taobao.com$ 321 | ^0.0.0.0[[:space:]]s.click.taobao.com$ 322 | ^0.0.0.0[[:space:]]eco.taobao.com$ 323 | ^0.0.0.0[[:space:]]err.taobao.com$ 324 | ^0.0.0.0[[:space:]]tunion-api.m.taobao.com$ 325 | ^0.0.0.0[[:space:]]zconfig.alibabausercontent.com$ 326 | #OPPO 应用商店 主题 开屏广告 327 | ^0.0.0.0[[:space:]]api-cn.store.heytapmobi.com$ 328 | ^0.0.0.0[[:space:]]api-cn.theme.heytapmobi.com$ 329 | #网易光遇 sky 登录 330 | #感谢[@niani2](https://github.com/niani2)反馈 331 | ^0.0.0.0[[:space:]]fp-upload.dun.163.com$ 332 | #放行一堆click 333 | ^0.0.0.0[[:space:]]click-trk.com$ 334 | ^0.0.0.0[[:space:]]clickcease.com$ 335 | ^0.0.0.0[[:space:]]clickdimensions.com$ 336 | ^0.0.0.0[[:space:]]clickiocdn.com$ 337 | ^0.0.0.0[[:space:]]clicktale.net$ 338 | ^0.0.0.0[[:space:]]intercom-clicks.com$ 339 | ^0.0.0.0[[:space:]]klclick*.com$ 340 | ^0.0.0.0[[:space:]]personaclick.com$ 341 | ^0.0.0.0[[:space:]]click.aliexpress.com$ 342 | ^0.0.0.0[[:space:]]click.allkeyshop.com$ 343 | ^0.0.0.0[[:space:]]click.alternate.de$ 344 | ^0.0.0.0[[:space:]]click.member.americanexpress.com$ 345 | ^0.0.0.0[[:space:]]click.appcast.io$ 346 | ^0.0.0.0[[:space:]]clicks.aweber.com$ 347 | ^0.0.0.0[[:space:]]click.emcom.bankofamerica.com$ 348 | ^0.0.0.0[[:space:]]click.em.blizzard.com$ 349 | ^0.0.0.0[[:space:]]click.myctm.canadiantire.ca$ 350 | ^0.0.0.0[[:space:]]target.clickfunnels.com$ 351 | ^0.0.0.0[[:space:]]click.cptrack.de$ 352 | ^0.0.0.0[[:space:]]click.mc.crimsontrace.com$ 353 | ^0.0.0.0[[:space:]]clickserve.dartsearch.net$ 354 | ^0.0.0.0[[:space:]]click.o.delta.com$ 355 | ^0.0.0.0[[:space:]]click.discord.com$ 356 | ^0.0.0.0[[:space:]]click.dji.com$ 357 | ^0.0.0.0[[:space:]]ad.doubleclick.net$ 358 | ^0.0.0.0[[:space:]]click.*.experian.com$ 359 | ^0.0.0.0[[:space:]]click.fidelityinvestments.com$ 360 | ^0.0.0.0[[:space:]]click.holidayinnclubemail.com$ 361 | ^0.0.0.0[[:space:]]click.instantink.hpsmart.com$ 362 | ^0.0.0.0[[:space:]]click.icptrack.com$ 363 | ^0.0.0.0[[:space:]]click.email.jcpenney.com$ 364 | ^0.0.0.0[[:space:]]click.justwatch.com$ 365 | ^0.0.0.0[[:space:]]click.klarna.de$ 366 | ^0.0.0.0[[:space:]]click.chp.kohls.com$ 367 | ^0.0.0.0[[:space:]]click.s.kohls.com$ 368 | ^0.0.0.0[[:space:]]click.e.krogermail.com$ 369 | ^0.0.0.0[[:space:]]click.landsend.com$ 370 | ^0.0.0.0[[:space:]]click.linksynergy.com$ 371 | ^0.0.0.0[[:space:]]click.e.lowes.com$ 372 | ^0.0.0.0[[:space:]]click.mail.macmillan.com$ 373 | ^0.0.0.0[[:space:]]click.microsoft*.com$ 374 | ^0.0.0.0[[:space:]]click.mlsend.com$ 375 | ^0.0.0.0[[:space:]]click.email.newegg.com$ 376 | ^0.0.0.0[[:space:]]click.members.nra.org$ 377 | ^0.0.0.0[[:space:]]clicks.pipaffiliates.com$ 378 | ^0.0.0.0[[:space:]]click.pstmrk.it$ 379 | ^0.0.0.0[[:space:]]click.redditmail.com$ 380 | ^0.0.0.0[[:space:]]click.royalcaribbeanmarketing.com$ 381 | ^0.0.0.0[[:space:]]click.e.safelite.com$ 382 | ^0.0.0.0[[:space:]]click.em.samsclub.com$ 383 | ^0.0.0.0[[:space:]]click.e.sees.com$ 384 | ^0.0.0.0[[:space:]]click.snapshat.com$ 385 | ^0.0.0.0[[:space:]]click.email.sonos.com$ 386 | ^0.0.0.0[[:space:]]click*.taobao.com$ 387 | ^0.0.0.0[[:space:]]click.mailing.ticketmaster.com$ 388 | ^0.0.0.0[[:space:]]clicks.trx-hub.com$ 389 | ^0.0.0.0[[:space:]]cdn.webclicks24.com$ 390 | ^0.0.0.0[[:space:]]click.zoom.us$ 391 | # 抖音小程序 392 | #^0.0.0.0[[:space:]]pitaya.bytedance.com$ 393 | # 网易云蜗牛阅读 394 | ^0.0.0.0[[:space:]]du.163.com$ 395 | #网易云音乐听歌统计 396 | ^0.0.0.0[[:space:]]clientlog.*music.163.com$ 397 | ^0.0.0.0[[:space:]]clientlogdep.music.163.com$ 398 | ^0.0.0.0[[:space:]]clientlogsf.music.163.com$ 399 | ^0.0.0.0[[:space:]]clientlog3.music.163.com$ 400 | # 抖音订单 401 | ^0.0.0.0[[:space:]]haohuo.snssdk.com$ 402 | # 联通营业厅 403 | ^0.0.0.0[[:space:]]ad.10010.com$ 404 | # 其他规则白名单 405 | # play商店 406 | ^0.0.0.0[[:space:]]app.adjust.com$ 407 | # 阿里巴巴 408 | ^0.0.0.0[[:space:]]ad.alimama.com$ 409 | ^0.0.0.0[[:space:]]alimama.com$ 410 | ^0.0.0.0[[:space:]]ad.jp$ 411 | ^0.0.0.0[[:space:]]ad.ourgame.com$ 412 | ^0.0.0.0[[:space:]]retcode.taobao.com$ 413 | ^0.0.0.0[[:space:]]m.intl.taobao.com$ 414 | ^0.0.0.0[[:space:]]advertisement.taobao.com$ 415 | ^0.0.0.0[[:space:]]tbskip.taobao.com$ 416 | ^0.0.0.0[[:space:]]eco.taobao.com$ 417 | #抖音 418 | ^0.0.0.0[[:space:]]ads.com$ 419 | ^0.0.0.0[[:space:]]ads.tiktok.com$ 420 | ^0.0.0.0[[:space:]]adv.blogupp.com$ 421 | # adobe 422 | ^0.0.0.0[[:space:]]na1r.services.adobe.com$ 423 | ^0.0.0.0[[:space:]]ereg.adobe.com$ 424 | ^0.0.0.0[[:space:]]lmlicenses.wip4.adobe.com$ 425 | #哔哩哔哩 426 | ^0.0.0.0[[:space:]]live-trace.bilibili.com$ 427 | ^0.0.0.0[[:space:]]g.msn.com$ 428 | # 腾讯视频 429 | ^0.0.0.0[[:space:]]c.gj.qq.com$ 430 | ^0.0.0.0[[:space:]]vd.l.qq.com$ 431 | ^0.0.0.0[[:space:]]mini2015.qq.com$ 432 | ^0.0.0.0[[:space:]]soup.v.qq.com$ 433 | # 百度贴吧 434 | ^0.0.0.0[[:space:]]gsp1.baidu.com$ 435 | ^0.0.0.0[[:space:]]sp1.baidu.com$ 436 | ^0.0.0.0[[:space:]]sp0.baidu.com$ 437 | ^0.0.0.0[[:space:]]sp2.baidu.com$ 438 | ^0.0.0.0[[:space:]]fexclick.baidu.com$ 439 | ^0.0.0.0[[:space:]]bce.baidu.com$ 440 | ^0.0.0.0[[:space:]]bj.bcebos.com$ 441 | #新浪微博 442 | ^0.0.0.0[[:space:]]sax.sina.com.cn$ 443 | ^0.0.0.0[[:space:]]wbapp.mobile.sina.cn$ 444 | ^0.0.0.0[[:space:]]u1.img.mobile.sina.cn$ 445 | # NOMO APP 446 | ^0.0.0.0[[:space:]]sdkapi.sms.mob.com$ 447 | ^0.0.0.0[[:space:]]news-l.play.aiseet.atianqi.com$ 448 | ^0.0.0.0[[:space:]]p-l.play.aiseet.atianqi.com$ 449 | # 支付宝 450 | ^0.0.0.0[[:space:]]mmstat.com$ 451 | # 支付宝以及淘宝农场任务 452 | ^0.0.0.0[[:space:]]audid-api.taobao.com$ 453 | ^0.0.0.0[[:space:]]audid-api-sg.taobao.com$ 454 | #139邮箱 455 | ^0.0.0.0[[:space:]]ad.mcloud.139.com$ 456 | #百度贴吧签到 457 | ^0.0.0.0[[:space:]]als.baidu.com$ 458 | #skype 459 | ^0.0.0.0[[:space:]]browser.pipe.aria.microsoft.com$ 460 | ^0.0.0.0[[:space:]]evtubescms.phncdn.com$ 461 | ^0.0.0.0[[:space:]]c1.skype.com$ 462 | ^0.0.0.0[[:space:]]events.data.microsoft.com$ 463 | ^0.0.0.0[[:space:]]mobile.pipe.aria.microsoft.com$ 464 | #mytvsuper 465 | ^0.0.0.0[[:space:]]imasdk.googleapis.com$ 466 | #123云盘卡开屏 467 | ^0.0.0.0[[:space:]]sdk-api.beizi.biz$ 468 | #快手送礼物 469 | ^0.0.0.0[[:space:]]w1.kskwai.com$ 470 | #唯品会APP 471 | ^0.0.0.0[[:space:]]api.union.vip.com$ 472 | #云闪付领券 473 | #^0.0.0.0[[:space:]]ads.cup.com.cn$ 474 | #^0.0.0.0[[:space:]]analytics.95516.com$ 475 | #百度部分UI图标 476 | ^0.0.0.0[[:space:]]gips1.baidu.com$ 477 | ^0.0.0.0[[:space:]]gips2.baidu.com$ 478 | #抖音人脸验证 479 | ^0.0.0.0[[:space:]]saveu.*.zijieapi.com$ 480 | ^0.0.0.0[[:space:]]saveu.zijieapi.com$ 481 | ^0.0.0.0[[:space:]]mcs.zijieapi.com$ 482 | ^0.0.0.0[[:space:]]rcs.cmpassport.com$ 483 | ^0.0.0.0[[:space:]]saveu3-normal-lq.zijieapi.com$ 484 | ^0.0.0.0[[:space:]]saveu5-normal-lq.zijieapi.com$ 485 | #MIUI在线权限管理器服务获取 486 | ^0.0.0.0[[:space:]]srv.sec.miui.com$ 487 | ^0.0.0.0[[:space:]]srv.sec.intl.miui.com$ 488 | #美图在线聊天 489 | ^0.0.0.0[[:space:]]api.neixin.cn$ 490 | #神马搜索建议 491 | ^0.0.0.0[[:space:]]sugs.m.sm.cn$ 492 | #奇异果Tv 493 | ^0.0.0.0[[:space:]]sdk.ptqy.gitv.tv$ 494 | #推送服务 495 | ^0.0.0.0[[:space:]]android.push.126.net$ 496 | ^0.0.0.0[[:space:]]httpdns.push.oppomobile.com$ 497 | #一堆ads 498 | ^0.0.0.0[[:space:]]ad.10010.com$ 499 | ^0.0.0.0[[:space:]]ad.12306.cn$ 500 | ^0.0.0.0[[:space:]]ad.3.cn$ 501 | ^0.0.0.0[[:space:]]ad.alimama.com$ 502 | ^0.0.0.0[[:space:]]ad.ourgame.com$ 503 | ^0.0.0.0[[:space:]]ad.thsi.cn$ 504 | ^0.0.0.0[[:space:]]ad.vivo.com.cn$ 505 | ^0.0.0.0[[:space:]]ad4.on.cc$ 506 | ^0.0.0.0[[:space:]]addon.dismall.com$ 507 | ^0.0.0.0[[:space:]]adjs.8591.com.tw$ 508 | ^0.0.0.0[[:space:]]adnet.qq.com$ 509 | ^0.0.0.0[[:space:]]adnxs.com$ 510 | ^0.0.0.0[[:space:]]adobedtm.com$ 511 | ^0.0.0.0[[:space:]]ads.lingxing.com$ 512 | ^0.0.0.0[[:space:]]ads.privacy.qq.com$ 513 | ^0.0.0.0[[:space:]]ads.tiktok.com$ 514 | #腾讯视频第三方API 515 | ^0.0.0.0[[:space:]]h5vv6.video.qq.com$ 516 | #手机性能排行 517 | ^0.0.0.0[[:space:]]img14.360buyimg.com$ 518 | 519 | 520 | 521 | 522 | #放到iptables屏蔽的域名 523 | #或者不要的网页广告 524 | #网页建议用专门的网页规则 525 | ^[0-9].*\.fls.doubleclick 526 | \.302br\.net$ 527 | \.pl$ 528 | \.click$ 529 | \.icu$ 530 | ^[0-9].*\.api.swrve.com 531 | ^[0-9].*\.eu-api.swrve.com 532 | safeframe\.googlesyndication\.com$ 533 | \.adswizz.com$ 534 | \.serswise\.pl$ 535 | \.distil\.ninja$ 536 | \.adj\.st$ 537 | \.live\.api\.drift\.com$ 538 | \.chat\.api\.drift\.com$ 539 | \.analytics\.mobilegamestats\.com$ 540 | \.sprout-ad\.com 541 | \.log\.optimizely\.com$ 542 | #\.v\.admaster\.com\.cn$ 543 | #\.ads\.tremorhub\.com$ 544 | #\.ad\.corp\.appnexus\.com$ 545 | \.api-05\.com$ 546 | \.log\.xoalt\.com$ 547 | \.api\.splkmobile\.com$ 548 | \.api\.botman\.ninja$ 549 | \.api\.5rocks\.io$ 550 | \.api\.pushwoosh\.com$ 551 | ^0.0.0.0[[:space:]][0-9].*\..*\.pl$ 552 | ^0.0.0.0[[:space:]]d[0-9]*\..*\.pl$ 553 | ^0.0.0.0[[:space:]]a[0-9]*\..*\.pl$ 554 | ^0.0.0.0[[:space:]]a[a-c]*\..*\.pl$ 555 | ^0.0.0.0[[:space:]]c[0-9]*\..*\.pl$ 556 | ^0.0.0.0[[:space:]]pub-.*\.*2\.dev$ 557 | ^0.0.0.0[[:space:]].*-.*\.appsflyersdk\.com$ 558 | ^0.0.0.0[[:space:]]thetollroads 559 | ^0.0.0.0[[:space:]].*-.*\.amazonaws.com$ 560 | ^0.0.0.0[[:space:]]www\.pub-.*\.*2\.dev$ 561 | ^0.0.0.0[[:space:]].*\.goonline.*pl\. 562 | #\.c\.admaster\.com\.cn$ 563 | xvideos.*cdn 564 | p[[:digit:]].*[[:digit:]]\.ahcdn\.com$ 565 | .*net\.zooplus\.[[:alpha:]].*[[:alpha:]]$ 566 | fra.*[[:digit:]].ib.adnxs.com$ 567 | bank.*[[:digit:]].*mp.mydas.mobi$ 568 | www\.[[:alpha:]].*[[:alpha:]].*\.top$ 569 | 570 | -------------------------------------------------------------------------------- /configure/自定义.prop: -------------------------------------------------------------------------------- 1 | #蓝奏云 2 | 127.0.0.1 lupic.cdn.bcebos.com 3 | 127.0.0.1 sanme2.lanzoui.com 4 | 127.0.0.1 glores2.lanzoui.com 5 | 127.0.0.1 sanme2.lanzoux.com 6 | 127.0.0.1 glores2.lanzoux.com 7 | #127.0.0.1 sanme2.taisantech.com 8 | #127.0.0.1 glores2.taisantech.com 9 | 10 | 11 | #其他 12 | #127.0.0.1 ulog.ksapisrv.com 13 | #127.0.0.1 ulogs.bytefence.com 14 | #127.0.0.1 erebor.douban.com 15 | #127.0.0.1 tobapplog.ctobsnssdk.com 16 | #127.0.0.1 h.trace.qq.com 17 | 127.0.0.1 yoke.tianyaoguan.cn 18 | 19 | #微信 20 | 127.0.0.1 chineseinla.com 21 | 127.0.0.1 ckxxbao.com 22 | 127.0.0.1 ptbus.com 23 | 127.0.0.1 pilipali.cc 24 | 127.0.0.1 qsptv.net 25 | 127.0.0.1 meijutt.tv 26 | 27 | #禁漫 28 | 127.0.0.1 ikhgg.snalkdl.top 29 | 127.0.0.1 adserver.juicyads.com 30 | 127.0.0.1 poweredby.jads.com 31 | 127.0.0.1 poweredby.jads.co 32 | 127.0.0.1 a.realsrv.com 33 | 127.0.0.1 ck.jads.co 34 | 127.0.0.1 2yearatt15.sugar1818.net 35 | 127.0.0.1 squirtatt15.sugar1818.net 36 | 127.0.0.1 xratt15.sky1818.net 37 | 127.0.0.1 bongacams.com 38 | 127.0.0.1 juicy-news.blogspot.us.intellitxt.com 39 | 127.0.0.1 juicy-pubg.com 40 | 127.0.0.1 juicyads.com 41 | 127.0.0.1 juicyads.me 42 | 127.0.0.1 juicycash.net 43 | 127.0.0.1 juicyceleb.us.intellitxt.com 44 | 127.0.0.1 juicyfiles.net 45 | 127.0.0.1 juicygf.com 46 | 127.0.0.1 juicygif.com 47 | 127.0.0.1 juicygirlfriends.com 48 | 127.0.0.1 juicygranny.com 49 | 127.0.0.1 juicylesbiansex.com 50 | 127.0.0.1 juicypussyclips.com 51 | 127.0.0.1 juicyteenie.com 52 | 127.0.0.1 juicyteenvideos.com 53 | 127.0.0.1 juicywebcams.com 54 | 127.0.0.1 juicywin.pl 55 | 127.0.0.1 juicywives.com 56 | 57 | #头条 58 | 127.0.0.1 dm-hl.toutiao.com 59 | 60 | #咪咕 61 | 127.0.0.1 ggx01.miguvideo.com 62 | 127.0.0.1 ggx02.miguvideo.com 63 | 127.0.0.1 ggic01.miguvideo.com 64 | 65 | 66 | #QQ 67 | 127.0.0.1 wxa.wxs.qq.com 68 | 127.0.0.1 badjs.weixinbridge.com 69 | 127.0.0.1 badjs.qq.com 70 | 127.0.0.1 mark.l.qq.com 71 | 127.0.0.1 market.m.qq.com 72 | 127.0.0.1 adss.video.qq.com 73 | 74 | #酷安广告 75 | 127.0.0.1 stream.snssdk.com 76 | #127.0.0.1 tnc3-bjlgy.snssdk.com 77 | 127.0.0.1 vas-hl-x.snssdk.com 78 | 127.0.0.1 dm-lq.toutiao.com 79 | #127.0.0.1 toblog.ctobsnssdk.com 80 | 127.0.0.1 mssdk-bu.bytedance.com 81 | #127.0.0.1 v3-default.ixigua.com 82 | 127.0.0.1 pangolin.snssdk.com 83 | 84 | #知乎 85 | #127.0.0.1 vdn1.vzuu.com 86 | #127.0.0.1 vdn.vzuu.com 87 | #127.0.0.1 vdn2.vzuu.com 88 | #127.0.0.1 vdn3.vzuu.com 89 | #127.0.0.1 vdn4.vzuu.com 90 | 91 | #MIUI 92 | 127.0.0.1 hysdkservice.g.mi.com 93 | #127.0.0.1 im-x.jd.com 94 | #127.0.0.1 img11.360buyimg.com 95 | #127.0.0.1 verify.sec.xiaomi.com 96 | #127.0.0.1 erebor.douban.com 97 | #127.0.0.1 static-verify.sec.xiaomi.com 98 | 127.0.0.1 amonsul.douban.com 99 | #127.0.0.1 msedown.360safe.com 100 | 101 | #腾讯22.03.18 102 | 127.0.0.1 qzs.gdtimg.com 103 | #127.0.0.1 adstats.tencentmusic.com 104 | 127.0.0.1 a.lubiao.com 105 | 127.0.0.1 access1.tpns.tencent.com 106 | 107 | #网易22.03.19 108 | 127.0.0.1 ad.163.com 109 | 127.0.0.1 adimg.163.com 110 | 127.0.0.1 adserver.163.com 111 | 127.0.0.1 iad.g.163.com 112 | 113 | 114 | #adrules 115 | 127.0.0.1 xg.adbeuch.cn 116 | 127.0.0.1 ssl.trace.zhiziyun.com 117 | 127.0.0.1 live-trace.bilibili.com 118 | 127.0.0.1 analytics.tv189.cn 119 | 127.0.0.1 adfunds.org 120 | 127.0.0.1 adchina.cc 121 | 122 | #有道云笔记22.03.26 123 | 127.0.0.1 push.lx.netease.com 124 | 127.0.0.1 advert.lx.netease.com 125 | 126 | #22.03.26 腾讯 127 | #127.0.0.1 guid.tpns.tencent.com 128 | #127.0.0.1 log.tpns.tencent.com 129 | #127.0.0.1 ping.cloud.tencent.com 130 | #127.0.0.1 sensors.cloud.tencent.com 131 | 127.0.0.1 ad.tencentmusic.com 132 | 127.0.0.1 adcdn.tencentmusic.com 133 | 127.0.0.1 adclick.tencentmusic.com 134 | 127.0.0.1 adexpo.tencentmusic.com 135 | 127.0.0.1 adstats.tencentmusic.com 136 | 127.0.0.1 bds.snssdk.com 137 | #127.0.0.1 midas.gtimg.cn 138 | 139 | #快手22.03.26 140 | 127.0.0.1 com.yxcorp.gifshow.ad 141 | 127.0.0.1 com.yxcorp.gifshow.map 142 | 143 | #穿山甲(snssdk)22.03.27 144 | #127.0.0.1 extlog.snssdk.com 145 | 127.0.0.1 ug.snssdk.com 146 | 147 | #京东22.03.27 148 | #127.0.0.1 img14.360buyimg.com 149 | 150 | #UC浏览器 151 | #127.0.0.1 pdds.ucweb.com 152 | #127.0.0.1 iflow.uczzd.cn 153 | 154 | #网页22.03.29 155 | 127.0.0.1 cdn.lakdc.top 156 | 127.0.0.1 www.smyfinancial.com 157 | 127.0.0.1 i.cat-happy.cn 158 | 127.0.0.1 i.hao61.net 159 | 160 | #22.03.30 161 | 127.0.0.1 staticsns.cdn.bcebos.com 162 | 163 | #QQ浏览器22.03.31 164 | 127.0.0.1 upage.imtt.qq.com 165 | 127.0.0.1 v.gdt.qq.com 166 | 127.0.0.1 mtt.eve.mdt.qq.com 167 | 127.0.0.1 mtt.str.mdt.qq.com 168 | 169 | #酷安 170 | #127.0.0.1 imtt.dd.qq.com 171 | #127.0.0.1 downum.game.uc.cn 172 | #127.0.0.1 gdown.baidu.com 173 | #127.0.0.1 opencdnbdgdown.jomodns.com 174 | 175 | #22.03.31 176 | #360加固 177 | 127.0.0.1 a.appjiagu.com 178 | 127.0.0.1 b.appjiagu.com 179 | 127.0.0.1 c.appjiagu.com 180 | 127.0.0.1 j.appjiagu.com 181 | 127.0.0.1 p.appjiagu.com 182 | 127.0.0.1 s.appjiagu.com 183 | 184 | #京东 185 | 127.0.0.1 cm.jd.com 186 | 127.0.0.1 im-x.jd.com 187 | 127.0.0.1 img-x.jd.com 188 | 127.0.0.1 u-x.jd.com 189 | 127.0.0.1 u.x.jd.com 190 | #127.0.0.1 x.jd.com 191 | 192 | #新浪微博 193 | 127.0.0.1 d0.sinaimg.cn 194 | 127.0.0.1 d1.sinaimg.cn 195 | 127.0.0.1 d2.sinaimg.cn 196 | 127.0.0.1 d3.sinaimg.cn 197 | 127.0.0.1 d6.sinaimg.cn 198 | 127.0.0.1 d7.sinaimg.cn 199 | 127.0.0.1 d8.sinaimg.cn 200 | 201 | #QQ浏览器04.01 202 | 127.0.0.1 pgdt.gtimg.cn 203 | 127.0.0.1 report.url.cn 204 | 127.0.0.1 static.res.qq.com 205 | #127.0.0.1 119.29.29.29 206 | 127.0.0.1 othstr.beacon.qq.com 207 | #127.0.0.1 urlsec.qq.com 208 | #127.0.0.1 res.imtt.qq.com 209 | 127.0.0.1 qbdsp.html5.qq.com 210 | 127.0.0.1 kde.qq.com 211 | 212 | #OPPO22.04.01 213 | 127.0.0.1 epoch-cn.cdo.heytapmobi.com 214 | #知乎 215 | #127.0.0.1 zhihu-pics-upload.zhimg.com 216 | #127.0.0.1 upload-oss.vzuu.com 217 | #127.0.0.1 pic1.zhimg.com 218 | #127.0.0.1 pic2.zhimg.com 219 | #127.0.0.1 pic3.zhimg.com 220 | #127.0.0.1 pic4.zhimg.com 221 | #127.0.0.1 pic5.zhimg.com 222 | #127.0.0.1 vdn.vzuu.com 223 | #127.0.0.1 vdn1.vzuu.com 224 | #127.0.0.1 vdn2.vzuu.com 225 | #127.0.0.1 mqtt.zhihu.com 226 | #127.0.0.1 mqtt-app.zhihu.com 227 | #127.0.0.1 log1.cmpassport.com 228 | #127.0.0.1 appcloud2.zhihu.com 229 | #127.0.0.1 api.zhihu.com 230 | #127.0.0.1 appcloud.zhihu.com 231 | 127.0.0.1 crash2.zhihu.com 232 | #127.0.0.1 ipv6.shuzilm.cn 233 | 234 | #pornhub 22.04.03 235 | 127.0.0.1 static.trafficjunky.com 236 | 127.0.0.1 media.trafficjunky.net 237 | 127.0.0.1 etahub.com 238 | #127.0.0.1 www.pornhub.com 239 | 127.0.0.1 hubt.pornhub.com 240 | 127.0.0.1 evtubescms.phncdn.com 241 | 127.0.0.1 galaxymedia.xyz 242 | 243 | #22.04.04 244 | #127.0.0.1 certs.godaddy.com 245 | #127.0.0.1 crl.godaddy.com 246 | #127.0.0.1 certificates.godaddy.com 247 | #127.0.0.1 ocsp.godaddy.com 248 | 249 | #22.04.04 250 | #127.0.0.1 u.jd.com 251 | #127.0.0.1 3gimg.qq.com 252 | #蓝奏云 253 | #127.0.0.1 statics.woozooo.com 254 | #127.0.0.1 analytics.woozooo.com 255 | #127.0.0.1 analytic.woozooo.com 256 | #127.0.0.1 crbug.com 257 | #127.0.0.1 wer.qdwght.com 258 | #127.0.0.1 hm.woozooo.com 259 | 260 | #清明节22.04.05 261 | 127.0.0.1 advsdkreport-def.tt.cn 262 | 127.0.0.1 gdfp.gifshow.com 263 | 127.0.0.1 sdk-link.tt.cn 264 | 127.0.0.1 mp.cmllw.iego.net 265 | #127.0.0.1 log-sdk.ksapisrv.com 266 | 267 | #22.04.07 268 | #127.0.0.1 cdn.ynuf.aliapp.org 269 | 127.0.0.1 9308935.com 270 | #127.0.0.1 wappass.baidu.com 271 | 272 | #22.4.14 273 | 127.0.0.1 tnc3-alisc1.snssdk.com 274 | 275 | #22.04.18 276 | #httpsdns 277 | #127.0.0.1 httpdns.alicdn.com 278 | #127.0.0.1 httpdns.n.netease.com 279 | #127.0.0.1 httpdns.netease.com 280 | #127.0.0.1 httpdns.qq.com 281 | #127.0.0.1 httpdns.qqcdn.com 282 | 283 | #其他 284 | 127.0.0.1 tnc3-aliec2.snssdk.com 285 | 127.0.0.1 open.kwaizt.com 286 | 127.0.0.1 raddus.bayescom.com 287 | 288 | #22.04.22MIUI安装包管理器 289 | 127.0.0.1 preview-api.installer.xiaomi.com 290 | 127.0.0.1 api.installer.xiaomi.com 291 | 292 | #22.04.23 293 | 127.0.0.1 adash.man.aliyuncs.com 294 | #127.0.0.1 sf3-cdn-tos.toutiaostatic.com 295 | #127.0.0.1 dig.bdurl.net 296 | #127.0.0.1 dig.zjurl.cn 297 | #网页劫持 298 | 127.0.0.1 wtrwx.top 299 | 300 | #22.04.24 301 | #网页劫持 302 | 127.0.0.1 zuwnq.cn 303 | 127.0.0.1 pre-mpnewyear.uc.cn 304 | 127.0.0.1 xn--pan-eixe.xn--baidu-jm6h.com 305 | 127.0.0.1 n--pan-eixe.xn--baidu-jm6h.com 306 | 127.0.0.1 hm.baidu.com 307 | 127.0.0.1 unet.ucweb.com 308 | #127.0.0.1 ucweb.com 309 | 127.0.0.1 download.uc.cn 310 | #127.0.0.1 image.uc.cn 311 | #127.0.0.1 g.alicdn.com 312 | #色情直播 313 | 127.0.0.1 aibanka.cnibk.com 314 | 127.0.0.1 ccwq.cc 315 | 127.0.0.1 hflalffajhf.top 316 | #其他 317 | 127.0.0.1 mydisplay.ctfile.com 318 | 319 | #22.04.25 320 | #百度云升级 321 | 127.0.0.1 update.baidu.com 322 | #腾讯视频 323 | #127.0.0.1 dldir1.qq.com 324 | #127.0.0.1 pingmid.qq.com 325 | 326 | #22.04.30 327 | #127.0.0.1 wx2.sinaimg.cn 328 | 329 | ##22.05.02 330 | #哔哩哔哩 331 | #127.0.0.1 gxb.mmstat.com 332 | 127.0.0.1 g.cn.miaozhen.com 333 | 127.0.0.1 e.cn.miaozhen.com 334 | 335 | #22.05.03 336 | #哔哩哔哩 337 | #127.0.0.1 mm1.365dmp.com 338 | #127.0.0.1 mm3.365dmp.com 339 | #127.0.0.1 mall.bilibili.com 340 | #127.0.0.1 i2.hdslb.com 341 | #127.0.0.1 i0.hdslb.com 342 | #127.0.0.1 i1.hdslb.com 343 | #127.0.0.1 dl.hdslb.com 344 | #127.0.0.1 upos-sz-static.bilivideo.com 345 | #127.0.0.1 upos-sz-mirrorcos.bilivideo.com 346 | #127.0.0.1 upos-sz-mirrorhwo1.bilivideo.com 347 | 127.0.0.1 xyqh5.163.com 348 | 349 | #22.05.06 350 | #京东商城广告 351 | 127.0.0.1 cdn.appads.com 352 | 127.0.0.1 bdsp.x.jd.com 353 | #127.0.0.1 cm.jd.com 354 | #127.0.0.1 gia.jd.com 355 | #127.0.0.1 u.x.jd.com 356 | 127.0.0.1 wn.x.jd.com 357 | 127.0.0.1 x.jd.com 358 | #必应 359 | 127.0.0.1 telemetry.appex.bing.net 360 | #金立手机广告 361 | 127.0.0.1 ads.gionee.com 362 | 127.0.0.1 pdl.gionee.com 363 | 127.0.0.1 adres.myaora.net 364 | #联想手机广告 365 | 127.0.0.1 adcore.lenovomm.com 366 | 127.0.0.1 pushapi.lenovomm.com 367 | 127.0.0.1 susapi.lenovomm.com 368 | 127.0.0.1 adapi.lenovogame.com 369 | 127.0.0.1 lcs.dev.surepush.cn 370 | 127.0.0.1 susapi.dev.surepush.cn 371 | 127.0.0.1 test.surepush.cn 372 | 127.0.0.1 ad.gtbrowser.com 373 | #魔趣广告 374 | 127.0.0.1 stats.mokeedev.com 375 | #oppo广告 376 | 127.0.0.1 adsfs.oppomobile.com 377 | 127.0.0.1 adx.ads.oppomobile.com 378 | 127.0.0.1 bdapi.ads.oppomobile.com 379 | 127.0.0.1 data.ads.oppomobile.com 380 | #127.0.0.1 httpdns.push.oppomobile.com 381 | 127.0.0.1 sms.ads.oppomobile.com 382 | #魅族广告 383 | 127.0.0.1 api-flow.flyme.cn 384 | 127.0.0.1 bro.flyme.cn 385 | 127.0.0.1 t-e.flyme.cn 386 | 127.0.0.1 t-flow.flyme.cn 387 | #127.0.0.1 api-game.meizu.com 388 | #127.0.0.1 game.res.meizu.com 389 | #127.0.0.1 game-res.meizu.com 390 | 127.0.0.1 umid.orion.meizu.com 391 | 127.0.0.1 uxip.meizu.com 392 | #127.0.0.1 api-push.meizu.com 393 | 127.0.0.1 push.res.meizu.com 394 | #京东 395 | 127.0.0.1 adnewnc.app.autohome.com.cn 396 | #apkpure 397 | 127.0.0.1 disqusads.com 398 | 399 | #22.05.07 400 | #小米应用商店 401 | #主题壁纸 402 | 127.0.0.1 lite.a.market.xiaomi.com 403 | 127.0.0.1 site.e.mi.com 404 | 127.0.0.1 staging.site.e.mi.com 405 | #豆瓣 406 | 127.0.0.1 erebor.douban.com 407 | 127.0.0.1 adsmind.ugdtimg.com 408 | 127.0.0.1 c2.gdt.qq.com 409 | 127.0.0.1 h5.gdt.qq.com 410 | #腾讯 411 | 127.0.0.1 bricks.e.qq.com 412 | 127.0.0.1 test.bricks.e.qq.com 413 | #127.0.0.1 aq.qq.com 414 | 127.0.0.1 oth.eve.mdt.qq.com 415 | #微博 416 | 127.0.0.1 api.mapps.uve.weibo.com 417 | 127.0.0.1 down.apps.sina.cn 418 | 127.0.0.1 pkg.sinaimg.cn 419 | 420 | ##22.05.11 421 | #禁漫天堂 422 | 127.0.0.1 www.googletagmanager.com 423 | #22.05.12 424 | #字节跳动 425 | #127.0.0.1 lf3-cdn-tos.bytegoofy.com 426 | #127.0.0.1 lf1-cdn-tos.bytescm.com 427 | 428 | #22.05.13 429 | #腾讯DNS 430 | #127.0.0.1 dns.weixin.qq.com.cn 431 | #MIUI 云控 432 | #127.0.0.1 rom.pt.miui.srv 433 | #127.0.0.1 jupiter.rus.sys.miui.com 434 | #127.0.0.1 jupiter.intl.sys.miui.com 435 | #127.0.0.1 jupiter.india.sys.miui.com 436 | #127.0.0.1 jupiter.sys.miui.com 437 | #127.0.0.1 preview-jupiter.sys.miui.com 438 | #127.0.0.1 preview-jupiter.rus.sys.miui.com 439 | #127.0.0.1 preview-jupiter.intl.sys.miui.com 440 | #127.0.0.1 preview-jupiter.india.sys.miui.com 441 | #127.0.0.1 staging.tracking.miui.com 442 | 127.0.0.1 staging.sdkconfig.ad.xiaomi.srv 443 | #127.0.0.1 tracking.miui.com 444 | #127.0.0.1 tracking.intl.miui.com 445 | #127.0.0.1 tracking.rus.miui.com 446 | #127.0.0.1 tracking.india.miui.com 447 | 127.0.0.1 sdkconfig.ad.xiaomi.com 448 | 127.0.0.1 sdkconfig.ad.intl.xiaomi.com 449 | 127.0.0.1 sdkconfig.ad.global.xiaomi.com 450 | 127.0.0.1 sdkconfig.ad.india.xiaomi.com 451 | 127.0.0.1 sdkconfig.ad.rus.xiaomi.com 452 | 453 | #22.05.17 454 | #云打包(老榕树联盟) 455 | 127.0.0.1 static.ydbimg.com 456 | 127.0.0.1 www.yundabao.com 457 | 458 | #22.05.20 459 | #番茄小说 460 | #127.0.0.1 tnc3-alisc1.zijieapi.com 461 | #127.0.0.1 mon.toutiaocloud.com 462 | #127.0.0.1 mon.toutiao.com 463 | 127.0.0.1 frontier-toutiao.snssdk.com 464 | 127.0.0.1 pitaya.bytedance.com 465 | 127.0.0.1 apps.bytesfield.com 466 | #127.0.0.1 ad.oceanengine.com 467 | 127.0.0.1 www.chengzijianzhan.com 468 | 127.0.0.1 tnc3-aliec2.zijieapi.com 469 | 127.0.0.1 s3a.pstatp.com 470 | 127.0.0.1 ad.zijieapi.com 471 | #127.0.0.1 i.snssdk.com 472 | #127.0.0.1 ib.snssdk.com 473 | 127.0.0.1 open.snssdk.com 474 | #127.0.0.1 p3-orange.byteorge.com 475 | #127.0.0.1 mon.snssdk.com 476 | #127.0.0.1 api.snssdk.com 477 | #127.0.0.1 pangolin.snssdk.com 478 | #127.0.0.1 success.ctobsnssdk.com 479 | #127.0.0.1 crash.snssdk.com 480 | #127.0.0.1 dig.zjurl.cn 481 | #127.0.0.1 dig.bdurl.net 482 | #127.0.0.1 minigame5-normal-lq.zijieapi.com 483 | #127.0.0.1 minigame5-normal-hl.zijieapi.com 484 | #微信DNS 485 | 127.0.0.1 dns.weixin.qq.com.cn 486 | 127.0.0.1 dns.weixin.qq.com 487 | 127.0.0.1 dns.weixin.qq.cn 488 | #apps分享 489 | 127.0.0.1 amdcopen.m.taobao.com 490 | #127.0.0.1 edu-image.nosdn.127.net 491 | #22.05.21 492 | 127.0.0.1 vali-g1.cp31.ott.cibntv.net 493 | 127.0.0.1 valipl.cp31.ott.cibntv.net 494 | 127.0.0.1 www.qchannel01.cn 495 | 127.0.0.1 b.qchannel03.cn 496 | 127.0.0.1 zconfig.alibabausercontent.com 497 | 127.0.0.1 sgj1.zmj22.top 498 | 499 | #22.05.24 500 | #127.0.0.1 playlog.youku.com 501 | 127.0.0.1 ems.youku.com 502 | 503 | #22.05.25 504 | #番茄小说 505 | 127.0.0.1 security-lq.snssdk.com 506 | 127.0.0.1 security-hl.snssdk.com 507 | #127.0.0.1 vcs-lq.snssdk.com 508 | #127.0.0.1 vcs-hl.snssdk.com 509 | 510 | #22.05.26 511 | #https://rapidtai.com 512 | 127.0.0.1 v1cdn.snmovie.com 513 | 127.0.0.1 syzbh66.xyz 514 | #微软搜索?为什么? 515 | #127.0.0.1 f99.gdsoq.com 516 | 517 | #22.05.27 518 | 127.0.0.1 dragate-cn.dc.heytapmobi.com 519 | 127.0.0.1 support.browser.heytapmobi.com 520 | 521 | #22.06.01 522 | #全媒体广告 523 | 127.0.0.1 yx.wucheshu.top 524 | 127.0.0.1 pyqqx.dcbxnc.cn 525 | 526 | #22.06.03 527 | 127.0.0.1 adsrich.qq.com 528 | #127.0.0.1 oimsgad.qq.com 529 | #豆瓣 530 | 127.0.0.1 img1.360buyimg.com 531 | #127.0.0.1 qnmob3.doubanio.com 532 | #127.0.0.1 img9.doubanio.com 533 | #127.0.0.1 img1.doubanio.com 534 | #127.0.0.1 img3.doubanio.com 535 | #127.0.0.1 erebor.douban.com 536 | 537 | #22.06.04 538 | #spotify 539 | 127.0.0.1 adeventtracker.spotify.com 540 | #22.06.10 541 | 127.0.0.1 23986834.com 542 | #MIUI浏览器 543 | 127.0.0.1 browser.sentry-cdn.com 544 | 127.0.0.1 security.browser.miui.com 545 | #127.0.0.1 httpdns.browser.miui.com 546 | #127.0.0.1 activity.browser.intl.miui.com 547 | 548 | #22.06.13 549 | #UC浏览器 550 | 127.0.0.1 ahn.jiankang123.net 551 | #127.0.0.1 dns.alidns.com 552 | #127.0.0.1 vs3.gzct.u3.ucweb.com 553 | 127.0.0.1 ucdc-upaas.uc.cn 554 | 127.0.0.1 hcadv.video.ums.uc.cn 555 | #127.0.0.1 pssn.alicdn.com 556 | #127.0.0.1 gzct.u3.ucweb.com 557 | 558 | #22.06.17 559 | #穿山甲 560 | 127.0.0.1 sf6-fe-tos.pglstatp-toutiao.com 561 | #22.06.18 562 | #百度贴吧 563 | #127.0.0.1 group.wejianzhan.com 564 | 127.0.0.1 static.yximgs.com 565 | #127.0.0.1 duzhanread.cdn.bcebos.com 566 | #127.0.0.1 opencdntbvideo.jomodns.com 567 | #127.0.0.1 opencdnbaidutbpic.jomodns.com 568 | #127.0.0.1 opencdnbdsimage.jomodns.com 569 | #127.0.0.1 wjz.e.shifen.com 570 | #127.0.0.1 bdbus-turbonet.baidu.com 571 | #127.0.0.1 group.wejianzhan.com 572 | #127.0.0.1 cd.xdplt.com 573 | #酷安 574 | #127.0.0.1 i1.hdslb.com 575 | #127.0.0.1 hcdnw.bili.c.cdnhwc2.com 576 | #微信 577 | #127.0.0.1 socwxsns.video.qq.com 578 | #127.0.0.1 vweixinthumb.tc.qq.com 579 | #127.0.0.1 forwardtmp.weixin.qq.com 580 | #127.0.0.1 forwardwx.weixin.qq.com 581 | #127.0.0.1 res.wx.qq.com.sched.legopic1.tdnsv6.com 582 | #魅族 583 | 127.0.0.1 uxip-res.meizu.com 584 | #22.06.24 585 | 127.0.0.1 open.e.kuaishou.cn 586 | 127.0.0.1 multi-az-ad.kuaishou.cn 587 | 588 | #22.06.28 589 | #WPS 590 | 127.0.0.1 update.wps.cn 591 | #百度网盘 592 | 127.0.0.1 update.pan.baidu.com 593 | #华为更新 594 | 127.0.0.1 update.dbankcdn.com 595 | 596 | #22.06.30 597 | #网易云 598 | 127.0.0.1 d1.music.126.net 599 | 127.0.0.1 admusicpic.music.126.net 600 | 127.0.0.1 iadmusicpic.music.126.net 601 | 127.0.0.1 iadmusicmatvideo.music.126.net 602 | 127.0.0.1 admusicmatvideo.music.126.net 603 | #127.0.0.1 interface.music.163.com 604 | 127.0.0.1 iadmusicmat.music.126.net 605 | #小米应用商店 606 | #127.0.0.1 api.ad.xiaomi.com 607 | #127.0.0.1 www.api.ad.intl.xiaomi.com 608 | #127.0.0.1 www.api.ad.xiaomi.com 609 | 610 | #22.07.02 611 | #OPPO 612 | 127.0.0.1 api.open.oppomobile.com 613 | 127.0.0.1 api.e.kuaishou.com 614 | 127.0.0.1 api2.e.kuaishou.com 615 | 127.0.0.1 open.e.kuaishou.com 616 | 127.0.0.1 ad.partner.gifshow.com 617 | 618 | #22.07.27 619 | 127.0.0.1 ad-static-xg.tagtic.cn 620 | #MIUI更新弹窗 621 | 127.0.0.1 api.developer.xiaomi.com 622 | #22.08.18 623 | #字节跳动 624 | 127.0.0.1 ads.zijieapi.com 625 | #127.0.0.1 ad.zijieapi.com 626 | #22.08.27 627 | #127.0.0.1 pgdt.gtimg.cn 628 | #127.0.0.1 tnc3-bjlgy.zijieapi.com 629 | 630 | #22.08.30 631 | #樱花动漫 632 | 127.0.0.1 jipinyouwu.com 633 | 127.0.0.1 stgowan.com 634 | 127.0.0.1 pc.stgowan.com 635 | 127.0.0.1 pc.jipinyouwu.com 636 | 637 | #22.09.22 638 | 127.0.0.1 adse.ximalaya.com 639 | 127.0.0.1 xdcs-collectorhera.ximalaya.com 640 | 127.0.0.1 gslbali.ximalaya.com 641 | 127.0.0.1 mktsound.cos.tx.xmcdn.com 642 | 127.0.0.1 adcos.adxmly.com 643 | 127.0.0.1 appmarket.api.gsxnj.cn 644 | #127.0.0.1 gsxnj.cn 645 | 646 | #22.09.28 647 | #番茄小说 648 | 127.0.0.1 tnc3-alisc1.bytedance.com 649 | 127.0.0.1 tnc3-alisc2.bytedance.com 650 | 127.0.0.1 tnc3-alisc1.zijieapi.com 651 | 127.0.0.1 tnc3-alisc2.zijieapi.com 652 | #127.0.0.1 tnc3-alisc1.snssdk.com 653 | 127.0.0.1 tnc3-alisc2.snssdk.com 654 | 127.0.0.1 tnc3-bjlgy.bytedance.com 655 | 127.0.0.1 tnc3-bjlgy.zijieapi.com 656 | 127.0.0.1 tnc3-bjlgy.snssdk.com 657 | 127.0.0.1 ad-monitor.sh9130.com 658 | 659 | #22.09.29 660 | #番茄小说 661 | #来自酷安大佬 662 | #已禁用,影响广告奖励 663 | #127.0.0.1 vcs.zijieapi.com 664 | 665 | #谷歌翻译 23.04.10 666 | #禁用,因为目前来说貌似已经废了 667 | #142.250.0.90 translate.googleapis.com 668 | #142.250.10.90 translate.googleapis.com 669 | #142.250.12.90 translate.googleapis.com 670 | #142.250.9.90 translate.googleapis.com 671 | 672 | 673 | #22.11.05 674 | #coolapk 675 | 127.0.0.1 gromore.pangolin-sdk-toutiao.com 676 | 677 | #22.11.20 678 | #soul 679 | 127.0.0.1 soul-ad.soulapp.cn 680 | 127.0.0.1 ad.soulapp.cn 681 | 682 | #22.11.23 683 | #有道翻译官 684 | 127.0.0.1 ad-sdk-config.youdao.com 685 | #127.0.0.1 openapi.youdao.com 686 | #127.0.0.1 oimagea2.ydstatic.com 687 | 688 | #23.01.24 689 | #360安全网址 690 | 127.0.0.1 p.s.360.cn 691 | 127.0.0.1 qurl.f.360.cn 692 | 127.0.0.1 sconf.f.360.cn 693 | 694 | #2023.05.10 695 | #Hubcloud 联盟 696 | 127.0.0.1 api-ad-extra.kajicam.com 697 | 127.0.0.1 ad-extra.kajicam.com 698 | 127.0.0.1 api.htp.ad-scope.com.cn 699 | 127.0.0.1 ad-scope.com.cn 700 | 127.0.0.1 v.adx.hubcloud.com.cn 701 | 127.0.0.1 adx.hubcloud.com 702 | 127.0.0.1 adx.hubcloud.com.cn 703 | 127.0.0.1 sdktmp.hubcloud.com.cn 704 | 127.0.0.1 res.hubcloud.com.cn 705 | 127.0.0.1 res1.hubcloud.com.cn 706 | 127.0.0.1 res2.hubcloud.com.cn 707 | 127.0.0.1 res3.hubcloud.com.cn 708 | 127.0.0.1 res4.hubcloud.com.cn 709 | 127.0.0.1 res5.hubcloud.com.cn 710 | 127.0.0.1 res9.hubcloud.com.cn 711 | 712 | #BeiZi 广告 713 | 127.0.0.1 api-htp.beizi.biz 714 | 127.0.0.1 sdk.beizi.biz 715 | 716 | # coolapk 717 | 127.0.0.1 api-access.pangolin-sdk-toutiao1.com.queniuiq.com 718 | 127.0.0.1 api-access.pangolin-sdk-toutiao1.com 719 | 127.0.0.1 api-access.pangolin-sdk-toutiao1-b.com 720 | 127.0.0.1 pangolin-sdk-toutiao1.com 721 | #127.0.0.1 mon.zijieapi.com 722 | #127.0.0.1 api.csjplatform.com 723 | 724 | #HUAWEI 725 | 127.0.0.1 lf6-sf-be-pack-sign.pglstatp-toutiao.com 726 | 127.0.0.1 direct.ad-core-lb-v3.lf.bytelb.net 727 | #127.0.0.1 adx-drcn.op.dbankcloud.cn 728 | 127.0.0.1 ads.weathercn.com 729 | #127.0.0.1 httpdns-browser.platform.dbankcloud.cn 730 | #127.0.0.1 ad-drcn.dt.dbankcloud.com 731 | 732 | #2023.08.18 733 | #127.0.0.1 open.kwaizt.com 734 | 127.0.0.1 adsfile.bssdlbig.kugou.com 735 | 127.0.0.1 api-adservices.apple.com 736 | 127.0.0.1 adukwai.com 737 | 127.0.0.1 hw-ot-ad.a.yximgs.com 738 | 127.0.0.1 open.kuaishouzt.com 739 | 740 | #蓝奏云 741 | #23.09.17 742 | #127.0.0.1 analytic.woozooo.com 743 | 744 | #小米ROM服务器下载加速 745 | #23.09.19 746 | 123.6.13.6 bigota.d.miui.com 747 | 123.6.13.6 hugeota.d.miui.com 748 | 23.202.34.138 bigota.d.miui.com 749 | 23.202.34.138 hugeota.d.miui.com 750 | 183.136.207.132 bigota.d.miui.com 751 | 183.136.207.132 hugeota.d.miui.com 752 | 110.43.121.249 bigota.d.miui.com 753 | 110.43.121.249 hugeota.d.miui.com 754 | 110.43.121.13 bigota.d.miui.com 755 | 110.43.121.13 hugeota.d.miui.com 756 | 47.74.196.250 bigota.d.miui.com 757 | 47.74.196.250 hugeota.d.miui.com 758 | 759 | 760 | 761 | #来自酷友 762 | #不确定后续是否会误杀 763 | #@coolapk [营销号666](http://www.coolapk.com/u/554004) 764 | 127.0.0.1 dsp-x.jd.com 765 | 127.0.0.1 dsp-x.jd.com.gslb.qianxun.com 766 | #@coolapk [GreatYYH](http://www.coolapk.com/u/3241828) 767 | #127.0.0.1 api-cn.store.heytapmobi.com 768 | 769 | 770 | #2023.12.10 771 | #QQ音乐开屏广告 772 | 127.0.0.1 adsmind.gdtimg.com 773 | #127.0.0.1 pgdt.gtimg.cn 774 | 127.0.0.1 tmeadcomm.y.qq.com 775 | 127.0.0.1 tmead.y.qq.com 776 | #中国联通营业厅 777 | 127.0.0.1 m1.ad.10010.com 778 | 127.0.0.1 m3.ad.10010.com 779 | 127.0.0.1 smartad.10010.com 780 | #车来了 781 | 127.0.0.1 api.hzsanjiaomao.com 782 | 127.0.0.1 adx.sogaha.cn 783 | #华为浏览器安全拦截 784 | 127.0.0.1 dnkeeper.platform.dbankcloud.cn 785 | #127.0.0.1 browsercfg-drcn.cloud.dbankcloud.cn 786 | 127.0.0.1 grs.dbankcloud.cn 787 | 127.0.0.1 metrics1-drcn.dt.dbankcloud.cn 788 | 127.0.0.1 dnkeeper.platform.dbankcloud.eu 789 | #127.0.0.1 browsercfg-drcn.cloud.dbankcloud.eu 790 | 127.0.0.1 grs.dbankcloud.eu 791 | 127.0.0.1 metrics1-drcn.dt.dbankcloud.eu 792 | 793 | #蓝奏云 794 | #127.0.0.1 kl.67it.com 795 | 796 | #蓝奏云 797 | 127.0.0.1 kl.67it.com 798 | 127.0.0.1 statics.woozooo.com 799 | 127.0.0.1 analytics.woozooo.com 800 | 127.0.0.1 analytic.woozooo.com 801 | 127.0.0.1 crbug.com 802 | 127.0.0.1 wer.qdwght.com 803 | 127.0.0.1 hm.woozooo.com 804 | 127.0.0.1 sanme2.taisantech.com 805 | 127.0.0.1 glores2.taisantech.com 806 | 807 | 808 | #123pan 809 | #127.0.0.1 ssp.1rtb.com 810 | 127.0.0.1 sdk.1rtb.net 811 | 127.0.0.1 zlsdk.1rtb.net 812 | 127.0.0.1 e-zlsdk.1rtb.net 813 | 127.0.0.1 mssdk.volces.com 814 | 127.0.0.1 sdk.mobads.adwangmai.com 815 | 127.0.0.1 mobads.adwangmai.com 816 | 817 | #豆瓣 818 | #2024.04.13 819 | 127.0.0.1 statics.adanxing.com 820 | 821 | #cloudflare.com 822 | #162.159.250.215 engage.cloudflareclient.com 823 | #162.159.253.214 engage.cloudflareclient.com 824 | #172.64.166.111 engage.cloudflareclient.com 825 | #162.159.253.214 dash.cloudflare.com 826 | #162.159.253.214 dash.cloudflare.com 827 | #172.64.166.111 dash.cloudflare.com 828 | 829 | #omofun 830 | 127.0.0.1 sdk.markmedia.com.cn 831 | 127.0.0.1 sdk.markmedia.com 832 | 127.0.0.1 tdsdk.cpatrk.net 833 | #127.0.0.1 e-zlsdk.1rtb.net 834 | 127.0.0.1 cloud.cpatrk.net 835 | 127.0.0.1 bjimp.voiceads.cn 836 | 127.0.0.1 ai.voiceads.cn 837 | 127.0.0.1 dc.sigmob.cn 838 | 127.0.0.1 sigmob.cn 839 | 127.0.0.1 sigmob.com 840 | 841 | #toponad 842 | 127.0.0.1 toponad.com 843 | 127.0.0.1 aa.toponad.com 844 | 127.0.0.1 app.toponad.com 845 | 127.0.0.1 dd.toponad.com 846 | 127.0.0.1 img.toponad.com 847 | 127.0.0.1 tt.toponad.com 848 | 127.0.0.1 mores.toponad.com 849 | 127.0.0.1 pkg.toponad.com 850 | 127.0.0.1 s1.pkg.toponad.com 851 | 127.0.0.1 s3.pkg.toponad.com 852 | 127.0.0.1 s5.pkg.toponad.com 853 | 127.0.0.1 s1.mores.toponad.com 854 | 127.0.0.1 s3.mores.toponad.com 855 | 127.0.0.1 s5.mores.toponad.com 856 | 857 | #anythinktech.com 858 | 127.0.0.1 adx-os.anythinktech.com 859 | 127.0.0.1 adx.anythinktech.com 860 | 127.0.0.1 adxtk.anythinktech.com 861 | 127.0.0.1 adx-bj-req.anythinktech.com 862 | 127.0.0.1 adx-bj.anythinktech.com 863 | 127.0.0.1 api.anythinktech.com 864 | 127.0.0.1 da.anythinktech.com 865 | 127.0.0.1 datk.anythinktech.com 866 | 127.0.0.1 tk-sg.anythinktech.com 867 | 127.0.0.1 tk.anythinktech.com 868 | 127.0.0.1 cn-da.anythinktech.com 869 | 127.0.0.1 cn-api.anythinktech.com 870 | 127.0.0.1 tk-da.anythinktech.com 871 | 127.0.0.1 tk-api.anythinktech.com 872 | 873 | #24.07.29 874 | #127.0.0.1 ad.partner.gifshow.com 875 | 127.0.0.1 mobads-pre-config.cdn.bcebos.com 876 | 127.0.0.1 ad-display.diwodiwo.xyz 877 | 127.0.0.1 ad-channel.diwodiwo.xyz 878 | 127.0.0.1 p1-jx.adukwai.com 879 | 127.0.0.1 p1-lm.adukwai.com 880 | 127.0.0.1 p2-jx.adukwai.com 881 | 127.0.0.1 p2-lm.adukwai.com 882 | 127.0.0.1 v1-lm.adukwai.com 883 | 127.0.0.1 v2-lm.adukwai.com 884 | 127.0.0.1 v4-lm.adukwai.com 885 | 886 | #24.09.25 887 | #快对 888 | 127.0.0.1 adx.zuoyebang.com 889 | 127.0.0.1 starc.adv.koznak.tv 890 | 127.0.0.1 c.kuaiduizuoye.com 891 | 127.0.0.1 p26-be-pack-sign.pglstatp-toutiao.com 892 | 127.0.0.1 p3-be-pack-sign.pglstatp-toutiao.com 893 | 127.0.0.1 apm-volcano.zuoyebang.com 894 | 127.0.0.1 gungnir.xiaojukeji.com 895 | 896 | #24.09.29 897 | #京东dns 898 | 127.0.0.1 dns.jd.com 899 | #快手dns 900 | 127.0.0.1 hdns.ksyun.com 901 | 127.0.0.1 apidns.kwd.inkuai.com 902 | 127.0.0.1 httpdns.kwd.inkuai.com 903 | 127.0.0.1 kuaishou.httpdns.pro 904 | #百度Dns 905 | 127.0.0.1 dns.iqiyi.com 906 | 127.0.0.1 dns.qiyipic.iqiyi.com 907 | 127.0.0.1 doh.iqiyi.com 908 | 127.0.0.1 doh.ptqy.gitv.tv 909 | 127.0.0.1 httpsdns.baidu.com 910 | 127.0.0.1 httpdns.baidu.com 911 | 127.0.0.1 httpdns.baidubce.com 912 | #网易Dns 913 | 127.0.0.1 httpdns-sdk.n.netease.com 914 | 127.0.0.1 httpdns.music.163.com 915 | #127.0.0.1 httpdns.n.netease.com 916 | 127.0.0.1 httpdns.netease.com 917 | 127.0.0.1 lofter.httpdns.c.163.com 918 | #127.0.0.1 music.httpdns.c.163.com 919 | #华为dns 920 | 127.0.0.1 httpdns.huaweicloud.com 921 | 127.0.0.1 httpdns.ocloud.heytapmobi.com 922 | 127.0.0.1 httpdns.ocloud.oppomobile.com 923 | 127.0.0.1 httpdns.platform.dbankcloud.cn 924 | 127.0.0.1 httpdns.platform.dbankcloud.com 925 | 127.0.0.1 httpdns-browser.platform.dbankcloud.cn 926 | #阿里dns 927 | 127.0.0.1 httpdns.alicdn.com 928 | #bilibili 哔哩哔哩 929 | 127.0.0.1 httpdns.bilivideo.com 930 | #讯飞dns 931 | 127.0.0.1 httpdns.volcengineapi.com 932 | 127.0.0.1 httpdns.yunxindns.com 933 | #作业帮dns 934 | 127.0.0.1 httpdns.zybang.com 935 | #小米 936 | 127.0.0.1 httpdns.browser.miui.com 937 | #OPPO 938 | #127.0.0.1 httpdns.push.oppomobile.com 939 | #127.0.0.1 api.dns.oppomobile.com 940 | #腾讯(微信) 941 | 127.0.0.1 httpdns.qq.com 942 | 127.0.0.1 httpdns.qqcdn.com 943 | 944 | #实用工具箱 945 | 127.0.0.1 birdgesdk.com 946 | 127.0.0.1 pitk.birdgesdk.com 947 | 127.0.0.1 aa.birdgesdk.com 948 | 127.0.0.1 bridgeoos.com 949 | 127.0.0.1 www.sygjx.com 950 | 951 | #something for nothing 952 | #127.0.0.1 black.qimo.ink 953 | 954 | #2024.11.07 955 | #囧次元 956 | 127.0.0.1 116.205.193.167 957 | 127.0.0.1 c.tobidad.cn 958 | 127.0.0.1 tobidad.cn 959 | 127.0.0.1 tobidad.com 960 | 127.0.0.1 tobidad.cn.com 961 | 127.0.0.1 c.etoolads.cn 962 | 127.0.0.1 etoolads.cn 963 | 127.0.0.1 etoolads.com 964 | 127.0.0.1 etoolads.cn.com 965 | #163网易邮箱 966 | 127.0.0.1 sv.adintl.cn 967 | 127.0.0.1 v.adintl.cn 968 | 127.0.0.1 sdkcfg.adintl.cn 969 | 127.0.0.1 oss.cdn.adintl.cn 970 | #OPPO 应用商店 主题 开屏广告 971 | #127.0.0.1 api-cn.store.heytapmobi.com 972 | #127.0.0.1 api-cn.theme.heytapmobi.com 973 | 974 | #2024.11.08 975 | 127.0.0.1 ad.track.66mobi.com 976 | 127.0.0.1 bj.ad.track.66mobi.com 977 | 127.0.0.1 volc.bj.ad.track.66mobi.com 978 | 127.0.0.1 bce.bj.ad.track.66mobi.com 979 | #很烦人…… 980 | 127.0.0.1 61.156.8.189 981 | 127.0.0.1 114.55.123.44 982 | 127.0.0.1 222.186.61.94 983 | 127.0.0.1 47.89.59.182 984 | 127.0.0.1 211.151.146.65 985 | 127.0.0.1 211.157.171.237 986 | 127.0.0.1 101.201.29.182 987 | 127.0.0.1 10.130.208.223 988 | 127.0.0.1 111.45.69.159 989 | 127.0.0.1 111.45.69.21 990 | 127.0.0.1 111.51.128.172 991 | 127.0.0.1 112.60.14.98 992 | 127.0.0.1 113.105.153.20 993 | 127.0.0.1 113.219.183.77 994 | 127.0.0.1 113.240.86.171 995 | 127.0.0.1 120.232.202.5 996 | 127.0.0.1 120.232.202.6 997 | 127.0.0.1 120.232.202.7 998 | 127.0.0.1 120.232.207.80 999 | 127.0.0.1 120.232.210.151 1000 | 127.0.0.1 120.232.210.153 1001 | 127.0.0.1 120.232.210.155 1002 | 127.0.0.1 120.238.119.113 1003 | 127.0.0.1 121.12.1.102 1004 | 127.0.0.1 121.12.1.95 1005 | 127.0.0.1 121.43.235.135 1006 | 127.0.0.1 122.14.229.147 1007 | 127.0.0.1 122.14.229.148 1008 | 127.0.0.1 122.14.229.149 1009 | 127.0.0.1 124.225.195.107 1010 | 127.0.0.1 14.152.75.59 1011 | 127.0.0.1 154.22.214.2 1012 | 127.0.0.1 183.240.223.132 1013 | 127.0.0.1 183.61.169.140 1014 | 127.0.0.1 183.61.169.142 1015 | 127.0.0.1 183.61.170.21 1016 | 127.0.0.1 220.243.190.6 1017 | 127.0.0.1 220.243.190.7 1018 | 127.0.0.1 220.243.190.8 1019 | 127.0.0.1 222.186.27.90 1020 | 127.0.0.1 23.231.151.252 1021 | 127.0.0.1 37.1.213.100 1022 | 127.0.0.1 39.96.184.178 1023 | 127.0.0.1 39.96.185.90 1024 | 127.0.0.1 5.61.55.143 1025 | 127.0.0.1 61.170.72.15 1026 | 1027 | #2024.11.09 1028 | # Snaptube 升级提示 1029 | 127.0.0.1 upgrade.thejeu.com 1030 | 127.0.0.1 online-config.thejeu.com 1031 | 127.0.0.1 config.ad-snaptube.app 1032 | 127.0.0.1 api.ad.snaptube.app 1033 | 127.0.0.1 sensors.snaptube.app 1034 | 1035 | #豆瓣 1036 | 127.0.0.1 ad.union.api 1037 | 127.0.0.1 lf3-sf-be-pack-sign.pglstatp-toutiao.com 1038 | 127.0.0.1 trkprod.upst86.com 1039 | 127.0.0.1 www.pangolin-dsp-toutiao.com 1040 | 127.0.0.1 pangolin-dsp-toutiao.com 1041 | 127.0.0.1 pangolin-dsp-toutiao-b.com 1042 | 127.0.0.1 pangolin-sdk-toutiao.com 1043 | #127.0.0.1 pangolin-sdk-toutiao1.com 1044 | 127.0.0.1 panplayable-toutiao-b.com 1045 | 127.0.0.1 panplayable-toutiao.com 1046 | 127.0.0.1 pglstatp-toutiao-b.com 1047 | 127.0.0.1 pglstatp-toutiao.com 1048 | 127.0.0.1 ug.pangolin-dsp-toutiao.com 1049 | 127.0.0.1 log.feedsads.cn 1050 | 127.0.0.1 feedsads.cn 1051 | 1052 | #2024.11.11 1053 | 127.0.0.1 afraud-cse.avlyun.com 1054 | 127.0.0.1 miav-cse.avlyun.com 1055 | 127.0.0.1 miui-fxcse.avlyun.com 1056 | 127.0.0.1 updatesdk.avlyun.com 1057 | #127.0.0.1 net.daraz.com 1058 | #127.0.0.1 net.daraz.com.bd 1059 | 127.0.0.1 ads.pointroll.com 1060 | 127.0.0.1 ev.ads.pointroll.com 1061 | 127.0.0.1 admaster.com.cn 1062 | 127.0.0.1 adx.admaster.com.cn 1063 | 127.0.0.1 fun.adx.admaster.com.cn 1064 | 127.0.0.1 fun-adx.admaster.com.cn 1065 | 127.0.0.1 clickc.admaster.com.cn 1066 | 127.0.0.1 cm.admaster.com.cn 1067 | 127.0.0.1 iclick.cm.admaster.com.cn 1068 | 127.0.0.1 ipinyou.cm.admaster.com.cn 1069 | 127.0.0.1 sohutv.cm.admaster.com.cn 1070 | 127.0.0.1 smt.admaster.com.cn 1071 | 127.0.0.1 v.admaster.com.cn 1072 | 127.0.0.1 vqq.admaster.com.cn 1073 | 127.0.0.1 yoyi-cm.admaster.com.cn 1074 | 127.0.0.1 reachmax-cm.admaster.com.cn 1075 | 1076 | #2024.11.15 1077 | 127.0.0.1 walle.bayescom.com 1078 | 127.0.0.1 techain.baidu.com 1079 | 127.0.0.1 adk2.co 1080 | 127.0.0.1 adk2.com 1081 | 127.0.0.1 adk2x.com 1082 | 127.0.0.1 adplexmedia.adk2.co 1083 | 127.0.0.1 adplexmedia.adk2x.com 1084 | #2024.11.19 1085 | 127.0.0.1 adverpub.com 1086 | 127.0.0.1 ad.adsrvr.cn 1087 | 127.0.0.1 ad.adsrvr.com 1088 | 127.0.0.1 ad.adsrvr.cn.com 1089 | 127.0.0.1 v.adsrvr.cn 1090 | 127.0.0.1 cn1-bid.adsrvr.cn 1091 | 127.0.0.1 cn2-bid.adsrvr.cn 1092 | 127.0.0.1 cn3-bid.adsrvr.cn 1093 | 127.0.0.1 cn9-bid.adsrvr.cn 1094 | 127.0.0.1 p2-lm.adkwai.com 1095 | 127.0.0.1 p3-lm.adkwai.com 1096 | 127.0.0.1 p66-ad.adkwai.com 1097 | 127.0.0.1 p33-ad.adkwai.com 1098 | #127.0.0.1 bjimp.voiceads.cn 1099 | 1100 | #2024.11.22 1101 | #迅雷浏览器安全浏览 1102 | 127.0.0.1 x-api-shoulei.xunlei.com 1103 | #漫蛙 1104 | 127.0.0.1 ac1.dcloud.net.cn 1105 | 127.0.0.1 ac2.dcloud.net.cn 1106 | 127.0.0.1 ac1.cloud.net.cn 1107 | #百度贴吧 1108 | 127.0.0.1 miaowu.baidu.com 1109 | 127.0.0.1 miao.baidu.com 1110 | #127.0.0.1 mike.baidu.com 1111 | #127.0.0.1 miee.baidu.com 1112 | #127.0.0.1 wjz-cdn.baidu.com 1113 | 127.0.0.1 ym.wejianzhan.com 1114 | 127.0.0.1 afd.baidu.com 1115 | 127.0.0.1 baichuan.baidu.com 1116 | #2024.11.30 1117 | #淘宝 1118 | 127.0.0.1 ope.tanx.com 1119 | 127.0.0.1 api.qttunion.com 1120 | 127.0.0.1 api.touch-moblie.com 1121 | 127.0.0.1 opehs.tanx.com 1122 | 127.0.0.1 ad.wanchuweilai.com 1123 | 127.0.0.1 203.107.1.35 1124 | 127.0.0.1 janapi.jd.com 1125 | 127.0.0.1 fapi.xdrun.com 1126 | 127.0.0.1 sdk-config.tanx.com 1127 | #ssp 1128 | 127.0.0.1 ssp.1rtb.com 1129 | 127.0.0.1 ssp.tanx.com 1130 | 127.0.0.1 ssp-sdk-config.uc.cn 1131 | 127.0.0.1 ssp.vivo.com.cn 1132 | 127.0.0.1 monitor.ssp.admobile.top 1133 | #aiclk 1134 | 127.0.0.1 ad-sdk.aiclk.com 1135 | 127.0.0.1 api.aiclk.com 1136 | 127.0.0.1 sdk-ab-config.aiclk.com 1137 | 127.0.0.1 sdk-globalconfig.aiclk.com 1138 | 127.0.0.1 cdn.aiclk.com 1139 | 127.0.0.1 cfg-cdn.aiclk.com 1140 | 127.0.0.1 rcv.aiclk.com 1141 | 1142 | #2024.12.10 1143 | 127.0.0.1 d16-ad.kwai.net 1144 | 127.0.0.1 default.cn.sz.wagbridge.ad.alibabacorp.com 1145 | 127.0.0.1 default.cn.wagbridge.ad.alibabacorp.com 1146 | 127.0.0.1 yk-ssp-ad.cp12.wasu.tv 1147 | 127.0.0.1 yk-ssp-ad.cp31.ott.cibntv.net 1148 | 127.0.0.1 xmadsdk.cos.tx.xmcdn.com 1149 | 127.0.0.1 www.qqads.com 1150 | 127.0.0.1 websgsadvert.sanguosha.com 1151 | 127.0.0.1 v16-ad.kwai.net 1152 | 127.0.0.1 voiceads.cn 1153 | 127.0.0.1 upgrade-adservice.hismarttv.com 1154 | 127.0.0.1 mad.ireader.com 1155 | 127.0.0.1 mads.meituan.com 1156 | 127.0.0.1 market-ad.oss-accelerate.aliyuncs.com 1157 | 127.0.0.1 market-ad.oss-cn-shenzhen.aliyuncs.com 1158 | 127.0.0.1 iadsdk.qtlcdn.com 1159 | 127.0.0.1 imp.ads.rgyun.com 1160 | 127.0.0.1 jk.c.sdk.kwad.com 1161 | 127.0.0.1 jp.ad.gameley.com 1162 | 127.0.0.1 kgipadstat.kugou.com 1163 | 127.0.0.1 kgipadstatbak.kugou.com 1164 | 127.0.0.1 kuaishouad.cn 1165 | 127.0.0.1 advert-prod.hyrz.qq.com 1166 | 127.0.0.1 advert.swiftpass.cn 1167 | 127.0.0.1 advert.tadu.com 1168 | 127.0.0.1 advertisercommunity.com 1169 | 127.0.0.1 advertiserscommunity.com 1170 | 127.0.0.1 advimage.bolink.club 1171 | 127.0.0.1 adx-cn.ads.vungle.com 1172 | 127.0.0.1 adx-core.youku.com 1173 | 127.0.0.1 adx-data.yfanads.com 1174 | 127.0.0.1 adx-os-req.anythinktech.com 1175 | 127.0.0.1 adx.halomobi.com 1176 | 127.0.0.1 adx.op.cp18.ott.cibntv.net 1177 | 127.0.0.1 adxstatic.vivo.com.cn 1178 | 127.0.0.1 ae.iads.unity3d.com 1179 | 127.0.0.1 ai.advertisement.alibabacorp.sm.cn 1180 | 127.0.0.1 androiddownload.damai.cn 1181 | 127.0.0.1 api.ads66.com 1182 | 127.0.0.1 api.adserver.jvmai.com 1183 | #127.0.0.1 ads-drcn.platform.hihonorcloud.com 1184 | 127.0.0.1 ads-img-al.xhscdn.com 1185 | 127.0.0.1 ads-lb.serving-sys.cn 1186 | 127.0.0.1 ads-shopping.shouqianba.com 1187 | 127.0.0.1 ads.api.fakeloc.cc 1188 | 127.0.0.1 ads.api.lerist.cc 1189 | 127.0.0.1 ads.bjlxin.cn 1190 | 127.0.0.1 ads.chinaums.com 1191 | 127.0.0.1 ads.chuanmeixing.com 1192 | 127.0.0.1 ads.cup.com.cn 1193 | 127.0.0.1 ads.game.iqiyi.com 1194 | 127.0.0.1 ads.games.laohu.com 1195 | 127.0.0.1 ads.heytapmobile.com 1196 | 127.0.0.1 ads.huawei.com 1197 | 127.0.0.1 ads.ishansong.com 1198 | 127.0.0.1 ads.lejuliang.cn 1199 | 127.0.0.1 ads.lejuliang.com 1200 | 127.0.0.1 ads.lingyuexiu.cn 1201 | 127.0.0.1 ads.serving-sys.cn 1202 | 127.0.0.1 ads.ubestkid.com 1203 | 127.0.0.1 ads.uutest.cn 1204 | 127.0.0.1 ads.vungle.com 1205 | 127.0.0.1 ads.ysepay.com 1206 | 127.0.0.1 ads.zhinengxiyifang.cn 1207 | 127.0.0.1 ads3-normal-lf.zijieapi.com.skyworth 1208 | 127.0.0.1 ads360.cn 1209 | 127.0.0.1 ads5-normal-lf.zijieapi.com.skyworth 1210 | 127.0.0.1 ads5-normal-lq.zijieapi.com.c.dsa.cdnbuild.net 1211 | 127.0.0.1 adsbdfs.heytapimage.com 1212 | 127.0.0.1 adsdk.idmzj.com 1213 | 127.0.0.1 adsdk.state.duoku.com 1214 | 127.0.0.1 adsdk.whjzjx.cn 1215 | 127.0.0.1 adsdkapi.dxys.pro 1216 | 127.0.0.1 adsense.7723.com 1217 | 127.0.0.1 adsense.com 1218 | 127.0.0.1 adsenseformobileapps.com 1219 | 127.0.0.1 adserv.ontek.com.tr 1220 | 127.0.0.1 adserver.html.it 1221 | 127.0.0.1 adservice.aiyouaiyou.cn 1222 | 127.0.0.1 adservice.kugou.com 1223 | 127.0.0.1 adserviceretry.kglink.cn 1224 | 127.0.0.1 adserving-oss.bangdao-tech.com 1225 | 127.0.0.1 adsfile20.bssdlbig.kugou.com 1226 | 127.0.0.1 adsfs.heytapimage.com 1227 | 127.0.0.1 adskp.org 1228 | 127.0.0.1 adsmartgetqtt.guangtuikeji.com 1229 | 127.0.0.1 adsmind.gdtimg.com.svideolego-dk.sched.dcloudstc.com 1230 | 127.0.0.1 adsmind.tc.qq.com 1231 | 127.0.0.1 adstage-analytics.herokuapp.com 1232 | 127.0.0.1 adstatic.zhihu.com 1233 | 127.0.0.1 adstracking.shuwenkeji.cn 1234 | #联通 1235 | 127.0.0.1 m1.ad.10010.com.w.cdngslb.com 1236 | #vivo和OPPO 1237 | 127.0.0.1 uapi-ads.vivo.com.cn 1238 | 127.0.0.1 detail-adsapi.vivo.com.cn 1239 | 127.0.0.1 ssp-adx.ads.heytapmobi.com 1240 | 127.0.0.1 ssp-monitor.adstarcharm.com 1241 | 127.0.0.1 st-ads-jssdk.vivo.com.cn 1242 | 127.0.0.1 st-adsgame.vivo.com.cn 1243 | 127.0.0.1 sms.ads.heytapmobi.com 1244 | #百度 1245 | 127.0.0.1 miniapp-ad.cdn.bcebos.com 1246 | 127.0.0.1 mkt-advertisement.tuhu.cn 1247 | 127.0.0.1 match.adsrvr.cn 1248 | 127.0.0.1 mbads.paas.cmbchina.com 1249 | 127.0.0.1 leads.baidu.com 1250 | 127.0.0.1 leads.oceanengine.com 1251 | #番茄小说 1252 | 127.0.0.1 frontier100-toutiao-hl.fqnovel.com 1253 | 127.0.0.1 frontier100-toutiao-lf.fqnovel.com 1254 | 1255 | #2024.12.16 1256 | 127.0.0.1 ad.doubleclick.net 1257 | #讯飞 1258 | 127.0.0.1 sdk.voiceads.cn 1259 | 127.0.0.1 smartsails.voiceads.cn 1260 | 127.0.0.1 smartvideo-test.voiceads.cn 1261 | 127.0.0.1 smartvideo.voiceads.cn 1262 | 127.0.0.1 smartopen.jd.com 1263 | #极光 1264 | 127.0.0.1 sdkapi-smartop.jiguang.cn 1265 | 127.0.0.1 smartop-sdkapi-ipv6.jiguang.cn 1266 | 127.0.0.1 s.adxvip.com 1267 | 127.0.0.1 s.domob.cn 1268 | #127.0.0.1 sdkapi.sms.mob.com 1269 | 127.0.0.1 s.gdt.qq.com 1270 | 127.0.0.1 sdk.adx.adwangmai.com 1271 | #个性推送 1272 | 127.0.0.1 sdk1api.getui.com 1273 | 127.0.0.1 sdk2api.getui.com 1274 | 127.0.0.1 sdk3api.getui.com 1275 | #网易邮箱 1276 | #127.0.0.1 e-p4p.163.com 1277 | 127.0.0.1 integralwall.baidu.com 1278 | 1279 | #2024.12.17 1280 | #蓝奏云 1281 | 127.0.0.1 static.jcvba.com 1282 | 127.0.0.1 aizhantj.com 1283 | 127.0.0.1 dl.btii.cn 1284 | 1285 | #埋堆堆 开屏 1286 | 127.0.0.1 sdk1xyajs.data.kuiniuca.com 1287 | #dns 天目? 1288 | 127.0.0.1 dns.titannetwork.cn 1289 | 127.0.0.1 dns1.titannetwork.cn 1290 | 127.0.0.1 dns2.titannetwork.cn 1291 | 127.0.0.1 sdk.tianmu.mobi 1292 | #弹窗 1293 | #127.0.0.1 sfo.mddcloud.com.cn 1294 | #埋堆堆GIthub@[samsunggithub](https://github.com/samsunggithub)反馈 1295 | 127.0.0.1 sdk-data.ubixioe.com 1296 | 127.0.0.1 e-u1.ubixioe.com 1297 | 127.0.0.1 tower.ubixioe.com 1298 | 127.0.0.1 tx-cfg-u1.ubixioe.com 1299 | 127.0.0.1 tx-data-u1.ubixioe.com 1300 | 1301 | #2024.12.18 1302 | #bridgeoos.com 1303 | 127.0.0.1 adx-os.bridgeoos.com 1304 | 127.0.0.1 adx-os.toponadss.com 1305 | 127.0.0.1 adx-sg-req.bridgeoos.com 1306 | 127.0.0.1 adx.adtaipo.com 1307 | 127.0.0.1 adx.tuia.cn 1308 | 127.0.0.1 adx.yixin.im 1309 | 127.0.0.1 adxapi.readgps.com 1310 | 127.0.0.1 api-c.dutils.com 1311 | 127.0.0.1 api-d.dutils.com 1312 | 127.0.0.1 api-p0.yksdks.com 1313 | 127.0.0.1 api.bridgeoos.com 1314 | 127.0.0.1 api.mobrtb.com 1315 | 127.0.0.1 api.mosspf.com 1316 | 127.0.0.1 api.toponadss.com 1317 | 127.0.0.1 da.bridgeoos.com 1318 | 127.0.0.1 tk.bridgeoos.com 1319 | 127.0.0.1 tk.toponadss.com 1320 | 127.0.0.1 ztoken.uyunad.com 1321 | 1322 | #2024.12.19 1323 | #华为和荣耀安装检测和广告 1324 | 127.0.0.1 ad-drcn.dt.dbankcloud.cn 1325 | 127.0.0.1 ad-drcn.dt.dbankcloud.com 1326 | 127.0.0.1 ad-drcn.dt.hihonorcloud.cn 1327 | 127.0.0.1 ad-drcn.dt.hihonorcloud.com 1328 | 127.0.0.1 ads-drcn.platform.dbankcloud.cn 1329 | 127.0.0.1 ads-drcn.platform.dbankcloud.com 1330 | 127.0.0.1 ads-drcn.platform.hihonorcloud.cn 1331 | 127.0.0.1 ads-drcn.platform.hihonorcloud.com 1332 | 127.0.0.1 adx-drcn.op.dbankcloud.cn 1333 | 127.0.0.1 adx-drcn.op.dbankcloud.com 1334 | 127.0.0.1 adx-drcn.op.hihonorcloud.cn 1335 | 127.0.0.1 adx-drcn.op.hihonorcloud.com 1336 | 127.0.0.1 metrics-ad-drcn.dt.dbankcloud.cn 1337 | 127.0.0.1 metrics-ad-drcn.dt.dbankcloud.com 1338 | 127.0.0.1 metrics-ad-drcn.dt.hihonorcloud.cn 1339 | 127.0.0.1 metrics-ad-drcn.dt.hihonorcloud.com 1340 | #安装检测 1341 | 127.0.0.1 installer-drcn.hispace.dbankcloud.cn 1342 | 127.0.0.1 installer-drcn.hispace.dbankcloud.com 1343 | 127.0.0.1 installer-drcn.hispace.dbankcloud.eu 1344 | 127.0.0.1 installer-drcn.hispace.hihonorcloud.cn 1345 | 127.0.0.1 installer-drcn.hispace.hihonorcloud.com 1346 | 127.0.0.1 installer-drcn.hispace.hihonorcloud.eu 1347 | #浏览器 1348 | 127.0.0.1 browsercfg-drcn.cloud.dbankcloud.cn 1349 | 127.0.0.1 browsercfg-drcn.cloud.dbankcloud.com 1350 | 127.0.0.1 browsercfg-drcn.cloud.dbankcloud.eu 1351 | 127.0.0.1 browsercfg-drcn.cloud.hihonorcloud.cn 1352 | 127.0.0.1 browsercfg-drcn.cloud.hihonorcloud.com 1353 | 127.0.0.1 browsercfg-drcn.cloud.hihonorcloud.eu 1354 | 1355 | #2025.01.03 1356 | #咕咚运动 1357 | 127.0.0.1 imageads.codoon.com 1358 | 127.0.0.1 8le8le.com 1359 | #2025.03.01 1360 | 127.0.0.1 ck.ads.heytapmobi.com 1361 | 127.0.0.1 ck.ads.oppomobile.com 1362 | 127.0.0.1 ck.jads.co 1363 | 127.0.0.1 ck.juicyads.com 1364 | 127.0.0.1 datk.toponadss.com 1365 | 127.0.0.1 gcdsdk.appsflyer.com 1366 | 127.0.0.1 gcdsdk.appsflyersdk.com 1367 | 127.0.0.1 s.ads.smartadserver.com 1368 | 127.0.0.1 s.ads.sohu.com 1369 | 127.0.0.1 s.adx.opera.com 1370 | 127.0.0.1 s.moatads.com 1371 | 127.0.0.1 safeframe.googlesyndication.com 1372 | 127.0.0.1 ssdk.adkmob.com 1373 | 127.0.0.1 titanads1.com 1374 | 127.0.0.1 titanads2.com 1375 | 127.0.0.1 titanads3.com 1376 | 127.0.0.1 titanads4.com 1377 | 127.0.0.1 titanads5.com 1378 | 127.0.0.1 tk.toponadss.com 1379 | 127.0.0.1 tk2-usa.advlion.com 1380 | 127.0.0.1 tk2.advlion.com 1381 | 127.0.0.1 tkads.millemedia.de 1382 | 127.0.0.1 tm.ads.sportradar.com 1383 | 127.0.0.1 tmads.xyz 1384 | 127.0.0.1 tmatch.adsame.com 1385 | 127.0.0.1 tn.ads.justpremium.com 1386 | 1387 | #汽水音乐 1388 | #127.0.0.1 frontier100-normal.zijieapi.com 1389 | #127.0.0.1 saveu.zijieapi.com 1390 | 127.0.0.1 vr.gdt.qq.com 1391 | 127.0.0.1 mssdk.bytedance.com 1392 | 1393 | #openinstall(可能有误杀) 1394 | 127.0.0.1 web.cdn.openinstall.io 1395 | 1396 | #华为天气 1397 | #匹配DNS 1398 | 127.0.0.1 op.hicloud.com 1399 | 127.0.0.1 op.hihonorcloud.com 1400 | #开屏 1401 | 127.0.0.1 acd.op.hicloud.com 1402 | 127.0.0.1 acd.op.hihonorcloud.com 1403 | #信息收集 1404 | 127.0.0.1 events.op.hicloud.com 1405 | 127.0.0.1 events.op.hihonorcloud.com 1406 | #疑似SDK 1407 | 127.0.0.1 sdkserver-drcn.op.dbankcloud.cn 1408 | 127.0.0.1 sdkserver-drcn.op.hihonorcloud.com 1409 | 127.0.0.1 adx-dra-op-dbankcloud-com-dra.appacc.dbankedge.cn 1410 | 127.0.0.1 adx-dra-op-dbankcloud-com-dra.edge.dbankedge.cn 1411 | 127.0.0.1 adx-dra-op-dbankcloud-com-dra.region.dbankedge.cn 1412 | 127.0.0.1 adx-dra.op.dbankcloud.com 1413 | 127.0.0.1 adx-dra.op.hicloud.com 1414 | 127.0.0.1 adx-dra.op.hihonorcloud.com 1415 | 127.0.0.1 adx-dre.op.dbankcloud.com 1416 | 127.0.0.1 adx-dre.op.hicloud.com 1417 | 127.0.0.1 adx-dre.op.hihonorcloud.com 1418 | 127.0.0.1 adx-drru.op.dbankcloud.ru 1419 | #上传啥的不知道,拦截无影响,可能后续误杀。 1420 | 127.0.0.1 upfile-drcn.platform.hicloud.com 1421 | 127.0.0.1 upfile-drcn.platform.hihonorcloud.com 1422 | 1423 | #2025.04.22 1424 | #腾讯视频 1425 | 127.0.0.1 vv6.video.qq.com 1426 | 127.0.0.1 lf-ad-ies.bytecdn.cn 1427 | 127.0.0.1 ad.jia.360.cn 1428 | 127.0.0.1 ad.iot.360.cn 1429 | #soul 1430 | 127.0.0.1 ad-h5-station-cdn.soulapp.cn 1431 | 127.0.0.1 ad-h5-cdn.soulapp.cn 1432 | 127.0.0.1 ad-r.soulapp.cn 1433 | 127.0.0.1 121.196.197.147 1434 | 127.0.0.1 120.27.235.201 1435 | 127.0.0.1 47.243.147.125 1436 | 127.0.0.1 47.110.187.87 1437 | 127.0.0.1 47.56.131.76 1438 | 127.0.0.1 47.99.42.29 1439 | 127.0.0.1 47.97.215.55 1440 | #something 1441 | 127.0.0.1 apiv4-iyes.youku.com 1442 | 127.0.0.1 tysdk.95516.com 1443 | 127.0.0.1 m-vali.cp31.ott.cibntv.net 1444 | 127.0.0.1 vali-g1.cp31.ott.cibntv.net 1445 | 127.0.0.1 vali-ugc.cp31.ott.cibntv.net 1446 | 127.0.0.1 splashimgretrybssdl.cloud.kugou.com 1447 | #未知厂商,先拦了再说 1448 | #uyunad.com 1449 | 127.0.0.1 aaid.uyunad.com 1450 | 127.0.0.1 yumao.puata.info 1451 | 127.0.0.1 ztoken.uyunad.com 1452 | #汽车之家 1453 | 127.0.0.1 adproxy.autohome.com.cn 1454 | 127.0.0.1 tosv.boe.byted.org 1455 | 127.0.0.1 tosv.byted.org 1456 | 1457 | 1458 | 1459 | 1460 | 1461 | 1462 | -------------------------------------------------------------------------------- /configure/魅族.conf: -------------------------------------------------------------------------------- 1 | 127.0.0.1 api-flow.flyme.cn 2 | 127.0.0.1 bro.flyme.cn 3 | 127.0.0.1 es-res.flyme.cn 4 | 127.0.0.1 madx.flyme.cn 5 | 127.0.0.1 ssp-res.flyme.cn 6 | 127.0.0.1 t-e.flyme.cn 7 | 127.0.0.1 t-flow.flyme.cn 8 | 127.0.0.1 aider-res.meizu.com 9 | 127.0.0.1 api-flow.meizu.com 10 | 127.0.0.1 api-push.meizu.com 11 | 127.0.0.1 cal.meizu.com 12 | 127.0.0.1 ebook-res.meizu.com 13 | 127.0.0.1 ebook.res.meizu.com 14 | 127.0.0.1 game-res.meizu.com 15 | 127.0.0.1 game.res.meizu.com 16 | 127.0.0.1 infocenter.meizu.com 17 | 127.0.0.1 open-iflow.meizu.com 18 | 127.0.0.1 openapi-news.meizu.com 19 | 127.0.0.1 push.res.meizu.com 20 | 127.0.0.1 reader.meizu.com 21 | 127.0.0.1 reader.res.meizu.com 22 | 127.0.0.1 safe.res.meizu.com 23 | 127.0.0.1 tongji-res1.meizu.com 24 | 127.0.0.1 tongji.meizu.com 25 | 127.0.0.1 umid.orion.meizu.com 26 | 127.0.0.1 upush.res.meizu.com 27 | 127.0.0.1 uxip.meizu.com 28 | 127.0.0.1 mz-api.smzdm.com 29 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 去广告(10007) 6 | 7 | 8 | 40 | 41 | 42 | 43 |
44 |

去广告自动更新

45 |

如果能用Github链接就用,用不了就选另一个。

46 |
47 | 48 | 49 |
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
83 | 84 |
85 |

Master 分支

86 |

将网页定向到 127.0.0.1 ,比较稳定。

87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 |
类型分支GithubGithub加速订阅链接GitcodeGITlab
完整版Master
保留广告奖励Master
Adblock规则Master
125 |
126 | 127 |
128 |

Feature 分支

129 |

130 | 将替换成adguard(94.140.14.33)的 131 |
132 | 企图规避一些问题,例如反复请求引起的耗电。 133 |
134 | Adaway 请在Adaway中选择重定向(Apply redirected hosts) 135 |

136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 |
类型分支GithubGithub加速订阅链接GitcodeGITlab
完整版Feature
保留广告奖励Feature
167 |
168 | 169 |
170 |

Feature1 分支

171 |

172 | 将替换成cloudfire(1.1.1.1)的 173 |
174 | 企图规避一些问题,例如反复请求引起的耗电。 175 |
176 | Adaway 请在Adaway中选择重定向(Apply redirected hosts) 177 |

178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 |
类型分支GithubGithub加速订阅链接GitcodeGITlab
完整版Feature1
保留广告奖励Feature1
209 |
210 | 211 |
212 |

PC 分支 仅做测试

213 |

214 | 将127.0.0.1替换成adguard的94.140.14.33 215 |
216 | 企图规避一些问题,例如反复请求引起的耗电。 217 |
218 | 您可以选择 SwitchHosts 对hosts进行管理。 219 |
220 | SwitchHosts 下载链接 221 |

222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 |
类型分支GithubGithub加速订阅链接GitcodeGITlab
完整版Pc_for_test
244 |
245 | 246 |
247 |

248 |

249 | 252 | 253 | 捐赠地址 254 | 255 | 256 |

257 |

258 | 引用和致谢 261 |

262 |
263 | 点击查看Hosts引用链接 感谢各位大佬❤ ! 264 | 290 |
291 |

292 |
293 | 294 | 295 | 586 | 587 | -------------------------------------------------------------------------------- /update_README.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | function update_readme_master(){ 4 | if test -f `pwd`/README.md ;then 5 | 6 | test -f `pwd`/reward && count_reward="$(cat `pwd`/reward 2>/dev/null | sed '/^#/d;/^[[:space:]]*$/d' | wc -l)" || count_reward="未知" 7 | test -f `pwd`/all && count_all="$(cat `pwd`/all 2>/dev/null | sed '/^#/d;/^[[:space:]]*$/d' | wc -l)" || count_all="未知" 8 | 9 | cat << key > `pwd`/README.md 10 | ## 去广告订阅自动更新 11 | ## [English](./README_en.md) 12 | 13 | ## 统计 (`date +'%F %T'`) 14 | \`\`\` 15 | 完整版累积拦截域名: ${count_all} 16 | 保留广告奖励累积拦截域名: ${count_reward} 17 | \`\`\` 18 | ### 访问量 : ![visitors](http://006.freecounters.co.uk/count-133.pl?count=qe1milbo7p68gg219fmj&type=links&prog=unique) 19 | 20 | ## 订阅 21 | ### 国内请用 **镜像链接** 22 | 23 | | **名称** | **链接** | **镜像链接** | **Github订阅加速链接** | 24 | | :-- | :-- | :-- | :-- | 25 | | **完整版** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/all) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/all) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/all) | 26 | | **保留广告奖励** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/reward) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/reward) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/reward) | 27 | | **Adblock规则** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/adb.txt) | [Gitcode镜像](https://gitcode.net/weixin_45617236/10007_auto/-/raw/master/adb.txt) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/adb.txt) | 28 | | **Adaway白名单** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/Adaway_white_list.prop) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/Adaway_white_list.prop) | 29 | | **Adclose规则订阅** | [订阅链接](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/10007.rule) | [加速链接](https://raw.gitmirror.com/lingeringsound/10007_auto/master/10007.rule) | 30 | 31 | 32 | 33 | ## **[捐赠地址](https://github.com/lingeringsound/10007)** 34 | 35 | key 36 | 37 | cat << key > `pwd`/README_en.md 38 | ## REmove Ads Host 39 | ## [中文](./README.md) 40 | 41 | ## count 42 | \`\`\` 43 | all: ${count_all} 44 | reward: ${count_reward} 45 | \`\`\` 46 | ### ![visitors](https://visitor-badge.glitch.me/badge?page_id=lingeringsound.10007&left_color=green&right_color=red) 47 | 48 | | **name** | **links** | 49 | | :-- | :-- | 50 | | **all** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/all) | 51 | | **reward** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/reward) | 52 | | **Adblock** | [Subscription link](https://raw.githubusercontent.com/lingeringsound/10007_auto/master/adb.txt) | 53 | 54 | ## **[Donate](https://github.com/lingeringsound/10007)** 55 | key 56 | fi 57 | } 58 | 59 | function echo_thank(){ 60 | cat << "key" >> `pwd`/README.md 61 | 62 | ## 引用和致谢 63 | | **Hosts引用链接** | 感谢各位大佬 | 64 | | :-- | :-- | 65 | | [大圣净化](https://github.com/jdlingyu/ad-wars) | ❤感谢!❤ | 66 | | [yhost](https://github.com/VeleSila/yhosts) | ❤感谢!❤ | 67 | | [Steven Black](https://github.com/StevenBlack/hosts) | ❤感谢!❤ | 68 | | [oisd](https://oisd.nl/howto) | ❤感谢!❤ | 69 | | [neodevhost](https://raw.githubusercontent.com/neodevpro/neodevhost/master/host) | ❤感谢!❤ | 70 | | [1024](https://github.com/Goooler/1024_hosts) | ❤感谢!❤ | 71 | | [adhost](https://github.com/E7KMbb/AD-hosts) | ❤感谢!❤ | 72 | | [hblock](https://hblock.molinero.dev/hosts) | ❤感谢!❤ | 73 | | [1Host](https://o0.pages.dev/Lite/hosts.txt) | ❤感谢!❤ | 74 | 75 | key 76 | cat << "key" >> `pwd`/README_en.md 77 | 78 | ## 引用和致谢 79 | | **Hosts引用链接** | 感谢各位大佬 | 80 | | :-- | :-- | 81 | | [大圣净化](https://github.com/jdlingyu/ad-wars) | ❤感谢!❤ | 82 | | [yhost](https://github.com/VeleSila/yhosts) | ❤感谢!❤ | 83 | | [Steven Black](https://github.com/StevenBlack/hosts) | ❤感谢!❤ | 84 | | [oisd](https://oisd.nl/howto) | ❤感谢!❤ | 85 | | [1024](https://github.com/Goooler/1024_hosts) | ❤感谢!❤ | 86 | | [adhost](https://github.com/E7KMbb/AD-hosts) | ❤感谢!❤ | 87 | | [hlock](https://hblock.molinero.dev/hosts) | ❤感谢!❤ | 88 | | [1Host](https://o0.pages.dev/Lite/hosts.txt) | ❤感谢!❤ | 89 | 90 | key 91 | } 92 | echo `pwd` 93 | update_readme_master 94 | #update_readme_Feature 95 | #update_readme_developer 96 | echo_thank 97 | -------------------------------------------------------------------------------- /update_action.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export PATH="`pwd`:${PATH}" 3 | 4 | function setup_environment(){ 5 | mkdir -p `pwd`/result 6 | mkdir -p `pwd`/configure 7 | dos2unix `pwd`/* >/dev/null 2>&1 8 | dos2unix `pwd`/*/* >/dev/null 2>&1 9 | } 10 | 11 | 12 | function Do_detect_hosts(){ 13 | local file="`pwd`/result/test.conf" 14 | 15 | test -f "${file}" && rm -rf "${file}" 16 | 17 | #预测广告厂商重复的hosts 18 | local number1=0 19 | local number2=31 20 | for i in $(seq $number1 $number2) 21 | do 22 | #127.0.0.1 img$i.360buyimg.com 23 | #127.0.0.1 lf$i-short.bytegoofy.com 24 | #127.0.0.1 polaris$i-normal-hl.zijieapi.com 25 | #127.0.0.1 polaris$i-normal-lq.zijieapi.com 26 | #127.0.0.1 lf$i-cdn-tos.bytescm.com 27 | #127.0.0.1 gecko$i-hl.zijieapi.com 28 | #127.0.0.1 gecko$i-lq.zijieapi.com 29 | #127.0.0.1 v$i-default.ixigua.com 30 | #127.0.0.1 log$i-applog-hl.fqnovel.com 31 | #127.0.0.1 gecko$i-hl.zijieapi.com 32 | #127.0.0.1 gecko$i-lq.zijieapi.com 33 | #127.0.0.1 polaris$i-normal-hl.zijieapi.com 34 | #127.0.0.1 polaris$i-normal-lq.zijieapi.com 35 | #127.0.0.1 api$i-normal-lq.fqnovel.com 36 | #127.0.0.1 api$i-normal-hl.fqnovel.com 37 | #127.0.0.1 mon$i-misc-lf.fqnovel.com 38 | #127.0.0.1 lf$i-common-ckv-tos.pstatp.com 39 | #127.0.0.1 valipl.cp$i.ott.cibntv.net 40 | #127.0.0.1 vali-g1.cp$i.ott.cibntv.net 41 | #127.0.0.1 v$i-novelapp.ixigua.com 42 | #127.0.0.1 lf$i-common-ckv-tos.pstatp.com 43 | #127.0.0.1 tnc3-alisc1.bytedance.com 44 | #127.0.0.1 tnc3-bjlgy.bytedance.com 45 | 46 | echo " 47 | 0.0.0.0 p$i-ad-sign.byteimg.com 48 | 0.0.0.0 p${i}-ad.byteimg.com 49 | 0.0.0.0 p${i}-ad.adkwai.com 50 | 0.0.0.0 p${i}-ad.adukwai.com 51 | 0.0.0.0 p${i}-ad.adbkwai.com 52 | 0.0.0.0 vs$i.bj2cm.u3.ucweb.com 53 | 0.0.0.0 vs$i.bj2cu.u3.ucweb.com 54 | 0.0.0.0 vs$i.bj2ct.u3.ucweb.com 55 | 0.0.0.0 vs${i}.bj2.u3.ucweb.com 56 | 0.0.0.0 vs$i.gzct.u3.ucweb.com 57 | 0.0.0.0 vs$i.gzcu.u3.ucweb.com 58 | 0.0.0.0 vs$i.gzcm.u3.ucweb.com 59 | 0.0.0.0 ${i}gtest.bj2cu.u3.ucweb.com 60 | 0.0.0.0 ads$i-normal-lq.zijieapi.com 61 | 0.0.0.0 ads$i-normal-lf.zijieapi.com 62 | 0.0.0.0 ads$i-normal-hl.zijieapi.com 63 | 0.0.0.0 ads$i-normal.zijieapi.com 64 | 0.0.0.0 p$i-orange.byteorge.com 65 | 0.0.0.0 p${i}-be-pack-sign.pglstatp-toutiao.com 66 | 0.0.0.0 lf$i-common-ckv-tos.pstatp.com 67 | 0.0.0.0 v$i-ad.ixigua.com 68 | 0.0.0.0 api-access.pangolin-sdk-toutiao${i}.com 69 | 0.0.0.0 api-access.pangolin-sdk-toutiao${i}-b.com 70 | 0.0.0.0 xn--pan-ei"$i"e.xn--baidu-jm6h.com 71 | 0.0.0.0 w${i}.gskwai.com 72 | " >> "${file}" 73 | done 74 | 75 | #蓝奏云拦截域名 76 | for i in s d z ;do 77 | cat <> "${file}" 78 | 0.0.0.0 lanzou$i.com 79 | 0.0.0.0 cbzhk.lanzou$i.com 80 | 0.0.0.0 wwa.lanzou$i.com 81 | 0.0.0.0 wws.lanzou$i.com 82 | 0.0.0.0 www.lanzou$i.com 83 | 0.0.0.0 wwe.lanzou$i.com 84 | key 85 | done 86 | } 87 | 88 | 89 | function wipe_value() { 90 | local file="${1}" 91 | #去除特殊符号 92 | echo -e "\n去除特殊符号……" 93 | # busybox sed -E -i -e '/([^:]):/d' \ 94 | # -e 's/^[[:space:]]+//g' \ 95 | # -e 's/[[:space:]]#.*//g' "${file}" 96 | # busybox sed -i -e 's/^\|\|/127.0.0.1 /g' \ 97 | # -e 's/\^$//g' \ 98 | # -e '/=/d;/\*/d;/\//d;/^\!/d;/\@/d' "${file}" 99 | sed -i '/^#/d;/^[[:space:]]*$/d' "${file}" 100 | sed -i '/\[/d;/^[[:space:]]*$/d' "${file}" 101 | sed -i '/\]/d;/^[[:space:]]*$/d' "${file}" 102 | sed -i '/<.*>/d;/^[[:space:]]*$/d' "${file}" 103 | sed -i '/^@/d;/^[[:space:]]*$/d' "${file}" 104 | sed -i 's|[[:space:]]$||g' "${file}" 105 | #去除特殊的0.0.0.0符号 106 | echo -e "\n去除特殊0.0.0.0符号……" 107 | sed -i 's|^0.0.0.0[[:space:]]|0.0.0.0 |g' "${file}" 108 | sed -i 's|^0.0.0.0 |0.0.0.0 |g' "${file}" 109 | sed -i 's|^0.0.0.0[[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 110 | sed -i 's|^0.0.0.0[[:space:]][[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 111 | sed -i 's|^0.0.0.0[[:space:]][[:space:]][[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 112 | #去除特殊的127.0.0.1符号 113 | echo -e "\n去除特殊127.0.0.1符号……" 114 | sed -i 's|^127.0.0.1 |0.0.0.0 |g' "${file}" 115 | sed -i '/^127.0.0.1[[:space:]]#/d;/^[[:space:]]*$/d' "${file}" 116 | sed -i 's|^127.0.0.1[[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 117 | sed -i 's|^127.0.0.1[[:space:]][[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 118 | sed -i 's|^127.0.0.1[[:space:]][[:space:]][[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 119 | sed -i 's|^127.0.0.1 |0.0.0.0 |g' "${file}" 120 | #去除"::"回环 121 | echo -e "\n去除回环符号……" 122 | sed -i 's|^::[[:space:]]|0.0.0.0 |g' "${file}" 123 | sed -i 's|^::[[:space:]][[:space:]]|0.0.0.0 |g' "${file}" 124 | } 125 | 126 | #Host去重 127 | function mk_new_file() { 128 | local file=$1 129 | local new=$( cat "${file}" | sort | uniq | sed '/^[[:space:]]*$/d' ) 130 | echo -e "$new" > "${file}" 131 | } 132 | 133 | #下载新的hosts 134 | function download_hosts() { 135 | local file="${1}" 136 | local IFS=$'\n' 137 | local tmp_DIR="`pwd`/tmp_hosts" 138 | mkdir -p "${tmp_DIR}" 139 | 140 | #adhost 禁用 2022.11.20 141 | #https://raw.githubusercontent.com/E7KMbb/AD-hosts/master/system/etc/hosts|AdHost 142 | #oisd 失效2024.01.15 143 | #https://hosts.oisd.nl/basic|oisd 144 | #StevenBlack 去除订阅porn拦截 145 | #https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts|StevenBlack 146 | #StevenBlack 去除媒体订阅 147 | #https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts 148 | 149 | 150 | local hosts_list=' 151 | https://hblock.molinero.dev/hosts|hblock 152 | https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts|1024 153 | https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts|StevenBlack 154 | https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts|yhost 155 | https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts|大圣净化 156 | https://raw.githubusercontent.com/neodevpro/neodevhost/master/host|neodev 157 | https://o0.pages.dev/Lite/hosts.txt|1Host 158 | ' 159 | 160 | echo -e "\n※下载hosts中……" 161 | for i in ${hosts_list} 162 | do 163 | HostURL="$(echo "${i}" | cut -d'|' -f1)" 164 | Hostname="$(echo "${i}" | cut -d'|' -f2)" 165 | curl -k -L -o "${tmp_DIR}/$Hostname" "${HostURL}" >/dev/null 2>&1 && echo -e "※[ ${Hostname} ] 下载成功!" || echo -e "[ ${Hostname} ]下载失败!" 166 | test "$(echo "${Hostname}" | grep -E 'neodev|hblock|1Host')" != "" && { 167 | wipe_value "${tmp_DIR}/$Hostname" 168 | continue 169 | } 170 | hosts_original="$(cat ${tmp_DIR}/$Hostname 2>/dev/null )" 171 | echo -e "${hosts_original}" >> "${file}" 172 | done 173 | test ! -f "${file}" && echo -e "${file} 不存在!!" && exit 1 174 | } 175 | 176 | function grep_value_file() { 177 | local value="${2}" 178 | local file="${3}" 179 | local word="${1}" 180 | case $word in 181 | 1) 182 | word='-iw' 183 | ;; 184 | E) 185 | word='-iE' 186 | ;; 187 | *) 188 | word='-i' 189 | ;; 190 | esac 191 | local targetdir="`pwd`/result" 192 | if test -e "${file}" ;then 193 | mkdir -p "${targetdir}" 194 | hosts_value="$( cat ${file} 2>/dev/null | grep $word ${value} ${file} | sed '/^#/d;/^[[:space:]]*$/d' )" 195 | echo -e "${hosts_value}" > "${targetdir}/${value}.conf" && echo -e "已经输出[ ${value} ]" 196 | fi 197 | } 198 | 199 | function wipe_logcat() { 200 | local file="$1" 201 | local list=" 202 | alog 203 | alogs 204 | applog 205 | applogios 206 | clientlog 207 | clientlog[0-9] 208 | clientlog[0-9][0-9] 209 | errlog 210 | errlogos 211 | errlogs 212 | eventlog 213 | extlog 214 | log 215 | log[0-9] 216 | log[0-9][0-9] 217 | login 218 | logs 219 | logsdk 220 | logservice 221 | logupdate 222 | logview 223 | tobapplog 224 | toblog 225 | ulog 226 | ulogs 227 | xlog 228 | xlogs 229 | " 230 | local IFS=$'\n' 231 | if test -f "$file" ;then 232 | for i in $list 233 | do 234 | echo -e "$(grep -wvi "$i" "$file")" > "$file" 235 | done 236 | fi 237 | } 238 | 239 | function exclude_value() { 240 | local conf="${1}" 241 | local target="${2}" 242 | if test -e $conf ;then 243 | echo -e "[$(date +%y-%m-%d-%T)] ※执行排除文件["${conf}"]下的规则……※\n" 244 | for i in $(cat "${conf}" 2>/dev/null | sed '/^#.*/d;/^[[:space:]]*$/d' ) 245 | do 246 | busybox sed -i "/$i/d" "${target}" 247 | done && echo -e "[$(date +%y-%m-%d-%T)] ※已排除[${conf}]文件中的规则※\n" 248 | fi 249 | } 250 | 251 | function add_custo() { 252 | local conf_file="${1}" 253 | local target="${2}" 254 | if test -e "${conf_file}" ;then 255 | cp -rf "${conf_file}" "${target}/${conf_file##*/}.conf" && echo -e "[$(date +%y-%m-%d-%T)] ※复制["${conf_file}"]※\n" || echo -e "[$(date +%y-%m-%d-%T)] ※复制["${conf_file}"]失败!※\n" 256 | fi 257 | } 258 | 259 | function combine_file() { 260 | local target_dir="${1}" 261 | local output="${2}" 262 | test -e "${output}" && rm -rf "${output}" 263 | if test -e "${target_dir}" ;then 264 | echo -e "[$(date +%y-%m-%d-%T)] ※合并规则中……※\n" 265 | for i in ${target_dir}/*.conf ;do 266 | echo -e "$(cat "$i" 2>/dev/null )" >>"${output}" 267 | done && echo -e "[$(date +%y-%m-%d-%T)] ※完成合并规则!※\n" || echo -e "[$(date +%y-%m-%d-%T)] ※合并失败!※\n" 268 | if test -e "${output}" ;then 269 | echo -e "[$(date +%y-%m-%d-%T)] ※筛选重复项中……※\n" 270 | cat < "${output}" && echo -e "[$(date +%y-%m-%d-%T)] ※筛选重复项完成!※\n" || echo -e "[$(date +%y-%m-%d-%T)] ※筛选失败!※\n" 271 | $(cat "${output}" | sort | uniq | sed '/^#.*/d;/^[[:space:]]*$/d' ) 272 | key 273 | wipe_logcat "${output}" 274 | fi 275 | fi 276 | } 277 | 278 | function modtifly() { 279 | local targetfile="${1}" 280 | local target_content 281 | sed -i '/\#/d' "${targetfile}" 282 | sed -i '/\]/d' "${targetfile}" 283 | sed -i '/\[/d' "${targetfile}" 284 | sed -i '/(/d' "${targetfile}" 285 | sed -i '/)/d' "${targetfile}" 286 | sed -i 's|127.0.0.1|0.0.0.0|g' "${targetfile}" 287 | #sed -i -E 's/(^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})([[:space:]]{1,10})/\1 /g' "${targetfile}" 288 | target_content="$(cat "${targetfile}" | sort | uniq )" 289 | echo "${target_content}" > "${targetfile}" 290 | } 291 | 292 | function remove_ad() { 293 | local file="$1" 294 | local target="$2" 295 | local local_host_file="$3" 296 | test -f "${target}" && rm -rf "${target}" 297 | cat "${file}" 2>/dev/null | sed '/^#/d;/^[[:space:]]*$/d' | while read host ;do 298 | echo -e "0.0.0.0 $host" >> "$target" 299 | done 300 | cat <> $local_host_file 301 | #广告奖励 302 | $(cat "$target" 2>/dev/null ) 303 | #END 304 | key 305 | } 306 | 307 | #制作Adaway白名单 308 | function white_list_Maker_Adaway(){ 309 | local target_file="${1}" 310 | local file="`pwd`/Adaway_white_list.prop" 311 | cp -rf "${target_file}" "${file}" 312 | test ! -f "${file}" && return 0 313 | sed -i -E -e 's/\^0.0.0.0\[\[:space:\]\]//g' \ 314 | -e 's/\$$//g' \ 315 | -e 's/\\\./\./g' \ 316 | -e 's/\[.*\]/\*/g' \ 317 | -e 's/\.\*/\*/g' \ 318 | -e 's/\+/\?/g' \ 319 | -e '/\#放到iptables屏蔽的域名/,/^[[:space:]]$/d' \ 320 | -e '/^[[:space:]]*$/d' "${file}" 321 | local original="$(cat "${file}")" 322 | cat << key > "${file}" 323 | ######### 324 | #Adaway专用白名单 325 | #禁止用在拦截黑名单或者Adguard订阅 326 | # _ ___ ___ _____ 327 | #/ |/ _ \ / _ \___ | 328 | #| | | | | | | | / / 329 | #| | |_| | |_| |/ / 330 | #|_|\___/ \___//_/ 331 | # 332 | ########### 333 | key 334 | echo "${original}" >> "${file}" 335 | } 336 | 337 | #写入信息 338 | function write_head () { 339 | local target_file="${1}" 340 | local original_file_content="$(cat ${target_file} 2>/dev/null | sed '/^#/d;/^[[:space:]]*$/d')" 341 | local total_count="$(echo "${original_file_content}" | wc -l )" 342 | cat << KEY > "${target_file}" 343 | #@coolapk 1007 344 | #有问题可以在文件里搜索关键词 345 | #例如"toutiao(头条)","MIUI xiaomi (小米)","reward(奖励)"。 346 | #在相应行的开头加个"#"号 347 | #更新时间: $(date '+%F %T') 348 | 127.0.0.1 localhost 349 | ::1 localhost 350 | ::1 ip6-loopback 351 | ::1 ip6-localhost 352 | #提速测试 353 | 127.0.0.2 localhost 354 | 127.0.0.3 localhost 355 | ::2 ip6-localhost 356 | ::3 ip6-localhost 357 | 127.0.1.1 hostname 358 | 127.0.1.2 hostname 359 | 127.0.1.3 hostname 360 | #规则数量:${total_count} 361 | #GIthub订阅主页: https://github.com/lingeringsound/10007_auto 362 | 363 | KEY 364 | echo "${original_file_content}" >> "${target_file}" 365 | } 366 | 367 | function adblock() { 368 | echo -e "[$(date +%y-%m-%d-%T)] ※制作Adblock规则……※\n" 369 | local old_file="${1}" 370 | local file="${old_file%/*}/adb.txt" 371 | echo "$(cat $old_file )" > "${file}" 372 | if test -f "$file" ;then 373 | sed -i "/^#/d" "$file" 374 | sed -i "/^::1/d;/translate.google.com/d;/translate.googleapis.com/d;/hugeota.d.miui.com/d;/bigota.d.miui.com/d;/[[:space:]]ip6-localhost/d;/[[:space:]]hostname/d;/localhost/d" "$file" 375 | sed -i "s/0.0.0.0 /||/g;s|$|^|g" "$file" 376 | sed -i "s/^\^//g" "$file" 377 | local file_content="$(cat "${file}")" 378 | local filter_count="$(echo "${file_content}" | sed '/^[[:space:]]*$/d' | wc -l)" 379 | cat << key > "${file}" 380 | [Host 10007] 381 | [Adblock Plus 2.0] 382 | ! Title: Host 10007 383 | ! Homepage: https://github.com/lingeringsound/10007_auto 384 | ! ZH_Homepage: https://www.gitlink.org.cn/keytoolazy/10007_auto 385 | ! Last modified: `date +'%F %T'` 386 | ! 规则数量: ${filter_count} 387 | 388 | $(cat "`pwd`/configure/add.prop") 389 | 390 | ${file_content} 391 | key 392 | 393 | fi 394 | } 395 | 396 | function adclose() { 397 | echo -e "[$(date +%y-%m-%d-%T)] ※制作Adclose规则……※\n" 398 | local old_file="${1}" 399 | local file="${old_file%/*}/10007.rule" 400 | echo "$(cat $old_file )" > "${file}" 401 | if test -f "$file" ;then 402 | sed -i "/^#/d" "$file" 403 | sed -i "/^::1/d;/translate.google.com/d;/translate.googleapis.com/d;/hugeota.d.miui.com/d;/bigota.d.miui.com/d;/[[:space:]]ip6-localhost/d;/[[:space:]]hostname/d;/localhost/d" "$file" 404 | sed -i "s/0.0.0.0 /Domain, /g" "$file" 405 | sed -i "s/^\^//g" "$file" 406 | local file_content="$(cat "${file}")" 407 | local filter_count="$(echo "${file_content}" | sed '/^[[:space:]]*$/d' | wc -l)" 408 | cat << key > "${file}" 409 | # Host 10007 410 | # 主页: https://github.com/lingeringsound/10007_auto 411 | # 中文主页: https://www.gitlink.org.cn/keytoolazy/10007_auto 412 | # 更新日期: `date +'%F %T'` 413 | # 规则数量: ${filter_count} 414 | 415 | $( cat "`pwd`/configure/Adclose.rule" ) 416 | 417 | #域名规则 418 | ${file_content} 419 | #END 420 | key 421 | 422 | fi 423 | } 424 | 425 | function mktouch_host() { 426 | add_custo `pwd`/configure/自定义.prop `pwd`/result 427 | add_custo `pwd`/configure/魅族.conf `pwd`/result 428 | combine_file `pwd`/result `pwd`/all 429 | exclude_value `pwd`/configure/排除列表.prop `pwd`/all 430 | exclude_value `pwd`/configure/保留奖励.prop `pwd`/all 431 | modtifly `pwd`/all 432 | remove_ad `pwd`/configure/广告奖励.prop `pwd`/result/广告奖励.conf `pwd`/all 433 | write_head `pwd`/all 434 | } 435 | 436 | function mktouch_no_host() { 437 | add_custo `pwd`/configure/自定义.prop `pwd`/result 438 | add_custo `pwd`/configure/魅族.conf `pwd`/result 439 | combine_file `pwd`/result `pwd`/reward 440 | exclude_value `pwd`/configure/排除列表.prop `pwd`/reward 441 | exclude_value `pwd`/configure/保留奖励.prop `pwd`/reward 442 | modtifly `pwd`/reward 443 | write_head `pwd`/reward 444 | } 445 | 446 | 447 | function RUnning_SETUPS_environment(){ 448 | setup_environment 449 | setup_environment 450 | download_hosts `pwd`/host 451 | mk_new_file `pwd`/host 452 | wipe_value `pwd`/host 453 | setup_environment 454 | } 455 | 456 | function RUnning_grep_values_conf(){ 457 | local hosts_file=`pwd`/host 458 | grep_value_file '1' '1688' "${hosts_file}" 459 | grep_value_file '1' '2345' "${hosts_file}" 460 | grep_value_file '1' '360' "${hosts_file}" 461 | grep_value_file '1' '360safe' "${hosts_file}" 462 | grep_value_file '1' '365' "${hosts_file}" 463 | grep_value_file '1' 'JUNKY' "${hosts_file}" 464 | grep_value_file '1' 'TRAFFIC' "${hosts_file}" 465 | grep_value_file '1' 'TRAFFIC.*JUNKY' "${hosts_file}" 466 | grep_value_file '1' '[[:alpha:]]ad' "${hosts_file}" 467 | grep_value_file 'E' '[[:alpha:]]?ads' "${hosts_file}" 468 | grep_value_file '1' '[[:alpha:]]cdn' "${hosts_file}" 469 | grep_value_file 'E' '[[:alpha:]]+sdk' "${hosts_file}" 470 | grep_value_file '1' '[[:digit:]]ad' "${hosts_file}" 471 | grep_value_file 'E' '[[:digit:]]?ads' "${hosts_file}" 472 | grep_value_file '1' 'ad' "${hosts_file}" 473 | grep_value_file '1' 'ad.*cdn' "${hosts_file}" 474 | grep_value_file '1' 'ad.*service' "${hosts_file}" 475 | grep_value_file '1' 'ad.*services' "${hosts_file}" 476 | grep_value_file '1' 'ad[[:alpha:]]' "${hosts_file}" 477 | grep_value_file 'E' 'ad[[:alpha:]]?[[:digit:]]' "${hosts_file}" 478 | grep_value_file '1' 'ad[[:digit:]]' "${hosts_file}" 479 | grep_value_file '1' 'adapi' "${hosts_file}" 480 | grep_value_file '1' 'adbana' "${hosts_file}" 481 | grep_value_file '1' 'adimg' "${hosts_file}" 482 | grep_value_file '1' 'adjust' "${hosts_file}" 483 | grep_value_file '1' 'adkwai' "${hosts_file}" 484 | grep_value_file '1' 'admaster' "${hosts_file}" 485 | grep_value_file '1' 'adnxs' "${hosts_file}" 486 | grep_value_file '1' 'adobe' "${hosts_file}" 487 | grep_value_file '1' 'adpush' "${hosts_file}" 488 | grep_value_file '1' 'ads' "${hosts_file}" 489 | grep_value_file '1' 'ads.*cdn' "${hosts_file}" 490 | grep_value_file 'E' 'ads[[:alpha:]]?[[:digit:]]+' "${hosts_file}" 491 | grep_value_file '1' 'ads[[:digit:]]' "${hosts_file}" 492 | grep_value_file '1' 'adsage' "${hosts_file}" 493 | grep_value_file '1' 'adsame' "${hosts_file}" 494 | grep_value_file '1' 'adsapi' "${hosts_file}" 495 | grep_value_file '1' 'adsdk' "${hosts_file}" 496 | grep_value_file '1' 'adsensor' "${hosts_file}" 497 | grep_value_file '1' 'adsmind' "${hosts_file}" 498 | grep_value_file '1' 'adtrack' "${hosts_file}" 499 | grep_value_file '1' 'advertise' "${hosts_file}" 500 | grep_value_file '1' 'advertisement' "${hosts_file}" 501 | grep_value_file '1' 'advertising' "${hosts_file}" 502 | grep_value_file '1' 'adview' "${hosts_file}" 503 | grep_value_file '1' 'adwo' "${hosts_file}" 504 | grep_value_file '1' 'agrantsem' "${hosts_file}" 505 | grep_value_file '1' 'alicdn' "${hosts_file}" 506 | grep_value_file '1' 'alimama' "${hosts_file}" 507 | grep_value_file '1' 'analytics' "${hosts_file}" 508 | grep_value_file '1' 'api' "${hosts_file}" 509 | grep_value_file '1' 'appad' "${hosts_file}" 510 | grep_value_file '1' 'appads' "${hosts_file}" 511 | grep_value_file '1' 'atianqi' "${hosts_file}" 512 | grep_value_file '1' 'baichuan' "${hosts_file}" 513 | grep_value_file '1' 'baidu' "${hosts_file}" 514 | grep_value_file '1' 'banner' "${hosts_file}" 515 | grep_value_file '1' 'bcebos' "${hosts_file}" 516 | grep_value_file '1' 'bdimg' "${hosts_file}" 517 | grep_value_file '1' 'bdstatic' "${hosts_file}" 518 | grep_value_file '1' 'browser' "${hosts_file}" 519 | grep_value_file '1' 'bugly' "${hosts_file}" 520 | grep_value_file '1' 'cdn.*ad' "${hosts_file}" 521 | grep_value_file '1' 'cdn.*ads' "${hosts_file}" 522 | grep_value_file '1' 'check' "${hosts_file}" 523 | grep_value_file '1' 'cibntv' "${hosts_file}" 524 | grep_value_file '1' 'click' "${hosts_file}" 525 | grep_value_file '1' 'cnzz' "${hosts_file}" 526 | grep_value_file '1' 'commercial' "${hosts_file}" 527 | grep_value_file '1' 'consumer' "${hosts_file}" 528 | grep_value_file '1' 'corp' "${hosts_file}" 529 | grep_value_file '1' 'cpro' "${hosts_file}" 530 | grep_value_file '1' 'csdn' "${hosts_file}" 531 | grep_value_file '1' 'ctobsnssdk' "${hosts_file}" 532 | grep_value_file '1' 'dm' "${hosts_file}" 533 | grep_value_file '1' 'dns' "${hosts_file}" 534 | grep_value_file '1' 'douban' "${hosts_file}" 535 | grep_value_file '1' 'doubanio' "${hosts_file}" 536 | grep_value_file '1' 'doubleclick' "${hosts_file}" 537 | grep_value_file '1' 'download' "${hosts_file}" 538 | grep_value_file '1' 'exosrv' "${hosts_file}" 539 | grep_value_file '1' 'flash' "${hosts_file}" 540 | grep_value_file '1' 'flurry' "${hosts_file}" 541 | grep_value_file '1' 'gdt' "${hosts_file}" 542 | grep_value_file '1' 'gifshow' "${hosts_file}" 543 | grep_value_file '1' 'godaddy' "${hosts_file}" 544 | grep_value_file '1' 'google' "${hosts_file}" 545 | grep_value_file '1' 'googlead' "${hosts_file}" 546 | grep_value_file '1' 'googleads' "${hosts_file}" 547 | grep_value_file '1' 'googleanalysis' "${hosts_file}" 548 | grep_value_file '1' 'googlesyndication' "${hosts_file}" 549 | grep_value_file '1' 'gtimg' "${hosts_file}" 550 | grep_value_file '1' 'hao123' "${hosts_file}" 551 | grep_value_file '1' 'heytap.*' "${hosts_file}" 552 | grep_value_file '1' 'httpdns' "${hosts_file}" 553 | grep_value_file '1' 'igexin' "${hosts_file}" 554 | grep_value_file '1' 'imgad' "${hosts_file}" 555 | grep_value_file '1' 'imgcache' "${hosts_file}" 556 | grep_value_file '1' 'imtt' "${hosts_file}" 557 | grep_value_file '1' 'ipinyou' "${hosts_file}" 558 | grep_value_file '1' 'iqiyi' "${hosts_file}" 559 | grep_value_file '1' 'ixigua' "${hosts_file}" 560 | grep_value_file '1' 'jiguang' "${hosts_file}" 561 | grep_value_file '1' 'jomodns' "${hosts_file}" 562 | grep_value_file '1' 'juicy' "${hosts_file}" 563 | grep_value_file '1' 'ksapisrv' "${hosts_file}" 564 | grep_value_file '1' 'ksosoft' "${hosts_file}" 565 | grep_value_file '1' 'kuaishou' "${hosts_file}" 566 | grep_value_file '1' 'kwad' "${hosts_file}" 567 | grep_value_file '1' 'lenovomm' "${hosts_file}" 568 | grep_value_file '1' 'lianmeng' "${hosts_file}" 569 | grep_value_file '1' 'lmgg' "${hosts_file}" 570 | grep_value_file '1' 'locus' "${hosts_file}" 571 | grep_value_file '1' 'lottery' "${hosts_file}" 572 | grep_value_file '1' 'lrswl' "${hosts_file}" 573 | grep_value_file '1' 'mediav' "${hosts_file}" 574 | grep_value_file '1' 'meitu' "${hosts_file}" 575 | grep_value_file '1' 'mi' "${hosts_file}" 576 | grep_value_file '1' 'miaozhen' "${hosts_file}" 577 | grep_value_file '1' 'migu' "${hosts_file}" 578 | grep_value_file '1' 'miguvideo' "${hosts_file}" 579 | grep_value_file '1' 'miui' "${hosts_file}" 580 | grep_value_file '1' 'mmstat' "${hosts_file}" 581 | grep_value_file '1' 'mob' "${hosts_file}" 582 | grep_value_file '1' 'mobad' "${hosts_file}" 583 | grep_value_file '1' 'mobads' "${hosts_file}" 584 | grep_value_file '1' 'mobi' "${hosts_file}" 585 | grep_value_file '1' 'mobilead' "${hosts_file}" 586 | grep_value_file '1' 'mobileads' "${hosts_file}" 587 | grep_value_file '1' 'mobmore' "${hosts_file}" 588 | grep_value_file '1' 'msn' "${hosts_file}" 589 | grep_value_file '1' 'mssdk' "${hosts_file}" 590 | grep_value_file '1' 'mta' "${hosts_file}" 591 | grep_value_file '1' 'netease' "${hosts_file}" 592 | grep_value_file '1' 'oceanengine' "${hosts_file}" 593 | grep_value_file '1' 'open' "${hosts_file}" 594 | grep_value_file '1' 'openapi' "${hosts_file}" 595 | grep_value_file '1' 'oppo' "${hosts_file}" 596 | grep_value_file '1' 'oppomobile' "${hosts_file}" 597 | grep_value_file '1' 'oupeng' "${hosts_file}" 598 | grep_value_file '1' 'pagead' "${hosts_file}" 599 | grep_value_file '1' 'pagead[[:digit:]]' "${hosts_file}" 600 | grep_value_file '1' 'pandora' "${hosts_file}" 601 | grep_value_file '1' 'pangle' "${hosts_file}" 602 | grep_value_file '1' 'partner' "${hosts_file}" 603 | grep_value_file '1' 'pgdt' "${hosts_file}" 604 | grep_value_file '1' 'pglstatp' "${hosts_file}" 605 | grep_value_file '1' 'pinduoduo' "${hosts_file}" 606 | grep_value_file '1' 'pro' "${hosts_file}" 607 | grep_value_file '1' 'pstatp' "${hosts_file}" 608 | grep_value_file '1' 'puata' "${hosts_file}" 609 | grep_value_file '1' 'qihoo' "${hosts_file}" 610 | #grep_value_file '1' 'qq' "${hosts_file}" 611 | grep_value_file '1' 'realsrv' "${hosts_file}" 612 | grep_value_file '1' 'sax' "${hosts_file}" 613 | grep_value_file '1' 'saxs' "${hosts_file}" 614 | grep_value_file '1' 'sdk' "${hosts_file}" 615 | grep_value_file '1' 'share' "${hosts_file}" 616 | grep_value_file '1' 'shifen' "${hosts_file}" 617 | grep_value_file '1' 'sina' "${hosts_file}" 618 | grep_value_file '1' 'sinaimg' "${hosts_file}" 619 | grep_value_file '1' 'sm' "${hosts_file}" 620 | grep_value_file '1' 'smartadserver' "${hosts_file}" 621 | grep_value_file '1' 'snssdk' "${hosts_file}" 622 | grep_value_file '1' 'splash' "${hosts_file}" 623 | grep_value_file '1' 'syndication' "${hosts_file}" 624 | grep_value_file '1' 'tad' "${hosts_file}" 625 | grep_value_file '1' 'tagtic' "${hosts_file}" 626 | grep_value_file '1' 'talkingdata' "${hosts_file}" 627 | grep_value_file '1' 'taobao' "${hosts_file}" 628 | grep_value_file '1' 'taobaocdn' "${hosts_file}" 629 | grep_value_file '1' 'tbs' "${hosts_file}" 630 | grep_value_file '1' 'tieba' "${hosts_file}" 631 | grep_value_file '1' 'tongji' "${hosts_file}" 632 | #grep_value_file '1' 'top' "${hosts_file}" 633 | grep_value_file '1' 'tos' "${hosts_file}" 634 | grep_value_file '1' 'toutiao' "${hosts_file}" 635 | #grep_value_file '1' 'tpns' "${hosts_file}" 636 | grep_value_file '1' 'trace' "${hosts_file}" 637 | grep_value_file '1' 'twitter' "${hosts_file}" 638 | grep_value_file '1' 'uc' "${hosts_file}" 639 | grep_value_file '1' 'ucweb' "${hosts_file}" 640 | grep_value_file '1' 'uczzd' "${hosts_file}" 641 | grep_value_file '1' 'umeng' "${hosts_file}" 642 | grep_value_file '1' 'umengcloud' "${hosts_file}" 643 | grep_value_file '1' 'union' "${hosts_file}" 644 | grep_value_file '1' 'update' "${hosts_file}" 645 | grep_value_file '1' 'upgrade' "${hosts_file}" 646 | grep_value_file '1' 'vlion' "${hosts_file}" 647 | grep_value_file '1' 'voiceads' "${hosts_file}" 648 | grep_value_file '1' 'wechat' "${hosts_file}" 649 | grep_value_file '1' 'weibo' "${hosts_file}" 650 | grep_value_file '1' 'weixin' "${hosts_file}" 651 | grep_value_file '1' 'woozooo' "${hosts_file}" 652 | grep_value_file '1' 'wps' "${hosts_file}" 653 | grep_value_file '1' 'wx' "${hosts_file}" 654 | grep_value_file '1' 'wxs' "${hosts_file}" 655 | grep_value_file '1' 'wxsnsdy' "${hosts_file}" 656 | grep_value_file '1' 'x5' "${hosts_file}" 657 | grep_value_file '1' 'xdrig' "${hosts_file}" 658 | grep_value_file '1' 'xg' "${hosts_file}" 659 | grep_value_file '1' 'ximalaya' "${hosts_file}" 660 | grep_value_file '1' 'xiaomi' "${hosts_file}" 661 | grep_value_file '1' 'xigua' "${hosts_file}" 662 | grep_value_file '1' 'xunlei' "${hosts_file}" 663 | grep_value_file '1' 'youdao' "${hosts_file}" 664 | grep_value_file '1' 'yximgs' "${hosts_file}" 665 | grep_value_file '1' 'zhihu' "${hosts_file}" 666 | grep_value_file '1' 'zijieapi' "${hosts_file}" 667 | grep_value_file '1' 'zzd' "${hosts_file}" 668 | #22.09.26 669 | grep_value_file '1' 'yandex' "${hosts_file}" 670 | #22.10.06 671 | #华为隐私收集和部分广告 672 | grep_value_file '1' 'hicloud' "${hosts_file}" 673 | #yandex广告 674 | grep_value_file '1' 'yandexadexchange' "${hosts_file}" 675 | #22.10.24 网易邮箱 676 | grep_value_file '1' '163' "${hosts_file}" 677 | #22.10.25 恢复QQ相关域名拦截,可能会有大量误杀 678 | grep_value_file '1' 'qq' "`pwd`/tmp_hosts/yhost" 679 | grep_value_file '1' 'qq' "`pwd`/tmp_hosts/大圣净化" 680 | #虎扑 2022.11.20 681 | grep_value_file '1' 'hupu' "${hosts_file}" 682 | #Hub 联盟 683 | grep_value_file "1" 'hubcloud' "$hosts_file" 684 | grep_value_file "0" 'adv.' "$hosts_file" 685 | grep_value_file "1" 'adv-' "$hosts_file" 686 | #BeiZi 广告 687 | grep_value_file "1" 'BeiZi' "$hosts_file" 688 | #anythinktech 689 | grep_value_file "1" 'anythinktech' "$hosts_file" 690 | #toponad 691 | grep_value_file "1" 'toponad' "$hosts_file" 692 | #neodev 693 | grep_value_file "E" '[[:space:]]ad\.|(-)?ad[vsx-]|[[:space:]]ad[0-9]|ads[0-9]{1,2}|[[:space:]]([a-z]{2,8}|-)?sdk\.|[[:space:]]([a-z]{2,5})?api\.' "`pwd`/tmp_hosts/neodev" 694 | #hblock 695 | grep_value_file "E" '[[:space:]]ad\.|(-)?ad[vsx-]|[[:space:]]ad[0-9]|ads[0-9]{1,2}|[[:space:]]([a-z]{2,8}|-)?sdk\.|[[:space:]]([a-z]{2,5})?api\.' "`pwd`/tmp_hosts/hblock" 696 | #1Host 697 | grep_value_file "E" '[[:space:]]ad\.|(-)?ad[vsx-]|[[:space:]]ad[0-9]|ads[0-9]{1,2}|[[:space:]]([a-z]{2,8}|-)?sdk\.|[[:space:]]([a-z]{2,5})?api\.' "`pwd`/tmp_hosts/1Host" 698 | 699 | 700 | } 701 | 702 | #开始运行 703 | #设置环境 704 | RUnning_SETUPS_environment 705 | #筛选设定值 706 | RUnning_grep_values_conf 707 | Do_detect_hosts 708 | #制作去除广告奖励的Host 709 | mktouch_host 710 | #制作不包含广告奖励的Host 711 | mktouch_no_host 712 | #制作adblock规则 713 | adblock `pwd`/reward 714 | #制作Adaway白名单 715 | white_list_Maker_Adaway `pwd`/configure/排除列表.prop 716 | #制作Adclose规则 717 | adclose `pwd`/reward 718 | #统计 719 | rm -rf `pwd`/result `pwd`/host `pwd`/tmp_hosts 720 | test -f `pwd`/reward && echo "文件大小 $( du -sh `pwd`/reward ),hosts数量: $(cat `pwd`/reward | wc -l ) " 721 | test -f `pwd`/all && echo "文件大小 $( du -sh `pwd`/all ),hosts数量: $(cat `pwd`/all | wc -l ) " 722 | test -f `pwd`/adb.txt && echo "文件大小 $( du -sh `pwd`/adb.txt ),hosts数量: $(cat `pwd`/adb.txt | wc -l ) " 723 | 724 | 725 | 726 | 727 | --------------------------------------------------------------------------------