mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
re-add adbyby plus.auto update adbyby rules when pppoe ip up at firstboot
This commit is contained in:
parent
cddba18888
commit
8383d26fbd
70
package/lean/adbyby/Makefile
Normal file
70
package/lean/adbyby/Makefile
Normal file
@ -0,0 +1,70 @@
|
||||
#
|
||||
# Copyright (C) 2015-2016 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v3.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=adbyby
|
||||
PKG_VERSION:=2.7
|
||||
PKG_RELEASE:=20180616
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=Powerful adblock module to block ad.
|
||||
DEPENDS:=
|
||||
URL:=http://www.adbyby.com/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
Adbyby is a powerful adblock module to block ad,just like adblock.
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/adbyby
|
||||
$(INSTALL_BIN) ./files/adbyby.sh $(1)/usr/share/adbyby/
|
||||
$(INSTALL_BIN) ./files/adbybyfirst.sh $(1)/usr/share/adbyby/
|
||||
$(INSTALL_BIN) ./files/adbybyupdate.sh $(1)/usr/share/adbyby/
|
||||
$(INSTALL_CONF) ./files/adhook.ini $(1)/usr/share/adbyby/
|
||||
$(INSTALL_CONF) ./files/user.action $(1)/usr/share/adbyby/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/share/adbyby/data
|
||||
$(INSTALL_DATA) ./files/data/* $(1)/usr/share/adbyby/data/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/share/adbyby/doc
|
||||
$(INSTALL_DATA) ./files/doc/* $(1)/usr/share/adbyby/doc/
|
||||
|
||||
ifeq ($(ARCH),mipsel)
|
||||
$(INSTALL_BIN) ./files/7620n/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
ifeq ($(ARCH),mips)
|
||||
$(INSTALL_BIN) ./files/ar71xx/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
ifeq ($(ARCH),i386)
|
||||
$(INSTALL_BIN) ./files/x86/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
ifeq ($(ARCH),x86_64)
|
||||
$(INSTALL_BIN) ./files/x86_64/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
ifeq ($(ARCH),arm)
|
||||
$(INSTALL_BIN) ./files/arm/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
ifeq ($(ARCH),aarch64)
|
||||
$(INSTALL_BIN) ./files/armv7/adbyby $(1)/usr/share/adbyby/
|
||||
endif
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
BIN
package/lean/adbyby/files/7620n/adbyby
Executable file
BIN
package/lean/adbyby/files/7620n/adbyby
Executable file
Binary file not shown.
16
package/lean/adbyby/files/adbyby.sh
Executable file
16
package/lean/adbyby/files/adbyby.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
PROG_PATH=/usr/share/adbyby
|
||||
err=0
|
||||
until [ $err -ge 5 ]; do
|
||||
if [ -n "$(pgrep $PROG_PATH/adbyby)" ]; then
|
||||
iptables-save | grep ADBYBY >/dev/null || \
|
||||
/etc/init.d/adbyby add_rule
|
||||
sleep 10
|
||||
err=0
|
||||
else
|
||||
$PROG_PATH/adbyby --no-daemon &>/dev/null &
|
||||
sleep 1
|
||||
err=$((err+1))
|
||||
fi
|
||||
done
|
||||
/etc/init.d/adbyby del_rule
|
11
package/lean/adbyby/files/adbybyfirst.sh
Executable file
11
package/lean/adbyby/files/adbybyfirst.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
PROG_PATH=/usr/share/adbyby
|
||||
if [ -z "$(dnsmasq --version | grep no-ipset)" ]; then
|
||||
[ $(uci get adbyby.@adbyby[-1].wan_mode) -ne 2 ] && \
|
||||
[ $(awk -F= '/^ipset/{print $2}' $PROG_PATH/adhook.ini) -eq 1 ] && \
|
||||
{
|
||||
sed -i 's/adbyby_list/adbyby_wan/' /tmp/adbyby_host.conf
|
||||
echo conf-file=/tmp/adbyby_host.conf >> /etc/dnsmasq.conf
|
||||
/etc/init.d/dnsmasq restart
|
||||
}
|
||||
fi
|
11
package/lean/adbyby/files/adbybyupdate.sh
Executable file
11
package/lean/adbyby/files/adbybyupdate.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
PROG_PATH=/usr/share/adbyby
|
||||
if [ -z "$(dnsmasq --version | grep no-ipset)" ]; then
|
||||
[ $(uci get adbyby.@adbyby[-1].wan_mode) -ne 2 ] && \
|
||||
[ $(awk -F= '/^ipset/{print $2}' $PROG_PATH/adhook.ini) -eq 1 ] && \
|
||||
{
|
||||
sed -i 's/adbyby_list/adbyby_wan/' /tmp/adbyby_host.conf
|
||||
ipset -F adbyby_wan 2>/dev/null
|
||||
/etc/init.d/dnsmasq restart
|
||||
}
|
||||
fi
|
14
package/lean/adbyby/files/adhook.ini
Normal file
14
package/lean/adbyby/files/adhook.ini
Normal file
@ -0,0 +1,14 @@
|
||||
[cfg]
|
||||
### 2.1 ###
|
||||
listen-address=0.0.0.0:8118
|
||||
buffer-limit=1024
|
||||
keep-alive-timeout=30
|
||||
socket-timeout=60
|
||||
### 2.5 ###
|
||||
max_client_connections=0
|
||||
### 2.6 ###
|
||||
stack_size=200
|
||||
auto_restart=0
|
||||
### 2.7 ###
|
||||
debug=0
|
||||
ipset=0
|
BIN
package/lean/adbyby/files/ar71xx/adbyby
Executable file
BIN
package/lean/adbyby/files/ar71xx/adbyby
Executable file
Binary file not shown.
BIN
package/lean/adbyby/files/arm/adbyby
Executable file
BIN
package/lean/adbyby/files/arm/adbyby
Executable file
Binary file not shown.
BIN
package/lean/adbyby/files/armv7/adbyby
Executable file
BIN
package/lean/adbyby/files/armv7/adbyby
Executable file
Binary file not shown.
121
package/lean/adbyby/files/data/adclear.ini
Normal file
121
package/lean/adbyby/files/data/adclear.ini
Normal file
@ -0,0 +1,121 @@
|
||||
//IE6、7、8、9, from adsafe
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.html
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.js
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.htm
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.xml
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.css
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.swf
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.flv
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\*.mp4
|
||||
%USERPROFILE%\Local Settings\Temporary Internet Files\Content.IE5\*.*
|
||||
%USERPROFILE%\AppData\Local\Microsoft\Windows\Temporary Internet Files\*.*
|
||||
%USERPROFILE%\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\*.*
|
||||
|
||||
//360安全浏览器
|
||||
%USERPROFILE%\Application Data\360se\ie8data\Temporary Internet Files\*.*
|
||||
|
||||
//chrome
|
||||
%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Cache\*.*
|
||||
|
||||
//360极速浏览器
|
||||
%USERPROFILE%\Local Settings\Application Data\360Chrome\Chrome\User Data\Default\CacheIE\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\360Chrome\Chrome\User Data\Default\Cache\*.*
|
||||
%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Cache\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\360Chrome\Chrome\User Data\Default\CacheIE\Content.IE5\*.*
|
||||
|
||||
//搜狗浏览器
|
||||
%USERPROFILE%\Application Data\SogouExplorer\Webkit\Default\Cache\*.*
|
||||
%USERPROFILE%\AppData\Roaming\SogouExplorer\Webkit\Default\Cache\*.*
|
||||
|
||||
//opera浏览器
|
||||
%USERPROFILE%\AppData\Local\Opera\Opera\cache\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\Opera\Opera\cache\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\Opera\Opera\application_cache\mcache\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\Opera\Opera\application_cache\cache_groups.xml
|
||||
%USERPROFILE%\Local Settings\Application Data\Opera\Opera\opcache\*.*
|
||||
|
||||
//淘宝浏览器
|
||||
%USERPROFILE%\AppData\Local\TaoBrowser\User Data\Default\Cache\*.*
|
||||
%USERPROFILE%\AppData\Local\TaoBrowser\User Data\Default\JumpListIcons\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\TaoBrowser\User Data\Default\Cache\*.*
|
||||
|
||||
//百度浏览器
|
||||
%USERPROFILE%\Application Data\Baidu\browser\DiskCache\*.*
|
||||
%USERPROFILE%\AppData\Roaming\Baidu\browser\DiskCache\*.*
|
||||
|
||||
//猎豹浏览器
|
||||
%USERPROFILE%\Local Settings\Application Data\liebao\User Data\Default\Cache\*.*
|
||||
%USERPROFILE%\Local Settings\Application Data\liebao\User Data\iecache\Content.IE5\*.*
|
||||
%USERPROFILE%\AppData\Local\liebao\User Data\Default\Cache\*.*
|
||||
%USERPROFILE%\AppData\Local\liebao\User Data\Default\JumpListIcons\*.*
|
||||
|
||||
//Letv
|
||||
%USERPROFILE%\Application Data\Letv\Logg\*.log
|
||||
|
||||
//PPSStream
|
||||
%APPDATA%\PPStream\adsys\*.*
|
||||
%APPDATA%\PPStream\banner\*.*
|
||||
%APPDATA%\PPStream\notice\*.*
|
||||
%APPDATA%\PPStream\CLCache\*.pld
|
||||
%APPDATA%\PPStream\FDSCache\*.blf
|
||||
|
||||
//PPTV
|
||||
%APPDATA%\PPLive\PPTV\cache\*.*
|
||||
|
||||
//风行
|
||||
%USERPROFILE%\funshion\cache\*.*
|
||||
|
||||
|
||||
//youku
|
||||
-s%appdata%\Macromedia\Flash Player\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
-s%APPDATA%\Roaming\Macromedia\Flash Player\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
|
||||
|
||||
//letv
|
||||
-s%appdata%\Macromedia\Flash Player\#SharedObjects\com.letv.sol
|
||||
|
||||
//iqiyi
|
||||
-s%appdata%\Macromedia\Flash Player\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
//chrome YOUKU
|
||||
-s%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
|
||||
//chrome LeTv
|
||||
-s%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\com.letv.sol
|
||||
|
||||
//chrome iqiyi
|
||||
-s%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
//360 youku
|
||||
-s%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
|
||||
//360 letv
|
||||
-s%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\com.letv.sol
|
||||
|
||||
//360 iqiyi
|
||||
-s%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
|
||||
//暴风影音5
|
||||
%ALLUSERSPROFILE%\Baofeng\StormPlayer\Profiles\md\*.*
|
||||
%ALLUSERSPROFILE%\Baofeng\StormPlayer\Profiles\vod\*.*
|
||||
%ALLUSERSPROFILE%\Application Data\Baofeng\StormPlayer\Profiles\md\*.*
|
||||
%ALLUSERSPROFILE%\Application Data\Baofeng\StormPlayer\Profiles\vod\*.*
|
||||
%ALLUSERSPROFILE%\Baofeng\Application Data\StormPlayer\Profiles\md\*.*
|
||||
%ALLUSERSPROFILE%\Baofeng\Application Data\StormPlayer\Profiles\vod\*.*
|
||||
|
||||
//pptv
|
||||
%ALLUSERSPROFILE%\PPLive\PPTV\Cache\pluginad\*.*
|
||||
%ALLUSERSPROFILE%\Application Data\PPLive\PPTV\Cache\pluginad\*.*
|
||||
%ALLUSERSPROFILE%\Application Data\PPLive\PPTV\screensaver\*.*
|
||||
|
||||
|
||||
//多米
|
||||
C:\Program Files\DuoMi\dmdeskinfo.exe
|
||||
|
||||
//UUSEE
|
||||
%TEMP%\UUFile\*.*
|
||||
|
||||
//iqiyi
|
||||
%ALLUSERSPROFILE%\Application Data\Qiyi\qiyiclient\cache\*.*
|
||||
|
43
package/lean/adbyby/files/data/clean.ini
Normal file
43
package/lean/adbyby/files/data/clean.ini
Normal file
@ -0,0 +1,43 @@
|
||||
//youku
|
||||
-y%appdata%\Macromedia\Flash Player\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
//youku win7
|
||||
-y%APPDATA%\Roaming\Macromedia\Flash Player\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
//chrome YOUKU
|
||||
-y%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
//360 youku
|
||||
-y%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
//sougou youku
|
||||
-y%appdata%\SogouExplorer\Webkit\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
|
||||
-y%userprofile%\Local Settings\Application Data\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
-y%userprofile%\Local Settings\Application Data\UCBrowser\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
-y%userprofile%\Local Settings\Application Data\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\YOUKU_FSO_PROXY.sol
|
||||
|
||||
//qq
|
||||
%appdata%\Tencent\QQ\Misc\com.tencent.advertisement\*.*
|
||||
%appdata%\Tencent\QQ\Misc\com.tencent.advertisement\GDT_0\*.*
|
||||
|
||||
//letv
|
||||
-s%appdata%\Macromedia\Flash Player\#SharedObjects\com.letv.sol
|
||||
|
||||
//letv1
|
||||
-s%APPDATA%\Roaming\Macromedia\Flash Player\#SharedObjects\com.letv.sol
|
||||
|
||||
//iqiyi
|
||||
-s%appdata%\Macromedia\Flash Player\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
//iqiyi1
|
||||
-s%APPDATA%\Roaming\Macromedia\Flash Player\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
|
||||
//chrome LeTv
|
||||
-s%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\com.letv.sol
|
||||
|
||||
//chrome iqiyi
|
||||
-s%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\qiyi_statistics.sol
|
||||
|
||||
//360 letv
|
||||
-s%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\com.letv.sol
|
||||
|
||||
//360 iqiyi
|
||||
-s%USERPROFILE%\AppData\Local\360Chrome\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\qiyi_statistics.sol
|
BIN
package/lean/adbyby/files/data/lazy.bin
Normal file
BIN
package/lean/adbyby/files/data/lazy.bin
Normal file
Binary file not shown.
11022
package/lean/adbyby/files/data/lazy.txt
Normal file
11022
package/lean/adbyby/files/data/lazy.txt
Normal file
File diff suppressed because it is too large
Load Diff
15
package/lean/adbyby/files/data/rules.txt
Normal file
15
package/lean/adbyby/files/data/rules.txt
Normal file
@ -0,0 +1,15 @@
|
||||
! ------------------------------ ADByby 自定义过滤语法简表---------------------------------
|
||||
! -------------- 规则基于abp规则,并进行了字符替换部分的扩展-----------------------------
|
||||
! ABP规则请参考https://adblockplus.org/zh_CN/filters,下面为大致摘要
|
||||
! "!" 为行注释符,注释行以该符号起始作为一行注释语义,用于规则描述
|
||||
! "*" 为字符通配符,能够匹配0长度或任意长度的字符串,该通配符不能与正则语法混用。
|
||||
! "^" 为分隔符,可以是除了字母、数字或者 _ - . % 之外的任何字符。
|
||||
! "|" 为管线符号,来表示地址的最前端或最末端
|
||||
! "||" 为子域通配符,方便匹配主域名下的所有子域。
|
||||
! "~" 为排除标识符,通配符能过滤大多数广告,但同时存在误杀, 可以通过排除标识符修正误杀链接。
|
||||
! "##" 为元素选择器标识符,后面跟需要隐藏元素的CSS样式例如 #ad_id .ad_class
|
||||
!! 元素隐藏暂不支持全局规则和排除规则
|
||||
!! 字符替换扩展
|
||||
! 文本替换选择器标识符,后面跟需要替换的文本数据,格式:$s@模式字符串@替换后的文本@
|
||||
! 支持通配符*和?
|
||||
! -------------------------------------------------------------------------------------------
|
0
package/lean/adbyby/files/data/user.txt
Normal file
0
package/lean/adbyby/files/data/user.txt
Normal file
23
package/lean/adbyby/files/data/video.txt
Normal file
23
package/lean/adbyby/files/data/video.txt
Normal file
@ -0,0 +1,23 @@
|
||||
! -----更新时间: 2018-06-13 22:56:37 by:xwhyc-----------------------------------------------
|
||||
! -----广告反馈:http://www.adbyby.com/help.htm QQ群: 79547134(满), 364066294(满),470705224,534897434,438394572--------------
|
||||
|
||||
|
||||
!-------------------------------------------
|
||||
twmeiju.com##iframe[width="336"]
|
||||
txzqw##.ad-text,.tac,#banner,[id^="ads_"]
|
||||
|http://*.com/logo/ad.js
|
||||
|http://*.com/logo/logo.js
|
||||
|http://*.com/logo/logoxia.js
|
||||
|http://*.com/logo/playjs.js
|
||||
|http://m.haxdu.com/hi18/$script
|
||||
|http://www.hqck.net/templets/default/js/ntes_jslib_1.x.js
|
||||
||51wady.com/me.php?id=
|
||||
||haxwx3.com/web/js/$script
|
||||
||jiawen88.com
|
||||
!-----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
!---------adbyby---------
|
||||
|
1
package/lean/adbyby/files/doc/hidecss.js
Normal file
1
package/lean/adbyby/files/doc/hidecss.js
Normal file
File diff suppressed because one or more lines are too long
10
package/lean/adbyby/files/update.info
Normal file
10
package/lean/adbyby/files/update.info
Normal file
@ -0,0 +1,10 @@
|
||||
;¸üйæÔòurl,dir,size,reverse,reverse
|
||||
http://update.adbyby.com/rule3/lazy.jpg \data\lazy.txt 385337 4 0
|
||||
http://update.adbyby.com/rule3/video.jpg \data\video.txt 1028 4 0
|
||||
http://update.adbyby.com/rule3/user.action \user.action 512 5 0
|
||||
http://update.adbyby.com/rule3/clean.ini \data\clean.ini 2167 0 0
|
||||
http://update.adbyby.com/rule3/adclear.ini \data\adclear.ini 4901 0 0
|
||||
https://github.com/gchangchen/suho/raw/master/adhook.dll \adhook.dll 117248 0 0 2.4.3.2
|
||||
https://github.com/gchangchen/suho/raw/master/adhook64.dll \adhook64.dll 142848 0 0 2.4.3.2
|
||||
https://github.com/gchangchen/suho/raw/master/adbyby.exe \adbyby.exe 1004183 1 0 2.4.4.0
|
||||
|
9
package/lean/adbyby/files/user.action
Normal file
9
package/lean/adbyby/files/user.action
Normal file
@ -0,0 +1,9 @@
|
||||
{+fast-redirects{s@&plid=\d+&uid=@&plid=7038006&uid=@} }
|
||||
hot.vrs.sohu.com/vrs_flash.action\?vid=
|
||||
{+fast-redirects{s@/Main.swf\?(?!plid)@/Main.swf?plid=7038006&@} }
|
||||
tv.sohu.com/upload/swf/201.*?/Main.swf\?
|
||||
{+fast-redirects{s@http://tv.sohu.com/upload/swf/.*?/PlayerShell.swf@http://update.adbyby.com/swf/sohu_livezb.swf@} }
|
||||
tv.sohu.com/upload/swf/.*?/PlayerShell.swf\?
|
||||
{+fast-redirects{s@pl.youku.com/playlist/m3u8\?keyframe=0&.*@update.adbyby.com/youku.m3u8@} }
|
||||
pl.youku.com/playlist/m3u8\?keyframe=0&
|
||||
|
BIN
package/lean/adbyby/files/x86/adbyby
Executable file
BIN
package/lean/adbyby/files/x86/adbyby
Executable file
Binary file not shown.
BIN
package/lean/adbyby/files/x86_64/adbyby
Executable file
BIN
package/lean/adbyby/files/x86_64/adbyby
Executable file
Binary file not shown.
18
package/lean/luci-app-adbyby-plus/Makefile
Normal file
18
package/lean/luci-app-adbyby-plus/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
# Copyright (C) 2016 Openwrt.org
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI support for Adbyby
|
||||
LUCI_DEPENDS:=+adbyby +wget +ipset +coreutils +coreutils-nohup +dnsmasq-full
|
||||
LUCI_PKGARCH:=all
|
||||
PKG_NAME:=luci-app-adbyby-plus
|
||||
PKG_VERSION:=2.0
|
||||
PKG_RELEASE:=30
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
|
@ -0,0 +1,18 @@
|
||||
|
||||
module("luci.controller.adbyby", package.seeall)
|
||||
|
||||
function index()
|
||||
if not nixio.fs.access("/etc/config/adbyby") then
|
||||
return
|
||||
end
|
||||
|
||||
entry({"admin", "services", "adbyby"}, cbi("adbyby"), _("ADBYBY Plus +"), 10).dependent = true
|
||||
entry({"admin","services","adbyby","status"},call("act_status")).leaf=true
|
||||
end
|
||||
|
||||
function act_status()
|
||||
local e={}
|
||||
e.running=luci.sys.call("pgrep adbyby >/dev/null")==0
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(e)
|
||||
end
|
178
package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby.lua
Normal file
178
package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby.lua
Normal file
@ -0,0 +1,178 @@
|
||||
|
||||
local NXFS = require "nixio.fs"
|
||||
local SYS = require "luci.sys"
|
||||
local HTTP = require "luci.http"
|
||||
local DISP = require "luci.dispatcher"
|
||||
|
||||
m = Map("adbyby")
|
||||
m.title = translate("Adbyby Plus +")
|
||||
m.description = translate("Adbyby Plus + can filter all kinds of banners, popups, video ads, and prevent tracking, privacy theft and a variety of malicious websites<br /><font color=\"red\">Plus + version combination mode can operation with Adblock Plus Host,filtering ads without losing bandwidth</font>")
|
||||
|
||||
m:section(SimpleSection).template = "adbyby/adbyby_status"
|
||||
|
||||
s = m:section(TypedSection, "adbyby")
|
||||
s.anonymous = true
|
||||
|
||||
s:tab("basic", translate("Base Setting"))
|
||||
|
||||
o = s:taboption("basic", Flag, "enable")
|
||||
o.title = translate("Enable")
|
||||
o.default = 0
|
||||
o.rmempty = false
|
||||
|
||||
o = s:taboption("basic", ListValue, "wan_mode")
|
||||
o.title = translate("Running Mode")
|
||||
o:value("0", translate("Global Mode(The slowest, the best effects)"))
|
||||
o:value("1", translate("Plus + Mode(Filter domain name list and blacklist website.Recommended)"))
|
||||
o:value("2", translate("No filter Mode (Must set in Client Filter Mode Settings manually)"))
|
||||
o.default = 1
|
||||
o.rmempty = false
|
||||
|
||||
mem = s:taboption("basic", Flag, "mem_mode")
|
||||
mem.title = translate("RAM Running Mode")
|
||||
mem.default = 1
|
||||
mem.rmempty = false
|
||||
mem.description = translate("Running Adbyby in RAM.More speed,less disk consumption")
|
||||
|
||||
local DL = SYS.exec("head -1 /usr/share/adbyby/data/lazy.txt | awk -F' ' '{print $3,$4}'")
|
||||
local DV = SYS.exec("head -1 /usr/share/adbyby/data/video.txt | awk -F' ' '{print $3,$4}'")
|
||||
local NR = SYS.exec("grep -v '^!' /usr/share/adbyby/data/rules.txt | wc -l")
|
||||
local NU = SYS.exec("cat /usr/share/adbyby/data/user.txt | wc -l")
|
||||
--local NW = SYS.exec("uci get adbyby.@adbyby[-1].domain 2>/dev/null | wc -l")
|
||||
local ND = SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l")
|
||||
|
||||
o = s:taboption("basic", Button, "restart")
|
||||
o.title = translate("Adbyby and Rule state")
|
||||
o.inputtitle = translate("Restart Adbyby")
|
||||
o.description = translate(string.format("<strong>Lazy Rule:</strong>%s <strong> Video Rule:</strong>%s<br /><strong>Third Party Subscription Rule:</strong>%d lines <strong>User-defined Rule:</strong>%d lines", DL, DV, math.abs(NR-NU), NR))
|
||||
o.inputstyle = "reload"
|
||||
o.write = function()
|
||||
SYS.call("nohup sh /usr/share/adbyby/adupdate.sh > /tmp/adupdate.log 2>&1 &")
|
||||
SYS.call("sleep 4")
|
||||
HTTP.redirect(DISP.build_url("admin", "services", "adbyby"))
|
||||
end
|
||||
|
||||
s:tab("advanced", translate("Advance Setting"))
|
||||
|
||||
o = s:taboption("advanced", Flag, "cron_mode")
|
||||
o.title = translate("Update the rule at 6 a.m. every morning and restart adbyby")
|
||||
o.default = 0
|
||||
o.rmempty = false
|
||||
o.description = translate(string.format("<strong><font color=blue>Adblock Plus Host List:</font></strong> %s Lines<br /><br />", ND))
|
||||
|
||||
updatead = s:taboption("advanced", Button, "updatead", translate("Manually force update<br />Adblock Plus Host List"), translate("Note: It needs to download and convert the rules. The background process may takes 60-120 seconds to run. <br / > After completed it would automatically refresh, please do not duplicate click!"))
|
||||
updatead.inputtitle = translate("Manually force update")
|
||||
updatead.inputstyle = "apply"
|
||||
updatead.write = function()
|
||||
SYS.call("nohup sh /usr/share/adbyby/adblock.sh > /tmp/adupdate.log 2>&1 &")
|
||||
end
|
||||
|
||||
o = s:taboption("advanced", Flag, "update_source")
|
||||
o.title = translate("Update adbyby rules form official website first")
|
||||
o.default = 1
|
||||
o.rmempty = false
|
||||
|
||||
o = s:taboption("advanced", Flag, "block_ios")
|
||||
o.title = translate("Block Apple iOS OTA update")
|
||||
o.default = 0
|
||||
o.rmempty = false
|
||||
|
||||
s:tab("help", translate("Plus+ Domain List"))
|
||||
|
||||
local conf = "/usr/share/adbyby/adhost.conf"
|
||||
o = s:taboption("help", TextValue, "conf")
|
||||
o.description = translate("(!)Note that you should fill to the domain name ONLY. For example, http://www.baidu.com only needs to write to baidu.com. One line for each")
|
||||
o.rows = 13
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return NXFS.readfile(conf) or ""
|
||||
end
|
||||
o.write = function(self, section, value)
|
||||
NXFS.writefile(conf, value:gsub("\r\n", "\n"))
|
||||
--SYS.call("/etc/init.d/adbyby restart")
|
||||
end
|
||||
|
||||
s:tab("esc", translate("Bypass Domain List"))
|
||||
|
||||
local escconf = "/usr/share/adbyby/adesc.conf"
|
||||
o = s:taboption("esc", TextValue, "escconf")
|
||||
o.description = translate("(!)Will Never filter these Domain")
|
||||
o.rows = 13
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return NXFS.readfile(escconf) or ""
|
||||
end
|
||||
o.write = function(self, section, value)
|
||||
NXFS.writefile(escconf, value:gsub("\r\n", "\n"))
|
||||
--SYS.call("/etc/init.d/adbyby restart")
|
||||
end
|
||||
|
||||
s:tab("black", translate("Black Domain List"))
|
||||
|
||||
local blackconf = "/usr/share/adbyby/adblack.conf"
|
||||
o = s:taboption("black", TextValue, "blackconf")
|
||||
o.description = translate("(!)Will Always block these Domain")
|
||||
o.rows = 13
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return NXFS.readfile(blackconf) or ""
|
||||
end
|
||||
o.write = function(self, section, value)
|
||||
NXFS.writefile(blackconf, value:gsub("\r\n", "\n"))
|
||||
--SYS.call("/etc/init.d/adbyby restart")
|
||||
end
|
||||
|
||||
s:tab("block", translate("Black IP List"))
|
||||
|
||||
local blockconf = "/usr/share/adbyby/blockip.conf"
|
||||
o = s:taboption("block", TextValue, "blockconf")
|
||||
o.description = translate("(!)Will Always block these IP")
|
||||
o.rows = 13
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return NXFS.readfile(blockconf) or " "
|
||||
end
|
||||
o.write = function(self, section, value)
|
||||
NXFS.writefile(blockconf, value:gsub("\r\n", "\n"))
|
||||
--SYS.call("/etc/init.d/adbyby restart")
|
||||
end
|
||||
|
||||
s:tab("user", translate("User-defined Rule"))
|
||||
|
||||
local file = "/usr/share/adbyby/rules.txt"
|
||||
o = s:taboption("user", TextValue, "rules")
|
||||
o.description = translate("Each line of the beginning exclamation mark is considered an annotation.")
|
||||
o.rows = 13
|
||||
o.wrap = "off"
|
||||
o.cfgvalue = function(self, section)
|
||||
return NXFS.readfile(file) or ""
|
||||
end
|
||||
o.write = function(self, section, value)
|
||||
NXFS.writefile(file, value:gsub("\r\n", "\n"))
|
||||
end
|
||||
|
||||
t=m:section(TypedSection,"acl_rule",translate("<strong>Client Filter Mode Settings</strong>"),
|
||||
translate("Filter mode settings can be set to specific LAN clients ( <font color=blue> No filter , Global filter </font> ) . Does not need to be set by default."))
|
||||
t.template="cbi/tblsection"
|
||||
t.sortable=true
|
||||
t.anonymous=true
|
||||
t.addremove=true
|
||||
|
||||
e=t:option(Value,"ipaddr",translate("IP Address"))
|
||||
e.width="40%"
|
||||
e.datatype="ip4addr"
|
||||
e.placeholder="0.0.0.0/0"
|
||||
luci.ip.neighbors({ family = 4 }, function(entry)
|
||||
if entry.reachable then
|
||||
e:value(entry.dest:string())
|
||||
end
|
||||
end)
|
||||
|
||||
e=t:option(ListValue,"filter_mode",translate("Filter Mode"))
|
||||
e.width="40%"
|
||||
e.default="disable"
|
||||
e.rmempty=false
|
||||
e:value("disable",translate("No filter"))
|
||||
e:value("global",translate("Global filter"))
|
||||
|
||||
return m
|
@ -0,0 +1,22 @@
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
XHR.poll(3, '<%=url([[admin]], [[services]], [[adbyby]], [[status]])%>', null,
|
||||
function(x, data) {
|
||||
var tb = document.getElementById('adbyby_status');
|
||||
if (data && tb) {
|
||||
if (data.running) {
|
||||
var links = '<em><b><font color=green>Adbyby Plus+ <%:RUNNING%></font></b></em>';
|
||||
tb.innerHTML = links;
|
||||
} else {
|
||||
tb.innerHTML = '<em><b><font color=red>Adbyby Plus+ <%:NOT RUNNING%></font></b></em>';
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
//]]>
|
||||
</script>
|
||||
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
|
||||
<fieldset class="cbi-section">
|
||||
<p id="adbyby_status">
|
||||
<em><%:Collecting data...%></em>
|
||||
</p>
|
||||
</fieldset>
|
125
package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po
Normal file
125
package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po
Normal file
@ -0,0 +1,125 @@
|
||||
msgid "ADBYBY Plus +"
|
||||
msgstr "广告屏蔽大师 Plus+"
|
||||
|
||||
msgid "<strong><font color=\"green\">Adbyby Plus + is Running</font></strong>"
|
||||
msgstr "<strong><font color=\"green\">广告屏蔽大师 Plus + 正在运行</font></strong>"
|
||||
|
||||
msgid "<strong><font color=\"red\">Adbyby Plus + is Not Running</font></strong>"
|
||||
msgstr "<strong><font color=\"red\">广告屏蔽大师 Plus + 没有运行</font></strong>"
|
||||
|
||||
msgid "Adbyby Plus + can filter all kinds of banners, popups, video ads, and prevent tracking, privacy theft and a variety of malicious websites<br /><font color=\"red\">Plus + version combination mode can operation with Adblock Plus Host,filtering ads without losing bandwidth</font>"
|
||||
msgstr "广告屏蔽大师 Plus + 可以全面过滤各种横幅、弹窗、视频广告,同时阻止跟踪、隐私窃取及各种恶意网站<br /><font color=\"red\">Plus + 版本可以和 Adblock Plus Host 结合方式运行,过滤广告不损失带宽</font>"
|
||||
|
||||
msgid "Adbyby Plus +"
|
||||
msgstr "广告屏蔽大师 Plus+"
|
||||
|
||||
msgid "Base Setting"
|
||||
msgstr "基本设置"
|
||||
|
||||
msgid "Running Mode"
|
||||
msgstr "运行模式"
|
||||
|
||||
msgid "Global Mode(The slowest, the best effects)"
|
||||
msgstr "全局模式(最慢, 效果最好)"
|
||||
|
||||
msgid "Plus + Mode(Filter domain name list and blacklist website.Recommended)"
|
||||
msgstr "Plus + 模式(只过滤列表内域名结合ABP名单。推荐!)"
|
||||
|
||||
msgid "No filter Mode (Must set in Client Filter Mode Settings manually)"
|
||||
msgstr "手动代理模式(必须手动设置浏览器代理,或者客户端过滤模式设置)"
|
||||
|
||||
msgid "Transparent proxy"
|
||||
msgstr "透明代理"
|
||||
|
||||
msgid "Click to disable"
|
||||
msgstr "点击关闭"
|
||||
|
||||
msgid "Click to enable"
|
||||
msgstr "点击开启"
|
||||
|
||||
msgid "Adbyby and Rule state"
|
||||
msgstr "规则状态"
|
||||
|
||||
msgid "Restart Adbyby"
|
||||
msgstr "重启Adbyby"
|
||||
|
||||
msgid "Plus+ Domain List"
|
||||
msgstr "Plus+ 模式过滤的域名"
|
||||
|
||||
msgid "Bypass Domain List"
|
||||
msgstr "域名白名单"
|
||||
|
||||
msgid "Black Domain List"
|
||||
msgstr "域名黑名单"
|
||||
|
||||
msgid "Black IP List"
|
||||
msgstr "IP黑名单"
|
||||
|
||||
|
||||
msgid "Advance Setting"
|
||||
msgstr "高级设置"
|
||||
|
||||
msgid "Update the rule at 6 a.m. every morning and restart adbyby"
|
||||
msgstr "每天凌晨6点更新规则并重启"
|
||||
|
||||
msgid "Manually force update<br />Adblock Plus Host List"
|
||||
msgstr "手动强制更新<br />Adblock Plus Host List"
|
||||
|
||||
msgid "Manually force update"
|
||||
msgstr "手动强制更新"
|
||||
|
||||
msgid "Block Apple iOS OTA update"
|
||||
msgstr "拦截 Apple iOS 的OTA更新"
|
||||
|
||||
msgid "RAM Running Mode"
|
||||
msgstr "内存运行模式"
|
||||
|
||||
msgid "Running Adbyby in RAM.More speed,less disk consumption"
|
||||
msgstr "在内存中运行Adbyby。更快的速度,更少的存储空间损耗"
|
||||
|
||||
|
||||
msgid "User-defined Rule"
|
||||
msgstr "用户自定义规则"
|
||||
|
||||
msgid "<strong>Client Filter Mode Settings</strong>"
|
||||
msgstr "<strong>客户端过滤模式设置</strong>"
|
||||
|
||||
msgid "Filter mode settings can be set to specific LAN clients ( <font color=blue> No filter , Global filter </font> ) . Does not need to be set by default."
|
||||
msgstr "可以为局域网客户端分别设置不同的过滤模式 ( <font color=blue> 不过滤 , 全局过滤 </font> ) 。默认无需设置"
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr "IP地址"
|
||||
|
||||
msgid "Filter Mode"
|
||||
msgstr "过滤模式"
|
||||
|
||||
msgid "(!)Note that you should fill to the domain name ONLY. For example, http://www.baidu.com only needs to write to baidu.com. One line for each"
|
||||
msgstr "这些域名在 Plus 模式中会被过滤。你需要要填写域名即可,例如 http://www.baidu.com,你写 baidu.com 即可。每行一个域名"
|
||||
|
||||
msgid "(!)Will Never filter these Domain"
|
||||
msgstr "永不过滤白名单内的域名(所有模式中生效)"
|
||||
|
||||
msgid "(!)Will Always block these Domain"
|
||||
msgstr "拦截黑名单内的域名(所有模式中生效)"
|
||||
|
||||
msgid "(!)Will Always block these IP"
|
||||
msgstr "拦截黑名单内的IP地址(所有模式中生效)"
|
||||
|
||||
msgid "Each line of the beginning exclamation mark is considered an annotation."
|
||||
msgstr "每行一条规则,感叹号开头的被认为是注释"
|
||||
|
||||
msgid "<strong><font color=blue>Adblock Plus Host List:</font></strong>"
|
||||
msgstr "<strong><font color=blue>Adblock Plus Host 列表:</font></strong>"
|
||||
|
||||
msgid "Note: It needs to download and convert the rules. The background process may takes 60-120 seconds to run. <br / > After completed it would automatically refresh, please do not duplicate click!"
|
||||
msgstr "注意:需要下载并转换规则。后台进程可能需要60-120秒运行。完成后会自动刷新,请不要重复点击!"
|
||||
|
||||
msgid "No filter"
|
||||
msgstr "不过滤"
|
||||
|
||||
msgid "Global filter"
|
||||
msgstr "全局过滤"
|
||||
|
||||
msgid "Update adbyby rules form official website first"
|
||||
msgstr "优先从官方网站更新规则"
|
||||
|
11
package/lean/luci-app-adbyby-plus/root/etc/config/adbyby
Normal file
11
package/lean/luci-app-adbyby-plus/root/etc/config/adbyby
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
config adbyby
|
||||
option daemon '2'
|
||||
option lan_mode '0'
|
||||
option cron_mode '1'
|
||||
option block_ios '0'
|
||||
option enable '0'
|
||||
option wan_mode '1'
|
||||
option mem_mode '1'
|
||||
option update_source '1'
|
||||
|
218
package/lean/luci-app-adbyby-plus/root/etc/init.d/adbyby
Executable file
218
package/lean/luci-app-adbyby-plus/root/etc/init.d/adbyby
Executable file
@ -0,0 +1,218 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=99
|
||||
STOP=10
|
||||
|
||||
EXTRA_COMMANDS="add_rule del_rule reload_rule"
|
||||
PROG_PATH=/usr/share/adbyby
|
||||
DATA_PATH=$PROG_PATH/data
|
||||
WAN_FILE=/var/etc/dnsmasq-adbyby.d/03-adbyby-ipset.conf
|
||||
CRON_FILE=/etc/crontabs/root
|
||||
CONFIG=adbyby
|
||||
ipt_n="iptables -t nat"
|
||||
|
||||
|
||||
get_config()
|
||||
{
|
||||
config_get_bool enable $1 enable
|
||||
config_get_bool cron_mode $1 cron_mode
|
||||
config_get wan_mode $1 wan_mode
|
||||
config_get_bool block_ios $1 block_ios 0
|
||||
config_get_bool mem_mode $1 mem_mode 1
|
||||
}
|
||||
|
||||
add_rules()
|
||||
{
|
||||
rm -f $DATA_PATH/user.bin
|
||||
grep -v ^! $PROG_PATH/rules.txt > $DATA_PATH/user.txt
|
||||
cp $PROG_PATH/rules.txt $DATA_PATH/rules.txt
|
||||
}
|
||||
|
||||
|
||||
add_cron()
|
||||
{
|
||||
if [ $cron_mode -eq 1 ]; then
|
||||
sed -i '/adblock.sh/d' $CRON_FILE
|
||||
echo '0 6 * * * /usr/share/adbyby/adblock.sh > /tmp/adupdate.log 2>&1' >> $CRON_FILE
|
||||
crontab $CRON_FILE
|
||||
fi
|
||||
}
|
||||
|
||||
del_cron()
|
||||
{
|
||||
sed -i '/adblock.sh/d' $CRON_FILE
|
||||
/etc/init.d/cron restart
|
||||
}
|
||||
|
||||
ip_rule()
|
||||
{
|
||||
|
||||
ipset -N adbyby_esc hash:ip
|
||||
$ipt_n -A ADBYBY -m set --match-set adbyby_esc dst -j RETURN
|
||||
|
||||
for i in $(seq 0 100)
|
||||
do
|
||||
local ip=$(uci_get_by_type acl_rule ipaddr '' $i)
|
||||
local mode=$(uci_get_by_type acl_rule filter_mode '' $i)
|
||||
case "$mode" in
|
||||
disable)
|
||||
$ipt_n -A ADBYBY -s $ip -j RETURN
|
||||
;;
|
||||
global)
|
||||
$ipt_n -A ADBYBY -s $ip -p tcp -j REDIRECT --to-ports 8118
|
||||
$ipt_n -A ADBYBY -s $ip -j RETURN
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
||||
|
||||
case $wan_mode in
|
||||
0)
|
||||
;;
|
||||
1)
|
||||
ipset -N adbyby_wan hash:ip
|
||||
$ipt_n -A ADBYBY -m set ! --match-set adbyby_wan dst -j RETURN
|
||||
;;
|
||||
2)
|
||||
$ipt_n -I ADBYBY -j RETURN
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "create blockip hash:net family inet hashsize 1024 maxelem 65536" > /tmp/blockip.ipset
|
||||
awk '!/^$/&&!/^#/{printf("add blockip %s'" "'\n",$0)}' /usr/share/adbyby/blockip.conf >> /tmp/blockip.ipset
|
||||
ipset -! restore < /tmp/blockip.ipset 2>/dev/null
|
||||
iptables -I FORWARD -m set --match-set blockip dst -j DROP
|
||||
iptables -I OUTPUT -m set --match-set blockip dst -j DROP
|
||||
}
|
||||
|
||||
add_dns()
|
||||
{
|
||||
mkdir -p /var/etc/dnsmasq-adbyby.d
|
||||
mkdir -p /tmp/dnsmasq.d
|
||||
awk '!/^$/&&!/^#/{printf("ipset=/%s/'"adbyby_esc"'\n",$0)}' $PROG_PATH/adesc.conf > /var/etc/dnsmasq-adbyby.d/06-dnsmasq.esc
|
||||
awk '!/^$/&&!/^#/{printf("address=/%s/'"0.0.0.0"'\n",$0)}' $PROG_PATH/adblack.conf > /var/etc/dnsmasq-adbyby.d/07-dnsmasq.black
|
||||
cat > /tmp/dnsmasq.d/dnsmasq-adbyby.conf <<EOF
|
||||
conf-dir=/var/etc/dnsmasq-adbyby.d
|
||||
EOF
|
||||
|
||||
local var=1
|
||||
if [ $wan_mode -eq 1 ]; then
|
||||
awk '!/^$/&&!/^#/{printf("ipset=/%s/'"adbyby_wan"'\n",$0)}' $PROG_PATH/adhost.conf > $WAN_FILE
|
||||
if ls /var/etc/dnsmasq-adbyby.d/* >/dev/null 2>&1; then
|
||||
mkdir -p /tmp/dnsmasq.d
|
||||
cp /usr/share/adbyby/dnsmasq.adblock /var/etc/dnsmasq-adbyby.d/04-dnsmasq.adblock
|
||||
cp /usr/share/adbyby/dnsmasq.ads /var/etc/dnsmasq-adbyby.d/05-dnsmasq.ads
|
||||
fi
|
||||
fi
|
||||
|
||||
sed -i '/mesu.apple.com/d' /etc/dnsmasq.conf && [ $block_ios -eq 1 ] && echo 'address=/mesu.apple.com/0.0.0.0' >> /etc/dnsmasq.conf
|
||||
}
|
||||
|
||||
del_dns()
|
||||
{
|
||||
rm -f /tmp/dnsmasq.d/dnsmasq-adbyby.conf
|
||||
rm -f /var/etc/dnsmasq-adbyby.d/*
|
||||
rm -f /tmp/adbyby_host.conf
|
||||
}
|
||||
|
||||
|
||||
add_rule()
|
||||
{
|
||||
$ipt_n -N ADBYBY
|
||||
$ipt_n -A ADBYBY -d 0.0.0.0/8 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 10.0.0.0/8 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 127.0.0.0/8 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 169.254.0.0/16 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 172.16.0.0/12 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 192.168.0.0/16 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 224.0.0.0/4 -j RETURN
|
||||
$ipt_n -A ADBYBY -d 240.0.0.0/4 -j RETURN
|
||||
ip_rule
|
||||
$ipt_n -A ADBYBY -p tcp -j REDIRECT --to-ports 8118
|
||||
$ipt_n -I PREROUTING -p tcp --dport 80 -j ADBYBY
|
||||
}
|
||||
|
||||
del_rule()
|
||||
{
|
||||
$ipt_n -D PREROUTING -p tcp --dport 80 -j ADBYBY 2>/dev/null
|
||||
$ipt_n -F ADBYBY 2>/dev/null
|
||||
$ipt_n -X ADBYBY 2>/dev/null
|
||||
iptables -D FORWARD -m set --match-set blockip dst -j DROP 2>/dev/null
|
||||
iptables -D OUTPUT -m set --match-set blockip dst -j DROP 2>/dev/null
|
||||
ipset -F adbyby_esc 2>/dev/null
|
||||
ipset -X adbyby_esc 2>/dev/null
|
||||
ipset -F adbyby_wan 2>/dev/null
|
||||
ipset -X adbyby_wan 2>/dev/null
|
||||
ipset -F blockip 2>/dev/null
|
||||
ipset -X blockip 2>/dev/null
|
||||
}
|
||||
|
||||
reload_rule()
|
||||
{
|
||||
config_load adbyby
|
||||
config_foreach get_config adbyby
|
||||
del_rule
|
||||
iptables-save | grep ADBYBY >/dev/null || \
|
||||
add_rule
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
config_load adbyby
|
||||
config_foreach get_config adbyby
|
||||
[ $enable -eq 0 ] && exit 0
|
||||
add_cron
|
||||
if [ $mem_mode -eq 1 ]; then
|
||||
echo "start mem mode"
|
||||
if mount | grep adbyby >/dev/null 2>&1; then
|
||||
echo "has mount"
|
||||
else
|
||||
echo "mount adbyby"
|
||||
[ ! -d "/tmp/adbyby" ] && mkdir -p /tmp/adbyby && cp -a $PROG_PATH/data /tmp/adbyby/
|
||||
mount --bind /tmp/adbyby/data $PROG_PATH/data
|
||||
fi
|
||||
fi
|
||||
echo "add adbyby rules"
|
||||
add_rules
|
||||
$PROG_PATH/adbyby &>/dev/null &
|
||||
add_dns
|
||||
iptables-save | grep ADBYBY >/dev/null || \
|
||||
add_rule
|
||||
/etc/init.d/dnsmasq restart
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
config_load adbyby
|
||||
config_foreach get_config adbyby
|
||||
del_rule
|
||||
del_cron
|
||||
del_dns
|
||||
killall -q adbyby
|
||||
if [ $mem_mode -eq 1 ]; then
|
||||
echo "stop mem mode"
|
||||
if mount | grep adbyby >/dev/null 2>&1; then
|
||||
echo "umount adbyby"
|
||||
umount /usr/share/adbyby/data
|
||||
fi
|
||||
fi
|
||||
/etc/init.d/dnsmasq restart
|
||||
}
|
||||
|
||||
|
||||
uci_get_by_name() {
|
||||
local ret=$(uci get $CONFIG.$1.$2 2>/dev/null)
|
||||
echo ${ret:=$3}
|
||||
}
|
||||
|
||||
uci_get_by_type() {
|
||||
local index=0
|
||||
if [ -n $4 ]; then
|
||||
|
||||
index=$4
|
||||
fi
|
||||
local ret=$(uci get $CONFIG.@$1[$index].$2 2>/dev/null)
|
||||
echo ${ret:=$3}
|
||||
}
|
||||
|
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
sleep 30 && sh /usr/share/adbyby/adupdate.sh
|
22
package/lean/luci-app-adbyby-plus/root/etc/uci-defaults/adbyby
Executable file
22
package/lean/luci-app-adbyby-plus/root/etc/uci-defaults/adbyby
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@adbyby[-1]
|
||||
add ucitrack adbyby
|
||||
set ucitrack.@adbyby[-1].init=adbyby
|
||||
commit ucitrack
|
||||
delete firewall.adbyby
|
||||
set firewall.adbyby=include
|
||||
set firewall.adbyby.type=script
|
||||
set firewall.adbyby.path=/usr/share/adbyby/firewall.include
|
||||
set firewall.adbyby.reload=1
|
||||
commit firewall
|
||||
EOF
|
||||
|
||||
mkdir -p /etc/dnsmasq.d
|
||||
|
||||
/etc/init.d/adbyby stop
|
||||
/etc/init.d/adbyby enable
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
@ -0,0 +1,14 @@
|
||||
gvod.aiseejapp.atianqi.com
|
||||
stat.pandora.xiaomi.com
|
||||
upgrade.mishop.pandora.xiaomi.com
|
||||
logonext.tv.kuyun.com
|
||||
config.kuyun.com
|
||||
mishop.pandora.xiaomi.com
|
||||
dvb.pandora.xiaomi.com
|
||||
api.ad.xiaomi.com
|
||||
de.pandora.xiaomi.com
|
||||
data.mistat.xiaomi.com
|
||||
jellyfish.pandora.xiaomi.com
|
||||
gallery.pandora.xiaomi.com
|
||||
o2o.api.xiaomi.com
|
||||
bss.pandora.xiaomi.com
|
17
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/adblock.sh
Executable file
17
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/adblock.sh
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -f /tmp/dnsmasq.adblock
|
||||
|
||||
wget-ssl --no-check-certificate -O- https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt | grep ^\|\|[^\*]*\^$ | sed -e 's:||:address\=\/:' -e 's:\^:/0\.0\.0\.0:' > /tmp/dnsmasq.adblock
|
||||
if [ -s "/tmp/dnsmasq.adblock" ];then
|
||||
sed -i '/youku.com/d' /tmp/dnsmasq.adblock
|
||||
if ( ! cmp -s /tmp/dnsmasq.adblock /usr/share/adbyby/dnsmasq.adblock );then
|
||||
mv /tmp/dnsmasq.adblock /usr/share/adbyby/dnsmasq.adblock
|
||||
fi
|
||||
fi
|
||||
|
||||
sh /usr/share/adbyby/adupdate.sh
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,3 @@
|
||||
weixin.qq.com
|
||||
qpic.cn
|
||||
imtt.qq.com
|
@ -0,0 +1,69 @@
|
||||
cbjs.baidu.com
|
||||
list.video.baidu.com
|
||||
nsclick.baidu.com
|
||||
play.baidu.com
|
||||
sclick.baidu.com
|
||||
tieba.baidu.com
|
||||
baidustatic.com
|
||||
bdimg.com
|
||||
bdstatic.com
|
||||
share.baidu.com
|
||||
hm.baidu.com
|
||||
v.baidu.com
|
||||
cpro.baidu.com
|
||||
1000fr.net
|
||||
atianqi.com
|
||||
56.com
|
||||
v-56.com
|
||||
acfun.com
|
||||
acfun.tv
|
||||
baofeng.com
|
||||
baofeng.net
|
||||
cntv.cn
|
||||
hoopchina.com.cn
|
||||
funshion.com
|
||||
fun.tv
|
||||
hitvs.cn
|
||||
hljtv.com
|
||||
iqiyi.com
|
||||
qiyi.com
|
||||
agn.aty.sohu.com
|
||||
itc.cn
|
||||
kankan.com
|
||||
ku6.com
|
||||
letv.com
|
||||
letvcloud.com
|
||||
letvimg.com
|
||||
pplive.cn
|
||||
pps.tv
|
||||
ppsimg.com
|
||||
pptv.com
|
||||
www.qq.com
|
||||
l.qq.com
|
||||
v.qq.com
|
||||
video.sina.com.cn
|
||||
tudou.com
|
||||
wasu.cn
|
||||
analytics-union.xunlei.com
|
||||
kankan.xunlei.com
|
||||
youku.com
|
||||
hunantv.com
|
||||
ifeng.com
|
||||
renren.com
|
||||
mediav.com
|
||||
cnbeta.com
|
||||
mydrivers.com
|
||||
168f.info
|
||||
doubleclick.net
|
||||
126.net
|
||||
sohu.com
|
||||
163.com
|
||||
right.com.cn
|
||||
50bang.org
|
||||
you85.cn
|
||||
jiuzhilan.com
|
||||
googles.com
|
||||
cnbetacdn.com
|
||||
ptqy.gitv.tv
|
||||
admaster.com.cn
|
||||
serving-sys.com
|
24
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/adupdate.sh
Executable file
24
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/adupdate.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
update_source=$(uci get adbyby.@adbyby[0].update_source 2>/dev/null)
|
||||
|
||||
rm -f /usr/share/adbyby/data/*.bak
|
||||
|
||||
if [ $update_source -eq 1 ]; then
|
||||
#wget-ssl -t 1 -T 10 -O /tmp/lazy.txt http://update.adbyby.com/rule3/lazy.jpg
|
||||
#wget-ssl -t 1 -T 10 -O /tmp/video.txt http://update.adbyby.com/rule3/video.jpg
|
||||
#wget-ssl -t 1 -T 10 -O /tmp/user.action http://update.adbyby.com/rule3/user.action
|
||||
wget-ssl --no-check-certificate -t 1 -T 10 -O /tmp/lazy.txt https://opt.cn2qq.com/opt-file/lazy.txt
|
||||
wget-ssl --no-check-certificate -t 1 -T 10 -O /tmp/video.txt https://opt.cn2qq.com/opt-file/video.txt
|
||||
fi
|
||||
|
||||
[ ! -s "/tmp/lazy.txt" ] && wget-ssl --no-check-certificate -O /tmp/lazy.txt https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt
|
||||
[ ! -s "/tmp/video.txt" ] && wget-ssl --no-check-certificate -O /tmp/video.txt https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/video.txt
|
||||
|
||||
[ -s "/tmp/lazy.txt" ] && ( ! cmp -s /tmp/lazy.txt /usr/share/adbyby/data/lazy.txt ) && mv /tmp/lazy.txt /usr/share/adbyby/data/lazy.txt
|
||||
[ -s "/tmp/video.txt" ] && ( ! cmp -s /tmp/video.txt /usr/share/adbyby/data/video.txt ) && mv /tmp/video.txt /usr/share/adbyby/data/video.txt
|
||||
[ -s "/tmp/user.action" ] && ( ! cmp -s /tmp/user.action /usr/share/adbyby/user.action ) && mv /tmp/user.action /usr/share/adbyby/user.action
|
||||
|
||||
rm -f /tmp/lazy.txt /tmp/video.txt /tmp/user.action
|
||||
|
||||
/etc/init.d/adbyby restart
|
@ -0,0 +1 @@
|
||||
2.2.2.2
|
@ -0,0 +1,940 @@
|
||||
address=/a.youdao.com/0.0.0.0
|
||||
address=/adrs.sdo.com/0.0.0.0
|
||||
address=/hiad.myweb.hinet.net/0.0.0.0
|
||||
address=/log.interest.mix.sina.com.cn/0.0.0.0
|
||||
address=/tuiguang.178.com/0.0.0.0
|
||||
address=/0xxd.com/0.0.0.0
|
||||
address=/104.195.62.12/0.0.0.0
|
||||
address=/111.175.219.7/0.0.0.0
|
||||
address=/111111qb.com/0.0.0.0
|
||||
address=/112.124.98.75/0.0.0.0
|
||||
address=/116.55.227.242/0.0.0.0
|
||||
address=/122.227.254.195/0.0.0.0
|
||||
address=/123hala.com/0.0.0.0
|
||||
address=/139.159.32.82/0.0.0.0
|
||||
address=/182.92.81.104/0.0.0.0
|
||||
address=/1l1.cc/0.0.0.0
|
||||
address=/201071.com/0.0.0.0
|
||||
address=/2012ui.com/0.0.0.0
|
||||
address=/211.167.105.131/0.0.0.0
|
||||
address=/220.115.251.25/0.0.0.0
|
||||
address=/221.204.213.222/0.0.0.0
|
||||
address=/2m2n.com/0.0.0.0
|
||||
address=/360baidus.com/0.0.0.0
|
||||
address=/365bibi.com/0.0.0.0
|
||||
address=/365safego.com/0.0.0.0
|
||||
address=/366safego.com/0.0.0.0
|
||||
address=/36pn.com/0.0.0.0
|
||||
address=/3g.990.net/0.0.0.0
|
||||
address=/52kmk.com/0.0.0.0
|
||||
address=/58.215.179.159/0.0.0.0
|
||||
address=/61.152.223.15/0.0.0.0
|
||||
address=/68665565.com/0.0.0.0
|
||||
address=/6dvip.com/0.0.0.0
|
||||
address=/71sem.com/0.0.0.0
|
||||
address=/77power.com/0.0.0.0
|
||||
address=/7wen.cn/0.0.0.0
|
||||
address=/7xz3.com/0.0.0.0
|
||||
address=/81c.cn/0.0.0.0
|
||||
address=/85tgw.com/0.0.0.0
|
||||
address=/88rpg.net/0.0.0.0
|
||||
address=/892155.com/0.0.0.0
|
||||
address=/91ysa.com/0.0.0.0
|
||||
address=/91zgm.com/0.0.0.0
|
||||
address=/9377co.com/0.0.0.0
|
||||
address=/9377os.com/0.0.0.0
|
||||
address=/a907907.com/0.0.0.0
|
||||
address=/ad000000.com/0.0.0.0
|
||||
address=/adm-cnzz.net/0.0.0.0
|
||||
address=/ads.uc.cn/0.0.0.0
|
||||
address=/ajaxcdn.org/0.0.0.0
|
||||
address=/aliyuncss.com/0.0.0.0
|
||||
address=/aliyunxin.com/0.0.0.0
|
||||
address=/amazingmagics.com/0.0.0.0
|
||||
address=/aralego.com/0.0.0.0
|
||||
address=/at98.com/0.0.0.0
|
||||
address=/cangnews.com/0.0.0.0
|
||||
address=/caob5.info/0.0.0.0
|
||||
address=/cb.baidu.com/0.0.0.0
|
||||
address=/cbjs.baidu.com/0.0.0.0
|
||||
address=/cnxad.net/0.0.0.0
|
||||
address=/cnzz.com.so/0.0.0.0
|
||||
address=/code668.com/0.0.0.0
|
||||
address=/cpcv.cc/0.0.0.0
|
||||
address=/cpms.cc/0.0.0.0
|
||||
address=/cpro.baidu.com/0.0.0.0
|
||||
address=/cpro.baidustatic.com/0.0.0.0
|
||||
address=/cpv6.com/0.0.0.0
|
||||
address=/cpva.cc/0.0.0.0
|
||||
address=/crdrjs.info/0.0.0.0
|
||||
address=/csqiulong.com/0.0.0.0
|
||||
address=/ctsywy.com/0.0.0.0
|
||||
address=/cyacc.com/0.0.0.0
|
||||
address=/czpush.com/0.0.0.0
|
||||
address=/dashet.com/0.0.0.0
|
||||
address=/datafastguru.info/0.0.0.0
|
||||
address=/dou777.com/0.0.0.0
|
||||
address=/drmcmm.baidu.com/0.0.0.0
|
||||
address=/duiwai.baidu.com/0.0.0.0
|
||||
address=/dvr8.com/0.0.0.0
|
||||
address=/dw998.com/0.0.0.0
|
||||
address=/dxssiyi.com/0.0.0.0
|
||||
address=/e701.net/0.0.0.0
|
||||
address=/e70123.com/0.0.0.0
|
||||
address=/e708.net/0.0.0.0
|
||||
address=/e719.net/0.0.0.0
|
||||
address=/ecuc123.net/0.0.0.0
|
||||
address=/eiv.baidu.com/0.0.0.0
|
||||
address=/f1190.com/0.0.0.0
|
||||
address=/f6ce.com/0.0.0.0
|
||||
address=/f70123.com/0.0.0.0
|
||||
address=/fd7c.com/0.0.0.0
|
||||
address=/fjmeyer.com/0.0.0.0
|
||||
address=/fu68.com/0.0.0.0
|
||||
address=/fv99.com/0.0.0.0
|
||||
address=/gf108.com/0.0.0.0
|
||||
address=/gf1352.com/0.0.0.0
|
||||
address=/gm682.com/0.0.0.0
|
||||
address=/guduopu.com/0.0.0.0
|
||||
address=/gzmjnx.cn/0.0.0.0
|
||||
address=/gzqudou.com/0.0.0.0
|
||||
address=/hao123rt.com/0.0.0.0
|
||||
address=/haohaowan8.com/0.0.0.0
|
||||
address=/haolew.com/0.0.0.0
|
||||
address=/hfjuki.com/0.0.0.0
|
||||
address=/hmp33.com/0.0.0.0
|
||||
address=/hr44.com/0.0.0.0
|
||||
address=/humanding.com/0.0.0.0
|
||||
address=/i3818.com/0.0.0.0
|
||||
address=/ihualun.com/0.0.0.0
|
||||
address=/img80.net/0.0.0.0
|
||||
address=/jczzjx.com/0.0.0.0
|
||||
address=/jdlhg.com/0.0.0.0
|
||||
address=/jhzl001.com/0.0.0.0
|
||||
address=/jiyou2014.com/0.0.0.0
|
||||
address=/jk939.com/0.0.0.0
|
||||
address=/jlssbz.com/0.0.0.0
|
||||
address=/jnrsjm.com/0.0.0.0
|
||||
address=/johtzj.com/0.0.0.0
|
||||
address=/jwqj.net/0.0.0.0
|
||||
address=/jxjzny.com/0.0.0.0
|
||||
address=/keyyou.net/0.0.0.0
|
||||
address=/kingwam.com/0.0.0.0
|
||||
address=/kmadou.com/0.0.0.0
|
||||
address=/ku9377.com/0.0.0.0
|
||||
address=/lajizhan.org/0.0.0.0
|
||||
address=/le4le.com/0.0.0.0
|
||||
address=/lishuanghao.com/0.0.0.0
|
||||
address=/lzmm8.com/0.0.0.0
|
||||
address=/mainbx.com/0.0.0.0
|
||||
address=/mathads.com/0.0.0.0
|
||||
address=/mlt01.com/0.0.0.0
|
||||
address=/moodoocrv.com.cn/0.0.0.0
|
||||
address=/mscimg.com/0.0.0.0
|
||||
address=/nextcps.com/0.0.0.0
|
||||
address=/niuxgame77.com/0.0.0.0
|
||||
address=/notice.uchome.manyou.com/0.0.0.0
|
||||
address=/oikxlcv.wang/0.0.0.0
|
||||
address=/okm918.com/0.0.0.0
|
||||
address=/p3tt.com/0.0.0.0
|
||||
address=/pdsjycm.com/0.0.0.0
|
||||
address=/pos.baidu.com/0.0.0.0
|
||||
address=/qiqiww.com/0.0.0.0
|
||||
address=/qucaigg.com/0.0.0.0
|
||||
address=/re.taotaosou.com/0.0.0.0
|
||||
address=/ruxianke.com/0.0.0.0
|
||||
address=/rwjfs.com/0.0.0.0
|
||||
address=/sgbfjs.info/0.0.0.0
|
||||
address=/sharedaddomain.com/0.0.0.0
|
||||
address=/show.kc.taotaosou.com/0.0.0.0
|
||||
address=/si9377.com/0.0.0.0
|
||||
address=/socdm.com/0.0.0.0
|
||||
address=/spcode.baidu.com/0.0.0.0
|
||||
address=/sstc360.com/0.0.0.0
|
||||
address=/t70123.com/0.0.0.0
|
||||
address=/taat00889.com/0.0.0.0
|
||||
address=/tad.suning.com/0.0.0.0
|
||||
address=/tc600.com/0.0.0.0
|
||||
address=/tdayi.com/0.0.0.0
|
||||
address=/tg.1155t.cn/0.0.0.0
|
||||
address=/toourbb.com/0.0.0.0
|
||||
address=/ubmcmm.baidustatic.com/0.0.0.0
|
||||
address=/uoyrsd.com/0.0.0.0
|
||||
address=/v707070.com/0.0.0.0
|
||||
address=/victorjx.com/0.0.0.0
|
||||
address=/w65p.com/0.0.0.0
|
||||
address=/wdzsb.com.cn/0.0.0.0
|
||||
address=/winvestern.com.cn/0.0.0.0
|
||||
address=/wqsph.net/0.0.0.0
|
||||
address=/ws341.com/0.0.0.0
|
||||
address=/xa9t.com/0.0.0.0
|
||||
address=/xabaitai.com/0.0.0.0
|
||||
address=/xchgx.com/0.0.0.0
|
||||
address=/xcy8.com/0.0.0.0
|
||||
address=/xtxa.net/0.0.0.0
|
||||
address=/xxad.cc/0.0.0.0
|
||||
address=/xzyituo.com/0.0.0.0
|
||||
address=/yk0712.com/0.0.0.0
|
||||
address=/ymcqb.com/0.0.0.0
|
||||
address=/yqw88.com/0.0.0.0
|
||||
address=/yule8.net/0.0.0.0
|
||||
address=/yyp17.com/0.0.0.0
|
||||
address=/zgksb.com/0.0.0.0
|
||||
address=/zgunion.cn/0.0.0.0
|
||||
address=/zp22938576.com/0.0.0.0
|
||||
address=/120.27.34.156/0.0.0.0
|
||||
address=/122.228.236.165/0.0.0.0
|
||||
address=/125.46.61.28/0.0.0.0
|
||||
address=/192.184.10.171/0.0.0.0
|
||||
address=/218.65.30.232/0.0.0.0
|
||||
address=/27.255.67.120/0.0.0.0
|
||||
address=/32345sf.com/0.0.0.0
|
||||
address=/360safego.com/0.0.0.0
|
||||
address=/3dm.huya.com/0.0.0.0
|
||||
address=/5y9nfpes.52pk.com/0.0.0.0
|
||||
address=/654mmm.com/0.0.0.0
|
||||
address=/6d245gxt.52pk.com/0.0.0.0
|
||||
address=/7mad.7m.cn/0.0.0.0
|
||||
address=/801.tianyaui.com/0.0.0.0
|
||||
address=/86file.megajoy.com/0.0.0.0
|
||||
address=/8jkx.com/0.0.0.0
|
||||
address=/96.43.97.243/0.0.0.0
|
||||
address=/a-m-s.poco.cn/0.0.0.0
|
||||
address=/a.baomihua.com/0.0.0.0
|
||||
address=/a.xizi.com/0.0.0.0
|
||||
address=/a2.b310.com/0.0.0.0
|
||||
address=/a4.yeshj.com/0.0.0.0
|
||||
address=/a5.yeshj.com/0.0.0.0
|
||||
address=/a6.hujiang.com/0.0.0.0
|
||||
address=/abc.hkepc.com/0.0.0.0
|
||||
address=/acsystem.wasu.cn/0.0.0.0
|
||||
address=/ad.17173.com/0.0.0.0
|
||||
address=/ad.bjmama.net/0.0.0.0
|
||||
address=/adadmin.house365.com/0.0.0.0
|
||||
address=/add.dz19.net/0.0.0.0
|
||||
address=/adf.dahe.cn/0.0.0.0
|
||||
address=/adhome.1fangchan.com/0.0.0.0
|
||||
address=/adk.funshion.com/0.0.0.0
|
||||
address=/adm.265g.com/0.0.0.0
|
||||
address=/adm.72zx.com/0.0.0.0
|
||||
address=/adm.86wan.com/0.0.0.0
|
||||
address=/adm.bbcss.com/0.0.0.0
|
||||
address=/adm.funshion.com/0.0.0.0
|
||||
address=/adm.jjj8.cn/0.0.0.0
|
||||
address=/adm.qzbbs.com/0.0.0.0
|
||||
address=/adm.xmfish.com/0.0.0.0
|
||||
address=/adm.zbinfo.net/0.0.0.0
|
||||
address=/adm.zzfish.cn/0.0.0.0
|
||||
address=/admd.yam.com/0.0.0.0
|
||||
address=/adnetpub.yaolan.com/0.0.0.0
|
||||
address=/adp.cnool.net/0.0.0.0
|
||||
address=/adpub.yaolan.com/0.0.0.0
|
||||
address=/adpubs.yaolan.com/0.0.0.0
|
||||
address=/adsclick.yx.js.cn/0.0.0.0
|
||||
address=/adspending01.bwnet.com.tw/0.0.0.0
|
||||
address=/afp.chinanews.com/0.0.0.0
|
||||
address=/afp.wasu.cn/0.0.0.0
|
||||
address=/afpcreative.wasu.cn/0.0.0.0
|
||||
address=/ai.bioon.com/0.0.0.0
|
||||
address=/aid.chinayk.com/0.0.0.0
|
||||
address=/am.6park.com/0.0.0.0
|
||||
address=/am.szhome.com/0.0.0.0
|
||||
address=/app.acm.dzwww.com/0.0.0.0
|
||||
address=/as.sinahk.net/0.0.0.0
|
||||
address=/ashow.pcpop.com/0.0.0.0
|
||||
address=/bb345.com/0.0.0.0
|
||||
address=/besc.baidustatic.com/0.0.0.0
|
||||
address=/biz.gexing.com/0.0.0.0
|
||||
address=/biz.weibo.com/0.0.0.0
|
||||
address=/btn.onlylady.com/0.0.0.0
|
||||
address=/btn.pchome.net/0.0.0.0
|
||||
address=/business.92wy.com/0.0.0.0
|
||||
address=/by.7avz.com/0.0.0.0
|
||||
address=/cacafly.net/0.0.0.0
|
||||
address=/cachead.com/0.0.0.0
|
||||
address=/cdn.wdlm.cn/0.0.0.0
|
||||
address=/chidir.com/0.0.0.0
|
||||
address=/cps.okbuy.com/0.0.0.0
|
||||
address=/d.107788.com/0.0.0.0
|
||||
address=/d.taomato.com/0.0.0.0
|
||||
address=/d0.xcar.com.cn/0.0.0.0
|
||||
address=/dd.xdnice.com/0.0.0.0
|
||||
address=/de.as.pptv.com/0.0.0.0
|
||||
address=/dfad.dfdaily.com/0.0.0.0
|
||||
address=/dg.073img.com/0.0.0.0
|
||||
address=/doubleclick.tv002.com/0.0.0.0
|
||||
address=/dvs.china.com/0.0.0.0
|
||||
address=/dvser.china.com/0.0.0.0
|
||||
address=/e.yycqc.com/0.0.0.0
|
||||
address=/eap.big5.enorth.com.cn/0.0.0.0
|
||||
address=/eap.enorth.com.cn/0.0.0.0
|
||||
address=/ebp.renren.com/0.0.0.0
|
||||
address=/ecma.bdimg.com/0.0.0.0
|
||||
address=/ecmb.bdimg.com/0.0.0.0
|
||||
address=/fun.ynet.com/0.0.0.0
|
||||
address=/g.gxorg.com/0.0.0.0
|
||||
address=/g.hsw.cn/0.0.0.0
|
||||
address=/g.ousns.net/0.0.0.0
|
||||
address=/g1.0573ren.com/0.0.0.0
|
||||
address=/g2.ousns.net/0.0.0.0
|
||||
address=/ganjituiguang.ganji.com/0.0.0.0
|
||||
address=/gdt.qq.com/0.0.0.0
|
||||
address=/get.766.com/0.0.0.0
|
||||
address=/gg.0598yu.com/0.0.0.0
|
||||
address=/gg.18183.com/0.0.0.0
|
||||
address=/gg.cs090.com/0.0.0.0
|
||||
address=/gg.gao7.com/0.0.0.0
|
||||
address=/gg.kugou.com/0.0.0.0
|
||||
address=/gg.sonhoo.com/0.0.0.0
|
||||
address=/gg.yxdown.com/0.0.0.0
|
||||
address=/ggg.zj.com/0.0.0.0
|
||||
address=/ggw.gusuwang.com/0.0.0.0
|
||||
address=/ggw.watertu.com/0.0.0.0
|
||||
address=/ggyq.xdkb.net/0.0.0.0
|
||||
address=/go.hangzhou.com.cn/0.0.0.0
|
||||
address=/goto.www.iciba.com/0.0.0.0
|
||||
address=/gqgc.sz.zj.cn/0.0.0.0
|
||||
address=/groupa.onlylady.com/0.0.0.0
|
||||
address=/gsspcln.jp/0.0.0.0
|
||||
address=/gt.yy.com/0.0.0.0
|
||||
address=/guess.h.qhimg.com/0.0.0.0
|
||||
address=/haxiu.miaotiao.com/0.0.0.0
|
||||
address=/hdad.baike.com/0.0.0.0
|
||||
address=/hiad.vmall.com/0.0.0.0
|
||||
address=/hz.shouyoutv.com/0.0.0.0
|
||||
address=/hzhyhm.com/0.0.0.0
|
||||
address=/i.syasn.com/0.0.0.0
|
||||
address=/iads.xinmin.cn/0.0.0.0
|
||||
address=/idcot.com/0.0.0.0
|
||||
address=/ifx.aifang.com/0.0.0.0
|
||||
address=/image.6park.com/0.0.0.0
|
||||
address=/image.9duw.com/0.0.0.0
|
||||
address=/image.hh010.com/0.0.0.0
|
||||
address=/image.lepan.cc/0.0.0.0
|
||||
address=/images.chinaz.com/0.0.0.0
|
||||
address=/images.gxsky.com/0.0.0.0
|
||||
address=/img.3sjt.com/0.0.0.0
|
||||
address=/img.9duw.com/0.0.0.0
|
||||
address=/img1.126.net/0.0.0.0
|
||||
address=/img2.126.net/0.0.0.0
|
||||
address=/img2.www.fmdisk.com/0.0.0.0
|
||||
address=/inte.sogou.com/0.0.0.0
|
||||
address=/iwanad.baidu.com/0.0.0.0
|
||||
address=/j.6avz.com/0.0.0.0
|
||||
address=/j.7avz.com/0.0.0.0
|
||||
address=/ja.gamersky.com/0.0.0.0
|
||||
address=/jmsyzj.com/0.0.0.0
|
||||
address=/js-1.pchome.net/0.0.0.0
|
||||
address=/js.duotegame.com/0.0.0.0
|
||||
address=/js.leshen.com/0.0.0.0
|
||||
address=/js.pub.tom.com/0.0.0.0
|
||||
address=/js.youxi369.com/0.0.0.0
|
||||
address=/jxad.jx163.com/0.0.0.0
|
||||
address=/knnwdyou.com/0.0.0.0
|
||||
address=/leiqun.snxyf.com/0.0.0.0
|
||||
address=/life.e0575.com/0.0.0.0
|
||||
address=/lingdian98.com/0.0.0.0
|
||||
address=/link.fobshanghai.com/0.0.0.0
|
||||
address=/lxting.com/0.0.0.0
|
||||
address=/m.aty.sohu.com/0.0.0.0
|
||||
address=/manads.static.olcdn.com/0.0.0.0
|
||||
address=/manage.wdfans.cn/0.0.0.0
|
||||
address=/market.178.com/0.0.0.0
|
||||
address=/market.21cn.com/0.0.0.0
|
||||
address=/market.duowan.com/0.0.0.0
|
||||
address=/media.cheshi-img.com/0.0.0.0
|
||||
address=/money.qz828.com/0.0.0.0
|
||||
address=/myad.toocle.com/0.0.0.0
|
||||
address=/ok.432kkk.com/0.0.0.0
|
||||
address=/p.szonline.net/0.0.0.0
|
||||
address=/p.zol-img.com.cn/0.0.0.0
|
||||
address=/p4p.sina.com.cn/0.0.0.0
|
||||
address=/p8u.hinet.net/0.0.0.0
|
||||
address=/panda.kdnet.net/0.0.0.0
|
||||
address=/pcs1.app.joy.cn/0.0.0.0
|
||||
address=/phpad.cqnews.net/0.0.0.0
|
||||
address=/pic.0597kk.com/0.0.0.0
|
||||
address=/pic.111cn.net/0.0.0.0
|
||||
address=/pic.2u.com.cn/0.0.0.0
|
||||
address=/pic.ea3w.com/0.0.0.0
|
||||
address=/pic.fengniao.com/0.0.0.0
|
||||
address=/pic.taian.com/0.0.0.0
|
||||
address=/pic.xgo-img.com.cn/0.0.0.0
|
||||
address=/playad.xjmg.com/0.0.0.0
|
||||
address=/poster.weather.com.cn/0.0.0.0
|
||||
address=/pp.7060.la/0.0.0.0
|
||||
address=/pro.iweihai.cn/0.0.0.0
|
||||
address=/pub.funshion.com/0.0.0.0
|
||||
address=/pub.mop.com/0.0.0.0
|
||||
address=/publicize.liao1.com/0.0.0.0
|
||||
address=/publish.ad.youth.cn/0.0.0.0
|
||||
address=/res.hunantv.com/0.0.0.0
|
||||
address=/rh.qq.com/0.0.0.0
|
||||
address=/same.chinadaily.com.cn/0.0.0.0
|
||||
address=/same.eastmoney.com/0.0.0.0
|
||||
address=/same.stockstar.com/0.0.0.0
|
||||
address=/sc.tom.com/0.0.0.0
|
||||
address=/sgg.southcn.com/0.0.0.0
|
||||
address=/share.gzdsw.com/0.0.0.0
|
||||
address=/shenleyuni.com/0.0.0.0
|
||||
address=/shows.21cn.com/0.0.0.0
|
||||
address=/so.6949.com/0.0.0.0
|
||||
address=/sss.sege.xxx/0.0.0.0
|
||||
address=/static.yujiehenaishang.com/0.0.0.0
|
||||
address=/sub.powerapple.com/0.0.0.0
|
||||
address=/super.cat898.com/0.0.0.0
|
||||
address=/super.kdnet.net/0.0.0.0
|
||||
address=/synacast.com/0.0.0.0
|
||||
address=/tf.360.cn/0.0.0.0
|
||||
address=/tg.delnapb.com/0.0.0.0
|
||||
address=/tk.504pk.com/0.0.0.0
|
||||
address=/tp.sgcn.com/0.0.0.0
|
||||
address=/u.63kc.com/0.0.0.0
|
||||
address=/u.cnzol.com/0.0.0.0
|
||||
address=/union.china.com.cn/0.0.0.0
|
||||
address=/untitled.dwstatic.com/0.0.0.0
|
||||
address=/up.hiao.com/0.0.0.0
|
||||
address=/v-56.com/0.0.0.0
|
||||
address=/vas.funshion.com/0.0.0.0
|
||||
address=/vupload.duowan.com/0.0.0.0
|
||||
address=/web.900.la/0.0.0.0
|
||||
address=/xc.macd.cn/0.0.0.0
|
||||
address=/xs.houyi.baofeng.net/0.0.0.0
|
||||
address=/yktj.yzz.cn/0.0.0.0
|
||||
address=/zo66.com/0.0.0.0
|
||||
address=/zt2088.com/0.0.0.0
|
||||
address=/146.148.85.61/0.0.0.0
|
||||
address=/hdapp1003-a.akamaihd.net/0.0.0.0
|
||||
address=/hdapp1008-a.akamaihd.net/0.0.0.0
|
||||
address=/hdsrc-a.akamaihd.net/0.0.0.0
|
||||
address=/46.165.197.153/0.0.0.0
|
||||
address=/46.165.197.231/0.0.0.0
|
||||
address=/74.117.182.77/0.0.0.0
|
||||
address=/78.140.131.214/0.0.0.0
|
||||
address=/clkrev.com/0.0.0.0
|
||||
address=/a.livesportmedia.eu/0.0.0.0
|
||||
address=/a.ucoz.net/0.0.0.0
|
||||
address=/a.watershed-publishing.com/0.0.0.0
|
||||
address=/a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com/0.0.0.0
|
||||
address=/ad.about.co.kr/0.0.0.0
|
||||
address=/ad.accessmediaproductions.com/0.0.0.0
|
||||
address=/ad.bitmedia.io/0.0.0.0
|
||||
address=/ad.flux.com/0.0.0.0
|
||||
address=/ad.foxnetworks.com/0.0.0.0
|
||||
address=/ad.icasthq.com/0.0.0.0
|
||||
address=/ad.idgtn.net/0.0.0.0
|
||||
address=/ad.jamba.net/0.0.0.0
|
||||
address=/ad.livere.co.kr/0.0.0.0
|
||||
address=/ad.mail.ru/0.0.0.0
|
||||
address=/ad.mesomorphosis.com/0.0.0.0
|
||||
address=/ad.openmultimedia.biz/0.0.0.0
|
||||
address=/ad.outsidehub.com/0.0.0.0
|
||||
address=/ad.pickple.net/0.0.0.0
|
||||
address=/ad.proxy.sh/0.0.0.0
|
||||
address=/ad.r.worldssl.net/0.0.0.0
|
||||
address=/ad.rambler.ru/0.0.0.0
|
||||
address=/ad.reklamport.com/0.0.0.0
|
||||
address=/ad.sensismediasmart.com.au/0.0.0.0
|
||||
address=/ad.smartclip.net/0.0.0.0
|
||||
address=/ad.spielothek.so/0.0.0.0
|
||||
address=/ad.vidaroo.com/0.0.0.0
|
||||
address=/ad.winningpartner.com/0.0.0.0
|
||||
address=/add.bugun.com.tr/0.0.0.0
|
||||
address=/adingo.jp.eimg.jp/0.0.0.0
|
||||
address=/adn.ebay.com/0.0.0.0
|
||||
address=/adplus.goo.mx/0.0.0.0
|
||||
address=/ads.mp.mydas.mobi/0.0.0.0
|
||||
address=/adscaspion.appspot.com/0.0.0.0
|
||||
address=/adss.dotdo.net/0.0.0.0
|
||||
address=/adz.zwee.ly/0.0.0.0
|
||||
address=/aff.eteachergroup.com/0.0.0.0
|
||||
address=/aff.marathonbet.com/0.0.0.0
|
||||
address=/aff.svjump.com/0.0.0.0
|
||||
address=/affil.mupromo.com/0.0.0.0
|
||||
address=/affiliateprogram.keywordspy.com/0.0.0.0
|
||||
address=/affiliates.allposters.com/0.0.0.0
|
||||
address=/affiliatesmedia.sbobet.com/0.0.0.0
|
||||
address=/affiliation.fotovista.com/0.0.0.0
|
||||
address=/agenda.complex.com/0.0.0.0
|
||||
address=/airpushmarketing.s3.amazonaws.com/0.0.0.0
|
||||
address=/ais.abacast.com/0.0.0.0
|
||||
address=/analytics.disneyinternational.com/0.0.0.0
|
||||
address=/ard.ihookup.com/0.0.0.0
|
||||
address=/award.sitekeuring.net/0.0.0.0
|
||||
address=/b.babylon.com/0.0.0.0
|
||||
address=/b.livesport.eu/0.0.0.0
|
||||
address=/b92.putniktravel.com/0.0.0.0
|
||||
address=/banner.101xp.com/0.0.0.0
|
||||
address=/banner.3ddownloads.com/0.0.0.0
|
||||
address=/banner.europacasino.com/0.0.0.0
|
||||
address=/banner.telefragged.com/0.0.0.0
|
||||
address=/banner.titancasino.com/0.0.0.0
|
||||
address=/bl.wavecdn.de/0.0.0.0
|
||||
address=/blamads-assets.s3.amazonaws.com/0.0.0.0
|
||||
address=/bluhostedbanners.blucigs.com/0.0.0.0
|
||||
address=/box.anchorfree.net/0.0.0.0
|
||||
address=/btr.domywife.com/0.0.0.0
|
||||
address=/c.netu.tv/0.0.0.0
|
||||
address=/cas.clickability.com/0.0.0.0
|
||||
address=/cash.neweramediaworks.com/0.0.0.0
|
||||
address=/cerebral.typn.com/0.0.0.0
|
||||
address=/cjmooter.xcache.kinxcdn.com/0.0.0.0
|
||||
address=/clarity.abacast.com/0.0.0.0
|
||||
address=/click.eyk.net/0.0.0.0
|
||||
address=/clickstrip.6wav.es/0.0.0.0
|
||||
address=/connect.summit.co.uk/0.0.0.0
|
||||
address=/content.livesportmedia.eu/0.0.0.0
|
||||
address=/cpm.amateurcommunity.de/0.0.0.0
|
||||
address=/creatives.inmotionhosting.com/0.0.0.0
|
||||
address=/creatives.summitconnect.co.uk/0.0.0.0
|
||||
address=/d13czkep7ax7nj.cloudfront.net/0.0.0.0
|
||||
address=/d140sbu1b1m3h0.cloudfront.net/0.0.0.0
|
||||
address=/d15565yqt7pv7r.cloudfront.net/0.0.0.0
|
||||
address=/d15gt9gwxw5wu0.cloudfront.net/0.0.0.0
|
||||
address=/d17f2fxw547952.cloudfront.net/0.0.0.0
|
||||
address=/d19972r8wdpby8.cloudfront.net/0.0.0.0
|
||||
address=/d1ade4ciw4bqyc.cloudfront.net/0.0.0.0
|
||||
address=/d1cl1sqtf3o420.cloudfront.net/0.0.0.0
|
||||
address=/d1d95giojjkirt.cloudfront.net/0.0.0.0
|
||||
address=/d1ep3cn6qx0l3z.cloudfront.net/0.0.0.0
|
||||
address=/d1ey3fksimezm4.cloudfront.net/0.0.0.0
|
||||
address=/d1fo96xm8fci0r.cloudfront.net/0.0.0.0
|
||||
address=/d1gojtoka5qi10.cloudfront.net/0.0.0.0
|
||||
address=/d1k74lgicilrr3.cloudfront.net/0.0.0.0
|
||||
address=/d1noellhv8fksc.cloudfront.net/0.0.0.0
|
||||
address=/d1pcttwib15k25.cloudfront.net/0.0.0.0
|
||||
address=/d1pdpbxj733bb1.cloudfront.net/0.0.0.0
|
||||
address=/d1spb7fplenrp4.cloudfront.net/0.0.0.0
|
||||
address=/d1vbm0eveofcle.cloudfront.net/0.0.0.0
|
||||
address=/d1zgderxoe1a.cloudfront.net/0.0.0.0
|
||||
address=/d23guct4biwna6.cloudfront.net/0.0.0.0
|
||||
address=/d23nyyb6dc29z6.cloudfront.net/0.0.0.0
|
||||
address=/d25ruj6ht8bs1.cloudfront.net/0.0.0.0
|
||||
address=/d25xkbr68qqtcn.cloudfront.net/0.0.0.0
|
||||
address=/d26dzd2k67we08.cloudfront.net/0.0.0.0
|
||||
address=/d26j9bp9bq4uhd.cloudfront.net/0.0.0.0
|
||||
address=/d26wy0pxd3qqpv.cloudfront.net/0.0.0.0
|
||||
address=/d27jt7xr4fq3e8.cloudfront.net/0.0.0.0
|
||||
address=/d287x05ve9a63s.cloudfront.net/0.0.0.0
|
||||
address=/d29r6igjpnoykg.cloudfront.net/0.0.0.0
|
||||
address=/d2anfhdgjxf8s1.cloudfront.net/0.0.0.0
|
||||
address=/d2b2x1ywompm1b.cloudfront.net/0.0.0.0
|
||||
address=/d2b65ihpmocv7w.cloudfront.net/0.0.0.0
|
||||
address=/d2bgg7rjywcwsy.cloudfront.net/0.0.0.0
|
||||
address=/d2cxkkxhecdzsq.cloudfront.net/0.0.0.0
|
||||
address=/d2d2lbvq8xirbs.cloudfront.net/0.0.0.0
|
||||
address=/d2dxgm96wvaa5j.cloudfront.net/0.0.0.0
|
||||
address=/d2gpgaupalra1d.cloudfront.net/0.0.0.0
|
||||
address=/d2gtlljtkeiyzd.cloudfront.net/0.0.0.0
|
||||
address=/d2gz6iop9uxobu.cloudfront.net/0.0.0.0
|
||||
address=/d2hap2bsh1k9lw.cloudfront.net/0.0.0.0
|
||||
address=/d2ipklohrie3lo.cloudfront.net/0.0.0.0
|
||||
address=/d2mic0r0bo3i6z.cloudfront.net/0.0.0.0
|
||||
address=/d2mq0uzafv8ytp.cloudfront.net/0.0.0.0
|
||||
address=/d2nlytvx51ywh9.cloudfront.net/0.0.0.0
|
||||
address=/d2o307dm5mqftz.cloudfront.net/0.0.0.0
|
||||
address=/d2oallm7wrqvmi.cloudfront.net/0.0.0.0
|
||||
address=/d2omcicc3a4zlg.cloudfront.net/0.0.0.0
|
||||
address=/d2pgy8h4i30on1.cloudfront.net/0.0.0.0
|
||||
address=/d2plxos94peuwp.cloudfront.net/0.0.0.0
|
||||
address=/d2r359adnh3sfn.cloudfront.net/0.0.0.0
|
||||
address=/d2s64zaa9ua7uv.cloudfront.net/0.0.0.0
|
||||
address=/d2tgev5wuprbqq.cloudfront.net/0.0.0.0
|
||||
address=/d2tnimpzlb191i.cloudfront.net/0.0.0.0
|
||||
address=/d2ubicnllnnszy.cloudfront.net/0.0.0.0
|
||||
address=/d2ue9k1rhsumed.cloudfront.net/0.0.0.0
|
||||
address=/d2v4glj2m8yzg5.cloudfront.net/0.0.0.0
|
||||
address=/d2v9ajh2eysdau.cloudfront.net/0.0.0.0
|
||||
address=/d2vt6q0n0iy66w.cloudfront.net/0.0.0.0
|
||||
address=/d2yhukq7vldf1u.cloudfront.net/0.0.0.0
|
||||
address=/d2z1smm3i01tnr.cloudfront.net/0.0.0.0
|
||||
address=/d31807xkria1x4.cloudfront.net/0.0.0.0
|
||||
address=/d32pxqbknuxsuy.cloudfront.net/0.0.0.0
|
||||
address=/d33f10u0pfpplc.cloudfront.net/0.0.0.0
|
||||
address=/d33otidwg56k90.cloudfront.net/0.0.0.0
|
||||
address=/d34obr29voew8l.cloudfront.net/0.0.0.0
|
||||
address=/d34rdvn2ky3gnm.cloudfront.net/0.0.0.0
|
||||
address=/d37kzqe5knnh6t.cloudfront.net/0.0.0.0
|
||||
address=/d38pxm3dmrdu6d.cloudfront.net/0.0.0.0
|
||||
address=/d38r21vtgndgb1.cloudfront.net/0.0.0.0
|
||||
address=/d39xqloz8t5a6x.cloudfront.net/0.0.0.0
|
||||
address=/d3bvcf24wln03d.cloudfront.net/0.0.0.0
|
||||
address=/d3dphmosjk9rot.cloudfront.net/0.0.0.0
|
||||
address=/d3f9mcik999dte.cloudfront.net/0.0.0.0
|
||||
address=/d3fzrm6pcer44x.cloudfront.net/0.0.0.0
|
||||
address=/d3irruagotonpp.cloudfront.net/0.0.0.0
|
||||
address=/d3iwjrnl4m67rd.cloudfront.net/0.0.0.0
|
||||
address=/d3lvr7yuk4uaui.cloudfront.net/0.0.0.0
|
||||
address=/d3lzezfa753mqu.cloudfront.net/0.0.0.0
|
||||
address=/d3m41swuqq4sv5.cloudfront.net/0.0.0.0
|
||||
address=/d3nvrqlo8rj1kw.cloudfront.net/0.0.0.0
|
||||
address=/d3p9ql8flgemg7.cloudfront.net/0.0.0.0
|
||||
address=/d3pkae9owd2lcf.cloudfront.net/0.0.0.0
|
||||
address=/d3q2dpprdsteo.cloudfront.net/0.0.0.0
|
||||
address=/d3qszud4qdthr8.cloudfront.net/0.0.0.0
|
||||
address=/d3t2wca0ou3lqz.cloudfront.net/0.0.0.0
|
||||
address=/d3t9ip55bsuxrf.cloudfront.net/0.0.0.0
|
||||
address=/d3tdefw8pwfkbk.cloudfront.net/0.0.0.0
|
||||
address=/d3vc1nm9xbncz5.cloudfront.net/0.0.0.0
|
||||
address=/d5pvnbpawsaav.cloudfront.net/0.0.0.0
|
||||
address=/d6bdy3eto8fyu.cloudfront.net/0.0.0.0
|
||||
address=/d8qy7md4cj3gz.cloudfront.net/0.0.0.0
|
||||
address=/dal9hkyfi0m0n.cloudfront.net/0.0.0.0
|
||||
address=/dart.clearchannel.com/0.0.0.0
|
||||
address=/dasfdasfasdf.no-ip.info/0.0.0.0
|
||||
address=/data.neuroxmedia.com/0.0.0.0
|
||||
address=/dbam.dashbida.com/0.0.0.0
|
||||
address=/ddwht76d9jvfl.cloudfront.net/0.0.0.0
|
||||
address=/dew9ckzjyt2gn.cloudfront.net/0.0.0.0
|
||||
address=/dff7tx5c2qbxc.cloudfront.net/0.0.0.0
|
||||
address=/display.digitalriver.com/0.0.0.0
|
||||
address=/disy2s34euyqm.cloudfront.net/0.0.0.0
|
||||
address=/dizixdllzznrf.cloudfront.net/0.0.0.0
|
||||
address=/djlf5xdlz7m8m.cloudfront.net/0.0.0.0
|
||||
address=/dkd69bwkvrht1.cloudfront.net/0.0.0.0
|
||||
address=/dkdwv3lcby5zi.cloudfront.net/0.0.0.0
|
||||
address=/dl392qndlveq0.cloudfront.net/0.0.0.0
|
||||
address=/dl5v5atodo7gn.cloudfront.net/0.0.0.0
|
||||
address=/dlupv9uqtjlie.cloudfront.net/0.0.0.0
|
||||
address=/dm0acvguygm9h.cloudfront.net/0.0.0.0
|
||||
address=/dm8srf206hien.cloudfront.net/0.0.0.0
|
||||
address=/dp51h10v6ggpa.cloudfront.net/0.0.0.0
|
||||
address=/dpsq2uzakdgqz.cloudfront.net/0.0.0.0
|
||||
address=/dq2tgxnc2knif.cloudfront.net/0.0.0.0
|
||||
address=/dqhi3ea93ztgv.cloudfront.net/0.0.0.0
|
||||
address=/dr8pk6ovub897.cloudfront.net/0.0.0.0
|
||||
address=/duct5ntjian71.cloudfront.net/0.0.0.0
|
||||
address=/dvf2u7vwmkr5w.cloudfront.net/0.0.0.0
|
||||
address=/dvt4pepo9om3r.cloudfront.net/0.0.0.0
|
||||
address=/dx5qvhwg92mjd.cloudfront.net/0.0.0.0
|
||||
address=/dxq6c0tx3v6mm.cloudfront.net/0.0.0.0
|
||||
address=/dxqd86uz345mg.cloudfront.net/0.0.0.0
|
||||
address=/dy48bnzanqw0v.cloudfront.net/0.0.0.0
|
||||
address=/dycpc40hvg4ki.cloudfront.net/0.0.0.0
|
||||
address=/dyl3p6so5yozo.cloudfront.net/0.0.0.0
|
||||
address=/epowernetworktrackerimages.s3.amazonaws.com/0.0.0.0
|
||||
address=/euwidget.imshopping.com/0.0.0.0
|
||||
address=/events.kalooga.com/0.0.0.0
|
||||
address=/ext.theglobalweb.com/0.0.0.0
|
||||
address=/feeds.logicbuy.com/0.0.0.0
|
||||
address=/ft.pnop.com/0.0.0.0
|
||||
address=/gateway.fortunelounge.com/0.0.0.0
|
||||
address=/gateways.s3.amazonaws.com/0.0.0.0
|
||||
address=/geo.connexionsecure.com/0.0.0.0
|
||||
address=/geobanner.friendfinder.com/0.0.0.0
|
||||
address=/geobanner.passion.com/0.0.0.0
|
||||
address=/gfaf-banners.s3.amazonaws.com/0.0.0.0
|
||||
address=/homad-global-configs.schneevonmorgen.com/0.0.0.0
|
||||
address=/im.ov.yahoo.co.jp/0.0.0.0
|
||||
address=/ima3vpaid.appspot.com/0.0.0.0
|
||||
address=/indieclick.3janecdn.com/0.0.0.0
|
||||
address=/inskin.vo.llnwd.net/0.0.0.0
|
||||
address=/k2team.kyiv.ua/0.0.0.0
|
||||
address=/mads.aol.com/0.0.0.0
|
||||
address=/marketing.888.com/0.0.0.0
|
||||
address=/mb.zam.com/0.0.0.0
|
||||
address=/mozo-widgets.f2.com.au/0.0.0.0
|
||||
address=/network.aufeminin.com/0.0.0.0
|
||||
address=/network.business.com/0.0.0.0
|
||||
address=/oclasrv.comindex-2.htmlapu.php/0.0.0.0
|
||||
address=/odin.goo.mx/0.0.0.0
|
||||
address=/on.maxspeedcdn.com/0.0.0.0
|
||||
address=/ox-i.cordillera.tv/0.0.0.0
|
||||
address=/partner.bargaindomains.com/0.0.0.0
|
||||
address=/partner.catchy.com/0.0.0.0
|
||||
address=/partner.premiumdomains.com/0.0.0.0
|
||||
address=/partnerads.ysm.yahoo.com/0.0.0.0
|
||||
address=/partnerads1.ysm.yahoo.com/0.0.0.0
|
||||
address=/partners.fshealth.com/0.0.0.0
|
||||
address=/partners.optiontide.com/0.0.0.0
|
||||
address=/partners.rochen.com/0.0.0.0
|
||||
address=/partners.sportingbet.com.au/0.0.0.0
|
||||
address=/partners.vouchedfor.co.uk/0.0.0.0
|
||||
address=/partners.xpertmarket.com/0.0.0.0
|
||||
address=/priceinfo.comuv.com/0.0.0.0
|
||||
address=/promos.fling.com/0.0.0.0
|
||||
address=/promote.pair.com/0.0.0.0
|
||||
address=/promotions.iasbet.com/0.0.0.0
|
||||
address=/pub.betclick.com/0.0.0.0
|
||||
address=/pubs.hiddennetwork.com/0.0.0.0
|
||||
address=/rack.bauermedia.co.uk/0.0.0.0
|
||||
address=/res3.feedsportal.com/0.0.0.0
|
||||
address=/revealads.appspot.com/0.0.0.0
|
||||
address=/rotabanner.kulichki.net/0.0.0.0
|
||||
address=/rotator.tradetracker.net/0.0.0.0
|
||||
address=/s-yoolk-banner-assets.yoolk.com/0.0.0.0
|
||||
address=/s-yoolk-billboard-assets.yoolk.com/0.0.0.0
|
||||
address=/secretmedia.s3.amazonaws.com/0.0.0.0
|
||||
address=/servedby.keygamesnetwork.com/0.0.0.0
|
||||
address=/sitescout-video-cdn.edgesuite.net/0.0.0.0
|
||||
address=/slot.union.ucweb.com/0.0.0.0
|
||||
address=/smart.styria-digital.com/0.0.0.0
|
||||
address=/squarespace.evyy.net/0.0.0.0
|
||||
address=/stats.hosting24.com/0.0.0.0
|
||||
address=/stats.sitesuite.org/0.0.0.0
|
||||
address=/stuff-nzwhistleout.s3.amazonaws.com/0.0.0.0
|
||||
address=/survey.g.doubleclick.net/0.0.0.0
|
||||
address=/syndication.jsadapi.com/0.0.0.0
|
||||
address=/syndication1.viraladnetwork.net/0.0.0.0
|
||||
address=/tap.more-results.net/0.0.0.0
|
||||
address=/ti.tradetracker.net/0.0.0.0
|
||||
address=/track.bcvcmedia.com/0.0.0.0
|
||||
address=/twinplan.com/0.0.0.0
|
||||
address=/vendor1.fitschigogerl.com/0.0.0.0
|
||||
address=/web-jp.ad-v.jp/0.0.0.0
|
||||
address=/whistleout.s3.amazonaws.com/0.0.0.0
|
||||
address=/widget.crowdignite.com/0.0.0.0
|
||||
address=/widget.kelkoo.com/0.0.0.0
|
||||
address=/widget.raaze.com/0.0.0.0
|
||||
address=/widget.searchschoolsnetwork.com/0.0.0.0
|
||||
address=/widget.shopstyle.com.au/0.0.0.0
|
||||
address=/widget.solarquotes.com.au/0.0.0.0
|
||||
address=/widgets.realestate.com.au/0.0.0.0
|
||||
address=/wtpn.twenga.co.uk/0.0.0.0
|
||||
address=/wtpn.twenga.de/0.0.0.0
|
||||
address=/yb.torchbrowser.com/0.0.0.0
|
||||
address=/yeas.yahoo.co.jp/0.0.0.0
|
||||
address=/zapads.zapak.com/0.0.0.0
|
||||
address=/zeus.qj.net/0.0.0.0
|
||||
address=/iadc.qwapi.com/0.0.0.0
|
||||
address=/d1nmk7iw7hajjn.cloudfront.net/0.0.0.0
|
||||
address=/ad.duga.jp/0.0.0.0
|
||||
address=/ad.iloveinterracial.com/0.0.0.0
|
||||
address=/ads.videosz.com/0.0.0.0
|
||||
address=/affiliates.thrixxx.com/0.0.0.0
|
||||
address=/ard.sweetdiscreet.com/0.0.0.0
|
||||
address=/bannershotlink.perfectgonzo.com/0.0.0.0
|
||||
address=/blaaaa12.googlecode.com/0.0.0.0
|
||||
address=/br.blackfling.com/0.0.0.0
|
||||
address=/br.fling.com/0.0.0.0
|
||||
address=/br.realitykings.com/0.0.0.0
|
||||
address=/cpm.amateurcommunity.com/0.0.0.0
|
||||
address=/dailyvideo.securejoin.com/0.0.0.0
|
||||
address=/desk.cmix.org/0.0.0.0
|
||||
address=/feeds.videosz.com/0.0.0.0
|
||||
address=/ff.nsg.org.ua/0.0.0.0
|
||||
address=/freexxxvideoclip.aebn.net/0.0.0.0
|
||||
address=/geo.cliphunter.com/0.0.0.0
|
||||
address=/geo.frtya.com/0.0.0.0
|
||||
address=/geobanner.adultfriendfinder.com/0.0.0.0
|
||||
address=/geobanner.alt.com/0.0.0.0
|
||||
address=/geobanner.socialflirt.com/0.0.0.0
|
||||
address=/partners.pornerbros.com/0.0.0.0
|
||||
address=/s1magnettvcom.maynemyltf.netdna-cdn.com/0.0.0.0
|
||||
address=/surv.xbizmedia.com/0.0.0.0
|
||||
address=/sweet.game-rust.ru/0.0.0.0
|
||||
address=/widgets.comcontent.net/0.0.0.0
|
||||
address=/widgetssec.cam-content.com/0.0.0.0
|
||||
address=/a.cdngeek.net/0.0.0.0
|
||||
address=/a.clipconverter.cc/0.0.0.0
|
||||
address=/a.giantrealm.com/0.0.0.0
|
||||
address=/a.i-sgcm.com/0.0.0.0
|
||||
address=/a.kat.cr/0.0.0.0
|
||||
address=/a.kickass.to/0.0.0.0
|
||||
address=/a.lolwot.com/0.0.0.0
|
||||
address=/ac2.msn.com/0.0.0.0
|
||||
address=/access.njherald.com/0.0.0.0
|
||||
address=/ad.cooks.com/0.0.0.0
|
||||
address=/ad.digitimes.com.tw/0.0.0.0
|
||||
address=/ad.directmirror.com/0.0.0.0
|
||||
address=/ad.download.cnet.com/0.0.0.0
|
||||
address=/ad.evozi.com/0.0.0.0
|
||||
address=/ad.fnnews.com/0.0.0.0
|
||||
address=/ad.jamster.com/0.0.0.0
|
||||
address=/ad.lyricswire.com/0.0.0.0
|
||||
address=/ad.mangareader.net/0.0.0.0
|
||||
address=/ad.newegg.com/0.0.0.0
|
||||
address=/ad.pandora.tv/0.0.0.0
|
||||
address=/ad.reachlocal.com/0.0.0.0
|
||||
address=/ad.search.ch/0.0.0.0
|
||||
address=/ad.services.distractify.com/0.0.0.0
|
||||
address=/adcitrus.com/0.0.0.0
|
||||
address=/addirector.vindicosuite.com/0.0.0.0
|
||||
address=/adds.weatherology.com/0.0.0.0
|
||||
address=/adlink.shopsafe.co.nz/0.0.0.0
|
||||
address=/admeta.vo.llnwd.net/0.0.0.0
|
||||
address=/ads-rolandgarros.com/0.0.0.0
|
||||
address=/ads.pof.com/0.0.0.0
|
||||
address=/ads.yahoo.com/0.0.0.0
|
||||
address=/ads.zynga.com/0.0.0.0
|
||||
address=/adsatt.abcnews.starwave.com/0.0.0.0
|
||||
address=/adsatt.espn.starwave.com/0.0.0.0
|
||||
address=/adshare.freedocast.com/0.0.0.0
|
||||
address=/adsor.openrunner.com/0.0.0.0
|
||||
address=/adss.yahoo.com/0.0.0.0
|
||||
address=/adstil.indiatimes.com/0.0.0.0
|
||||
address=/adtest.theonion.com/0.0.0.0
|
||||
address=/advertise.twitpic.com/0.0.0.0
|
||||
address=/advice-ads-cdn.vice.com/0.0.0.0
|
||||
address=/adx.kat.ph/0.0.0.0
|
||||
address=/aff.lmgtfy.com/0.0.0.0
|
||||
address=/ajnad.aljazeera.net/0.0.0.0
|
||||
address=/amz.steamprices.com/0.0.0.0
|
||||
address=/analytics.mmosite.com/0.0.0.0
|
||||
address=/as.inbox.com/0.0.0.0
|
||||
address=/asd.projectfreetv.so/0.0.0.0
|
||||
address=/avpa.dzone.com/0.0.0.0
|
||||
address=/b.localpages.com/0.0.0.0
|
||||
address=/b.thefile.me/0.0.0.0
|
||||
address=/ba.ccm2.net/0.0.0.0
|
||||
address=/ba.kioskea.net/0.0.0.0
|
||||
address=/banner.automotiveworld.com/0.0.0.0
|
||||
address=/banner.itweb.co.za/0.0.0.0
|
||||
address=/banners.beevpn.com/0.0.0.0
|
||||
address=/banners.beted.com/0.0.0.0
|
||||
address=/banners.clubworldgroup.com/0.0.0.0
|
||||
address=/banners.expressindia.com/0.0.0.0
|
||||
address=/banners.i-comers.com/0.0.0.0
|
||||
address=/banners.itweb.co.za/0.0.0.0
|
||||
address=/banners.playocio.com/0.0.0.0
|
||||
address=/beap.gemini.yahoo.com/0.0.0.0
|
||||
address=/bizanti.youwatch.org/0.0.0.0
|
||||
address=/bnrs.ilm.ee/0.0.0.0
|
||||
address=/bwp.theinsider.com.com/0.0.0.0
|
||||
address=/cadvv.heraldm.com/0.0.0.0
|
||||
address=/cadvv.koreaherald.com/0.0.0.0
|
||||
address=/canvas.thenextweb.com/0.0.0.0
|
||||
address=/click.livedoor.com/0.0.0.0
|
||||
address=/clicks.superpages.com/0.0.0.0
|
||||
address=/cnetwidget.creativemark.co.uk/0.0.0.0
|
||||
address=/collector.viki.io/0.0.0.0
|
||||
address=/creatives.livejasmin.com/0.0.0.0
|
||||
address=/d.annarbor.com/0.0.0.0
|
||||
address=/d.businessinsider.com/0.0.0.0
|
||||
address=/d.gossipcenter.com/0.0.0.0
|
||||
address=/d.thelocal.com/0.0.0.0
|
||||
address=/dads.new.digg.com/0.0.0.0
|
||||
address=/dailydeals.amarillo.com/0.0.0.0
|
||||
address=/dailydeals.augustachronicle.com/0.0.0.0
|
||||
address=/dailydeals.brainerddispatch.com/0.0.0.0
|
||||
address=/dailydeals.lubbockonline.com/0.0.0.0
|
||||
address=/dailydeals.onlineathens.com/0.0.0.0
|
||||
address=/dailydeals.savannahnow.com/0.0.0.0
|
||||
address=/dcad.watersoul.com/0.0.0.0
|
||||
address=/deals.ledgertranscript.com/0.0.0.0
|
||||
address=/digdug.divxnetworks.com/0.0.0.0
|
||||
address=/display.superbay.net/0.0.0.0
|
||||
address=/dontblockme.modaco.com/0.0.0.0
|
||||
address=/ehow.com/media/ad.html/0.0.0.0
|
||||
address=/eva.ucas.com/0.0.0.0
|
||||
address=/fan.twitch.tv/0.0.0.0
|
||||
address=/fimserve.ign.com/0.0.0.0
|
||||
address=/findnsave.idahostatesman.com/0.0.0.0
|
||||
address=/g.brothersoft.com/0.0.0.0
|
||||
address=/gameads.digyourowngrave.com/0.0.0.0
|
||||
address=/geoshopping.nzherald.co.nz/0.0.0.0
|
||||
address=/get.thefile.me/0.0.0.0
|
||||
address=/gfx.infomine.com/0.0.0.0
|
||||
address=/green.virtual-nights.com/0.0.0.0
|
||||
address=/hejban.youwatch.org/0.0.0.0
|
||||
address=/ibanners.empoweredcomms.com.au/0.0.0.0
|
||||
address=/iframe.travel.yahoo.com/0.0.0.0
|
||||
address=/imads.rediff.com/0.0.0.0
|
||||
address=/kat-ads.torrenticity.com/0.0.0.0
|
||||
address=/keepthelighton.vpsboard.com/0.0.0.0
|
||||
address=/kermit.macnn.com/0.0.0.0
|
||||
address=/life.imagepix.org/0.0.0.0
|
||||
address=/ll.a.hulu.com/0.0.0.0
|
||||
address=/londonprivaterentals.standard.co.uk/0.0.0.0
|
||||
address=/looky.hyves.org/0.0.0.0
|
||||
address=/lw2.gamecopyworld.com/0.0.0.0
|
||||
address=/mads.dailymail.co.uk/0.0.0.0
|
||||
address=/marketingsolutions.yahoo.com/0.0.0.0
|
||||
address=/mb.hockeybuzz.com/0.0.0.0
|
||||
address=/mealsandsteals.sandiego6.com/0.0.0.0
|
||||
address=/media-delivery.armorgames.com/0.0.0.0
|
||||
address=/media-mgmt.armorgames.com/0.0.0.0
|
||||
address=/mediamgr.ugo.com/0.0.0.0
|
||||
address=/nest.youwatch.org/0.0.0.0
|
||||
address=/netspidermm.indiatimes.com/0.0.0.0
|
||||
address=/network.sofeminine.co.uk/0.0.0.0
|
||||
address=/noram.srv.ysm.yahoo.com/0.0.0.0
|
||||
address=/oas.autotrader.co.uk/0.0.0.0
|
||||
address=/oas.skyscanner.net/0.0.0.0
|
||||
address=/oasc07.citywire.co.uk/0.0.0.0
|
||||
address=/oascentral.chron.com/0.0.0.0
|
||||
address=/oascentral.hosted.ap.org/0.0.0.0
|
||||
address=/oascentral.newsmax.com/0.0.0.0
|
||||
address=/ox-d.rantsports.com/0.0.0.0
|
||||
address=/ox-d.sbnation.com/0.0.0.0
|
||||
address=/ox-d.wetransfer.com/0.0.0.0
|
||||
address=/ox.furaffinity.net/0.0.0.0
|
||||
address=/partners-z.com/0.0.0.0
|
||||
address=/photo.net/equipment/pg-160/0.0.0.0
|
||||
address=/player.1800coupon.com/0.0.0.0
|
||||
address=/player.1stcreditrepairs.com/0.0.0.0
|
||||
address=/player.800directories.com/0.0.0.0
|
||||
address=/player.accoona.com/0.0.0.0
|
||||
address=/player.alloutwedding.com/0.0.0.0
|
||||
address=/player.insuranceandhealth.com/0.0.0.0
|
||||
address=/pmm.people.com.cn/0.0.0.0
|
||||
address=/pop-over.powered-by.justplayzone.com/0.0.0.0
|
||||
address=/prerollads.ign.com/0.0.0.0
|
||||
address=/promo.fileforum.com/0.0.0.0
|
||||
address=/rad.microsoft.com/0.0.0.0
|
||||
address=/rad.msn.com/0.0.0.0
|
||||
address=/red.bayimg.net/0.0.0.0
|
||||
address=/redvase.bravenet.com/0.0.0.0
|
||||
address=/richmedia.yimg.com/0.0.0.0
|
||||
address=/roia.com/0.0.0.0
|
||||
address=/rpt.anchorfree.net/0.0.0.0
|
||||
address=/searchignited.com/0.0.0.0
|
||||
address=/sebar.thand.info/0.0.0.0
|
||||
address=/shoppingpartners2.futurenet.com/0.0.0.0
|
||||
address=/sponsors.s2ki.com/0.0.0.0
|
||||
address=/sponsors.webosroundup.com/0.0.0.0
|
||||
address=/srv.thespacereporter.com/0.0.0.0
|
||||
address=/storewidget.pcauthority.com.au/0.0.0.0
|
||||
address=/stream.heavenmedia.net/0.0.0.0
|
||||
address=/tanzanite.infomine.com/0.0.0.0
|
||||
address=/targetedinfo.com/0.0.0.0
|
||||
address=/targetedtopic.com/0.0.0.0
|
||||
address=/thejesperbay.com/0.0.0.0
|
||||
address=/themis.yahoo.com/0.0.0.0
|
||||
address=/tmcs.net/0.0.0.0
|
||||
address=/tom.itv.com/0.0.0.0
|
||||
address=/tracking.hostgator.com/0.0.0.0
|
||||
address=/ua.badongo.com/0.0.0.0
|
||||
address=/uimserv.net/0.0.0.0
|
||||
address=/unicast.ign.com/0.0.0.0
|
||||
address=/unicast.msn.com/0.0.0.0
|
||||
address=/verdict.abc.go.com/0.0.0.0
|
||||
address=/vice-ads-cdn.vice.com/0.0.0.0
|
||||
address=/w.homes.yahoo.net/0.0.0.0
|
||||
address=/webmaster.extabit.com/0.0.0.0
|
||||
address=/widget.directory.dailycommercial.com/0.0.0.0
|
||||
address=/x.castanet.net/0.0.0.0
|
||||
address=/yea.uploadimagex.com/0.0.0.0
|
||||
address=/yesbeby.whies.info/0.0.0.0
|
||||
address=/yrt7dgkf.exashare.com/0.0.0.0
|
||||
address=/ysm.yahoo.com/0.0.0.0
|
||||
address=/zads.care2.com/0.0.0.0
|
||||
address=/a.eporner.com/0.0.0.0
|
||||
address=/a.heavy-r.com/0.0.0.0
|
||||
address=/a.killergram-girls.com/0.0.0.0
|
||||
address=/ad.eporner.com/0.0.0.0
|
||||
address=/ad.slutload.com/0.0.0.0
|
||||
address=/ad.thisav.com/0.0.0.0
|
||||
address=/ad.userporn.com/0.0.0.0
|
||||
address=/ads.xxxbunker.com/0.0.0.0
|
||||
address=/affiliates.goodvibes.com/0.0.0.0
|
||||
address=/banner1.pornhost.com/0.0.0.0
|
||||
address=/banners.cams.com/0.0.0.0
|
||||
address=/bob.crazyshit.com/0.0.0.0
|
||||
address=/brcache.madthumbs.com/0.0.0.0
|
||||
address=/creatives.cliphunter.com/0.0.0.0
|
||||
address=/creatives.pichunter.com/0.0.0.0
|
||||
address=/dot.eporner.com/0.0.0.0
|
||||
address=/dot2.eporner.com/0.0.0.0
|
||||
address=/exit.macandbumble.com/0.0.0.0
|
||||
address=/lw1.cdmediaworld.com/0.0.0.0
|
||||
address=/m2.xhamster.com/0.0.0.0
|
||||
address=/partners.xhamster.com/0.0.0.0
|
||||
address=/pr-static.empflix.com/0.0.0.0
|
||||
address=/pr-static.tnaflix.com/0.0.0.0
|
||||
address=/r.radikal.ru/0.0.0.0
|
||||
address=/rev.fapdu.com/0.0.0.0
|
||||
address=/site.img.4tube.com/0.0.0.0
|
||||
address=/static.kinghost.com/0.0.0.0
|
||||
address=/x.eroticity.net/0.0.0.0
|
||||
address=/x.vipergirls.to/0.0.0.0
|
@ -0,0 +1,4 @@
|
||||
address=/p.tanx.com/0.0.0.0
|
||||
address=/googlesyndication.com/0.0.0.0
|
||||
address=/linkvans.com/0.0.0.0
|
||||
server=/valf.atm.youku.com/114.114.114.114
|
@ -0,0 +1,3 @@
|
||||
ipset=/weixin.qq.com/adbyby_wan
|
||||
ipset=/qpic.cn/adbyby_wan
|
||||
ipset=/imtt.qq.com/adbyby_wan
|
13
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/firewall.include
Executable file
13
package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/firewall.include
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
adbyby_enable=$(uci get adbyby.@adbyby[0].enable)
|
||||
|
||||
if [ $adbyby_enable -eq 1 ]; then
|
||||
if pidof adbyby>/dev/null; then
|
||||
/etc/init.d/adbyby reload_rule
|
||||
else
|
||||
/etc/init.d/adbyby restart
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -0,0 +1,15 @@
|
||||
! ------------------------------ ADByby 自定义过滤语法简表---------------------------------
|
||||
! -------------- 规则基于abp规则,并进行了字符替换部分的扩展-----------------------------
|
||||
! ABP规则请参考https://adblockplus.org/zh_CN/filters,下面为大致摘要
|
||||
! "!" 为行注释符,注释行以该符号起始作为一行注释语义,用于规则描述
|
||||
! "*" 为字符通配符,能够匹配0长度或任意长度的字符串,该通配符不能与正则语法混用。
|
||||
! "^" 为分隔符,可以是除了字母、数字或者 _ - . % 之外的任何字符。
|
||||
! "|" 为管线符号,来表示地址的最前端或最末端
|
||||
! "||" 为子域通配符,方便匹配主域名下的所有子域。
|
||||
! "~" 为排除标识符,通配符能过滤大多数广告,但同时存在误杀, 可以通过排除标识符修正误杀链接。
|
||||
! "##" 为元素选择器标识符,后面跟需要隐藏元素的CSS样式例如 #ad_id .ad_class
|
||||
!! 元素隐藏暂不支持全局规则和排除规则
|
||||
!! 字符替换扩展
|
||||
! 文本替换选择器标识符,后面跟需要替换的文本数据,格式:$s@模式字符串@替换后的文本@
|
||||
! 支持通配符*和?
|
||||
! -------------------------------------------------------------------------------------------
|
Loading…
Reference in New Issue
Block a user