mirror of
https://github.com/privacy-protection-tools/anti-AD.git
synced 2025-01-22 22:39:16 +08:00
Delete scripts directory
This commit is contained in:
parent
0f0b6c01ea
commit
5242580259
@ -1,278 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* url地址相关的操作类
|
||||
*
|
||||
* @file addressMaker.class.php
|
||||
* @author gently
|
||||
* @date 2017.12.31
|
||||
*
|
||||
*
|
||||
*/
|
||||
!defined('ROOT_DIR') && die('Access Denied.');
|
||||
|
||||
class addressMaker{
|
||||
|
||||
const LINK_URL = 'https://github.com/privacy-protection-tools/anti-AD';
|
||||
|
||||
/**
|
||||
* 分离域名
|
||||
*
|
||||
* @param $str_domain
|
||||
* @return string
|
||||
*/
|
||||
public static function extract_main_domain($str_domain){
|
||||
if(empty($str_domain)){
|
||||
return "";
|
||||
}
|
||||
|
||||
$str_reg = '/^(?:(?:[a-z0-9\-]*[a-z0-9]\.)*?|\.)?([a-z0-9\-]*[a-z0-9](';
|
||||
/************start CN域名的特殊处理规则,其中包括了各行政区特别后缀的cn域名*****************************/
|
||||
$str_reg .= '\.ac\.cn|\.ah\.cn|\.bj\.cn|\.com\.cn|\.cq\.cn|\.fj\.cn|\.gd\.cn|\.gov\.cn|\.gs\.cn';
|
||||
$str_reg .= '|\.gx\.cn|\.gz\.cn|\.ha\.cn|\.hb\.cn|\.he\.cn|\.hi\.cn|\.hk\.cn|\.hl\.cn|\.hn\.cn';
|
||||
$str_reg .= '|\.jl\.cn|\.js\.cn|\.jx\.cn|\.ln\.cn|\.mo\.cn|\.net\.cn|\.nm\.cn|\.nx\.cn|\.org\.cn';
|
||||
$str_reg .= '|\.qh\.cn|\.sc\.cn|\.sd\.cn|\.sh\.cn|\.sn\.cn|\.sx\.cn|\.tj\.cn|\.tw\.cn|\.xj\.cn';
|
||||
$str_reg .= '|\.xz\.cn|\.yn\.cn|\.zj\.cn|\.edu.cn';
|
||||
/************end CN域名的特殊处理规则,其中包括了各行政区特别后缀的cn域名******************************/
|
||||
$str_reg .= '|\.cn|\.com|\.net|\.org|\.me|\.co|\.info|\.cc|\.tv';
|
||||
$str_reg .= '|\.pw|\.biz|\.top|\.win|\.bid|\.cf|\.club|\.ne|\.de|\.la|\.us|\.mobi|\.hn|\.asia';
|
||||
$str_reg .= '|\.jp|\.tw|\.am|\.hk|\.site|\.live|\.xyz|\.space|\.fr|\.es|\.nl|\.au|\.in|\.ru';
|
||||
$str_reg .= '|\.su|\.world|\.io|\.trade|\.bet|\.im|\.fm|\.today|\.wang|\.rocks|\.vip|\.eu|\.run';
|
||||
$str_reg .= '|\.online|\.website|\.cricket|\.date|\.men|\.ca|\.xxx|\.name|\.pl|\.be|\.il|\.gov|\.it';
|
||||
$str_reg .= '|\.cl|\.tk|\.cz|\.hu|\.ro|\.vg|\.ws|\.nu|\.vn|\.lt|\.edu|\.lv|\.mx|\.by|\.gr|\.br|\.fi';
|
||||
$str_reg .= '|\.pt|\.dk|\.se|\.at|\.id|\.ve|\.ir|\.ma|\.ch|\.nf|\.bg|\.ua|\.is|\.hr|\.shop|\.xin|\.si|\.or';
|
||||
$str_reg .= '|\.sk|\.kz|\.tt|\.so|\.gg|\.ms|\.ink|\.pro|\.work|\.click|\.link|\.ly|\.ai|\.tech|\.kr|\.to';
|
||||
$str_reg .= '|\.uk|\.ad|\.ac|\.md|\.ml|\.cm|\.re|\.ph|\.my|\.lu|\.network|\.sh|\.fun|\.az|\.cx|\.ga';
|
||||
$str_reg .= '|\.ae|\.bz|\.gq|\.gs|\.pk|\.sex|\.stream|\.support|\.pub|\.nz|\.ng|\.zw|\.sx|\.studio|\.media|\.zone';
|
||||
$str_reg .= '|\.icu|\.ie|\.li|\.bar|\.video|\.wiki|\.ltd|\.cash|\.pink|\.loan|\.gdn|\.app|\.ovh|\.land|\.st|\.how';
|
||||
$str_reg .= '|\.kim|\.download|\.ag|\.technology|\.company|\.guru|\.gt|\.sg|\.photo|\.digital|\.one|\.tr';
|
||||
$str_reg .= '|\.show|\.sncf|\.uz|\.as|\.ee|\.fyi|\.cloud|\.group|\.promo|\.party|\.services|\.life|\.no';
|
||||
$str_reg .= '|\.watch|\.works|\.buzz|\.best|\.center|\.host|\.style|\.press|\.solutions|\.exchange|\.wtf';
|
||||
$str_reg .= '|\.delivery|\.page|\.webcam|\.cam|\.supply|\.accountant|\.systems|\.agency|\.science|\.awe';
|
||||
$str_reg .= '|\.gd|\.review|\.tc|\.mn|\.cool|\.monster|\.do|\.bi|\.news|\.boom|\.lol|\.events|\.jobs';
|
||||
$str_reg .= '|\.ooo|\.social|\.ninja|\.blue|\.plus|\.racing|\.ht|\.tl|\.cat|\.tf|\.al|\.vc|\.cr';
|
||||
$str_reg .= ')';
|
||||
|
||||
$str_reg .= '(\.hk|\.tw|\.uk|\.jp|\.kr|\.th|\.au|\.ua|\.so|\.br|\.sg|\.pt|\.ec|\.ar|\.my';
|
||||
$str_reg .= '|\.tr|\.bd|\.mk|\.za|\.mt|\.sm|\.ge|\.kg|\.ke|\.de|\.ve|\.es|\.ru|\.pk|\.mx';
|
||||
$str_reg .= '|\.nz|\.py|\.pe|\.ph|\.pl|\.ng|\.pa|\.fj';
|
||||
|
||||
$str_reg .= ')?)$/';
|
||||
if(preg_match($str_reg, $str_domain, $matches)){
|
||||
return strval($matches[1]);
|
||||
}
|
||||
|
||||
return "";
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 从 easylist类源文件中提取可用地址
|
||||
*
|
||||
* @param String $str_easylist 原始的easylist列表字符串
|
||||
* @param Boolean $strict_mode 严格模式,启用时将屏蔽该域所在的主域名,例如www.baidu.com,将获取到baidu.com并写入最终列表
|
||||
* @param Array $arr_whitelist 白名单列表
|
||||
* @return array
|
||||
*/
|
||||
public static function get_domain_from_easylist($str_easylist, $strict_mode = false, $arr_whitelist = array()){
|
||||
$strlen = strlen($str_easylist);
|
||||
if($strlen < 10){
|
||||
return array();
|
||||
}
|
||||
|
||||
$str_easylist = $str_easylist . "\n"; //防止最后一行没有换行符
|
||||
|
||||
$i = 0;
|
||||
$arr_domains = array();
|
||||
while($i < $strlen){
|
||||
$end_pos = strpos($str_easylist, "\n", $i);
|
||||
$line = trim(substr($str_easylist, $i, $end_pos - $i));
|
||||
$i = $end_pos + 1;
|
||||
if(empty($line) || strlen($line) < 3){
|
||||
continue;
|
||||
}
|
||||
|
||||
if($line{0} != '|' || $line{1} != '|'){
|
||||
continue;
|
||||
}
|
||||
|
||||
if(preg_match('/^\|\|([0-9a-z\-\.]+[a-z]+)\^(\$([^=]+?,)?(image|third-party|script)(,[^=]+)?)?$/', $line, $matches)){
|
||||
|
||||
if(substr($matches[1], 0, 4) == 'www.'){
|
||||
$row = substr($matches[1], 4);
|
||||
}else{
|
||||
$row = $matches[1];
|
||||
}
|
||||
$main_domain = self::extract_main_domain($matches[1]);
|
||||
if($strict_mode && (!array_key_exists($main_domain, $arr_whitelist) || ($arr_whitelist[$main_domain] >= 1))){
|
||||
$arr_domains[$main_domain] = array($main_domain);
|
||||
}else{
|
||||
$arr_domains[$main_domain][] = $row;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $arr_domains;
|
||||
}
|
||||
|
||||
/**
|
||||
* 从hosts或dnsmasq类文件中提取地址
|
||||
*
|
||||
* @param String $str_hosts 原始的hosts字符串
|
||||
* @param Boolean $strict_mode 严格模式,启用时将屏蔽该域所在的主域名,例如www.baidu.com,将获取到baidu.com并写入最终列表
|
||||
* @param Array $arr_whitelist 白名单
|
||||
* @return array
|
||||
*/
|
||||
public static function get_domain_list($str_hosts, $strict_mode = false, $arr_whitelist = array()){
|
||||
$strlen = strlen($str_hosts);
|
||||
if($strlen < 3){
|
||||
return array();
|
||||
}
|
||||
|
||||
$str_hosts = $str_hosts . "\n"; //防止最后一行没有换行符
|
||||
|
||||
$i = 0;
|
||||
$arr_domains = array();
|
||||
while($i < $strlen){
|
||||
$end_pos = strpos($str_hosts, "\n", $i);
|
||||
$line = trim(substr($str_hosts, $i, $end_pos - $i));
|
||||
$i = $end_pos + 1;
|
||||
if(empty($line) || ($line{0} == '#')){//注释行忽略
|
||||
continue;
|
||||
}
|
||||
$line = strtolower(preg_replace('/[\s\t]+/', "/", $line));
|
||||
|
||||
if((strpos($line, '127.0.0.1') === false) &&
|
||||
(strpos($line, '::') === false) &&
|
||||
(strpos($line, '0.0.0.0') === false)){
|
||||
continue;
|
||||
}
|
||||
|
||||
$row = explode('/', $line);
|
||||
if(strpos($row[1], '.') === false){
|
||||
continue;
|
||||
}
|
||||
$main_domain = self::extract_main_domain($row[1]);
|
||||
if($strict_mode && (!array_key_exists($main_domain, $arr_whitelist) || ($arr_whitelist[$main_domain] >= 1))){
|
||||
$arr_domains[$main_domain] = array($main_domain);
|
||||
}else{
|
||||
$arr_domains[$main_domain][] = $row[1];
|
||||
}
|
||||
}
|
||||
|
||||
return $arr_domains;
|
||||
}
|
||||
|
||||
private static function write_conf_header($fp, $header, $arr_params = array()){
|
||||
$header = str_replace('{DATE}', date('YmdHis'), $header);
|
||||
$header = str_replace('{URL}', self::LINK_URL, $header);
|
||||
|
||||
foreach($arr_params as $keyword => $val){
|
||||
$header = str_replace('{' . $keyword . '}', $val, $header);
|
||||
}
|
||||
return fwrite($fp, $header);
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入结果到最终文件
|
||||
*
|
||||
* @param array $arr_src
|
||||
* @param $arr_format
|
||||
* @param array $arr_whitelist
|
||||
* @return false|int
|
||||
*/
|
||||
public static function write_to_file(array $arr_src, array $arr_format, array $arr_whitelist = array()){
|
||||
|
||||
if(count($arr_src) < 1){
|
||||
return false;
|
||||
}
|
||||
|
||||
foreach($arr_whitelist as $wlk => $wlv){
|
||||
if(-1 === $wlv){
|
||||
unset($arr_whitelist[$wlk]);
|
||||
}
|
||||
}
|
||||
|
||||
$str_result = '';
|
||||
$line_count = 0;
|
||||
|
||||
$arr_written = [];
|
||||
foreach($arr_src as $main_domain => $arr_subdomains){
|
||||
|
||||
if(array_key_exists($main_domain, $arr_whitelist) && ($arr_whitelist[$main_domain] > 0)){
|
||||
continue;
|
||||
}
|
||||
|
||||
if(empty($main_domain)){//不匹配记录(一般是不合法域名或者未收录的后缀)
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
if(
|
||||
(1 !== $arr_format['full_domain'])
|
||||
&& (!array_key_exists($main_domain, $arr_whitelist))
|
||||
&& (in_array($main_domain, $arr_subdomains)
|
||||
|| in_array('www.' . $main_domain, $arr_subdomains)
|
||||
|| in_array('.' . $main_domain, $arr_subdomains)
|
||||
)
|
||||
){
|
||||
$str_result .= str_replace('{DOMAIN}', $main_domain, $arr_format['format']) . "\n";
|
||||
$line_count ++;
|
||||
continue;
|
||||
}
|
||||
|
||||
$arr_subdomains = array_fill_keys($arr_subdomains, 2);
|
||||
|
||||
foreach($arr_subdomains as $subdomain => $__){
|
||||
if(array_key_exists($subdomain, $arr_whitelist)){
|
||||
continue;
|
||||
}
|
||||
|
||||
$arr_tmp_domain = explode('.', $subdomain);
|
||||
$tmp_domain_len = count($arr_tmp_domain);
|
||||
if($tmp_domain_len < 3){
|
||||
$str_result .= str_replace('{DOMAIN}', $subdomain, $arr_format['format']) . "\n";
|
||||
$line_count ++;
|
||||
$arr_written[$subdomain] = 2;
|
||||
continue;
|
||||
}
|
||||
|
||||
$matched_flag = false;
|
||||
for($pos = 3; $pos <= $tmp_domain_len; $pos ++){
|
||||
$arr_tmp = array_slice($arr_tmp_domain, -1 * $pos);
|
||||
$tmp = implode('.', $arr_tmp);
|
||||
|
||||
if(array_key_exists($tmp, $arr_whitelist)){
|
||||
$matched_flag = $arr_whitelist[$tmp] === 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if(($tmp === $subdomain) || array_key_exists($tmp, $arr_subdomains)){
|
||||
if(!array_key_exists($tmp, $arr_written)){
|
||||
$str_result .= str_replace('{DOMAIN}', $tmp, $arr_format['format']) . "\n";
|
||||
$line_count ++;
|
||||
$arr_written[$tmp] = 2;
|
||||
}
|
||||
$matched_flag = 1 !== $arr_format['full_domain'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if($matched_flag){
|
||||
continue;
|
||||
}
|
||||
|
||||
if(!array_key_exists($subdomain, $arr_written)){
|
||||
$str_result .= str_replace('{DOMAIN}', $subdomain, $arr_format['format']) . "\n";
|
||||
$line_count ++;
|
||||
$arr_written[$subdomain] = 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
unset($arr_written);
|
||||
|
||||
$fp = fopen(ROOT_DIR . $arr_format['filename'], 'w');
|
||||
$write_len = self::write_conf_header($fp, $arr_format['header'], array('COUNT' => $line_count));
|
||||
$write_len += fwrite($fp, $str_result);
|
||||
return $write_len;
|
||||
}
|
||||
}
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
<?php
|
||||
return array();
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* 工具类
|
||||
*
|
||||
* @date 2019.12.14
|
||||
* @author gently
|
||||
*/
|
||||
|
||||
class utils{
|
||||
|
||||
/**
|
||||
* http get 方法,一般用于下载文件
|
||||
*
|
||||
* @param $url
|
||||
* @return bool|string
|
||||
*/
|
||||
public static function http_get($url){
|
||||
$ch = curl_init();
|
||||
curl_setopt($ch, CURLOPT_URL, $url);
|
||||
curl_setopt($ch, CURLOPT_HTTPGET, 1);
|
||||
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
|
||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
||||
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($ch, CURLOPT_USERAGENT, '^_^ angent 2.2.5/' . phpversion());
|
||||
$result = curl_exec($ch);
|
||||
$errno = curl_errno($ch);
|
||||
curl_close($ch);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 数组合并,将相同key的值相加而不是生成数组或合并,不同key将全部保留
|
||||
*
|
||||
* @param $arr1
|
||||
* @param $arr2
|
||||
* @return array
|
||||
*/
|
||||
public static function array_merge_plus($arr1, $arr2){
|
||||
if(!is_array($arr1)){
|
||||
$arr1 = array();
|
||||
}
|
||||
|
||||
if(!is_array($arr2)){
|
||||
$arr2 = array();
|
||||
}
|
||||
|
||||
$arr1 = array_merge_recursive($arr1, $arr2);
|
||||
|
||||
$arr_result = array();
|
||||
foreach($arr1 as $key => $val){
|
||||
$arr_result[$key] = array();
|
||||
|
||||
if(!is_array($val)){
|
||||
continue;
|
||||
}
|
||||
|
||||
foreach($val as $k => $v){
|
||||
$arr_result[$key][$k] = is_array($v) ? array_sum($v) : $v;
|
||||
}
|
||||
}
|
||||
|
||||
return $arr_result;
|
||||
}
|
||||
}
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
<?php
|
||||
return array();
|
@ -1,209 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* 定义输出格式
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
!defined('ROOT_DIR') && die('Access Denied.');
|
||||
|
||||
class writerFormat{
|
||||
/*dnsmasq支持格式的屏蔽广告列表*/
|
||||
const DNSMASQ = array(
|
||||
'format' => 'address=/{DOMAIN}/',
|
||||
'header' => "#TITLE=anti-AD\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'dnsmasq',
|
||||
'filename' => '../adblock-for-dnsmasq.conf',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*easylist 兼容格式的屏蔽广告列表*/
|
||||
const EASYLIST = array(
|
||||
'format' => '||{DOMAIN}^',
|
||||
'header' => "!Title: anti-AD\n!Version: {DATE}\n!Homepage: {URL}\n!Total lines: 00000\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'easylist',
|
||||
'filename' => '../anti-ad-easylist.txt',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*Surge 兼容格式的屏蔽广告列表*/
|
||||
const SURGE = array(
|
||||
'format' => 'DOMAIN-SUFFIX,{DOMAIN}',
|
||||
'header' => "#TITLE=anti-AD\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'surge',
|
||||
'filename' => '../anti-ad-surge.txt',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*Surge DOMAIN-SET格式的屏蔽广告列表*/
|
||||
const SURGE2 = array(
|
||||
'format' => '.{DOMAIN}',
|
||||
'header' => "#TITLE=anti-AD\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n\n#DOMAIN-SET,https://anti-ad.net/surge2.txt,REJECT\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'surge2',
|
||||
'filename' => '../anti-ad-surge2.txt',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*Domains 格式的屏蔽广告列表,用于支持pi-hole等*/
|
||||
const DOMAINS = array(
|
||||
'format' => '{DOMAIN}',
|
||||
'header' => "#TITLE=anti-AD\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n",
|
||||
'full_domain' => 1, //保留子域名,即使其上级域名
|
||||
'name' => 'domains',
|
||||
'filename' => '../anti-ad-domains.txt',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*smartdns支持格式的屏蔽广告列表*/
|
||||
const SMARTDNS = array(
|
||||
'format' => 'address /{DOMAIN}/#',
|
||||
'header' => "#TITLE=anti-AD for SmartDNS\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'dnsmasq',
|
||||
'filename' => '../anti-ad-smartdns.conf',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*Clash RULE-SET 格式的屏蔽广告列表*/
|
||||
const CLASH = array(
|
||||
'format' => ' - \'+.{DOMAIN}\'',
|
||||
'header' => "#TITLE=anti-AD\n#VER={DATE}\n#URL={URL}\n#TOTAL_LINES={COUNT}\n\n#RULE-SET,AntiAd,REJECT\npayload:\n",
|
||||
'full_domain' => 0,
|
||||
'name' => 'clash',
|
||||
'filename' => '../anti-ad-clash.yaml',
|
||||
'whitelist_attached' => array(
|
||||
'base-dead-hosts.txt' =>array(
|
||||
'merge_mode' => 2, //0=单条,1=单条+子域名,2=根域名相当于1,非根域名相当于0
|
||||
),
|
||||
),
|
||||
'src' => array(
|
||||
'base-src-easylist.txt' => array(
|
||||
'type' => 'easylist',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => false,
|
||||
),
|
||||
'base-src-strict-hosts.txt' => array(
|
||||
'type' => 'hosts',
|
||||
'strict_mode' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
/*and etc...*/
|
||||
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* 根据下载的原始文件,生成dnsmasq的屏蔽广告用途的配置
|
||||
*
|
||||
* @file make-addr.php
|
||||
* @author gently
|
||||
* @date 2017.12.31
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
define('ROOT_DIR', __DIR__ . '/');
|
||||
define('ORIG_DIR', ROOT_DIR . 'origin-files/');
|
||||
set_time_limit(600);
|
||||
error_reporting(0);
|
||||
|
||||
if(PHP_SAPI != 'cli'){
|
||||
die('nothing.');
|
||||
}
|
||||
|
||||
date_default_timezone_set('Asia/Shanghai');
|
||||
$ARR_BLACKLIST = require ROOT_DIR . 'lib/black_domain_list.php';
|
||||
$ARR_WHITELIST = require ROOT_DIR . 'lib/white_domain_list.php';
|
||||
require ROOT_DIR . 'lib/writerFormat.class.php';
|
||||
require ROOT_DIR . 'lib/addressMaker.class.php';
|
||||
|
||||
$arr_input_cache = $arr_whitelist_cache = $arr_output = array();
|
||||
|
||||
$reflect = new ReflectionClass('writerFormat');
|
||||
$formatterList = $reflect->getConstants();
|
||||
foreach($formatterList as $name => $formatObj){
|
||||
if(!is_array($formatObj['src'])){
|
||||
continue;
|
||||
}
|
||||
$arr_src_domains = array();
|
||||
$arr_tmp_whitelist = array();//单次的白名单列表
|
||||
if(is_array($formatObj['whitelist_attached']) && (count($formatObj['whitelist_attached']) > 0)){
|
||||
foreach($formatObj['whitelist_attached'] as $white_file => $white_attr){
|
||||
if(!array_key_exists("{$white_file}_{$white_attr['merge_mode']}", $arr_whitelist_cache)){
|
||||
$arr_attached = file(ORIG_DIR . $white_file, FILE_SKIP_EMPTY_LINES | FILE_IGNORE_NEW_LINES);
|
||||
$arr_attached = array_fill_keys($arr_attached, $white_attr['merge_mode']);
|
||||
$arr_whitelist_cache["{$white_file}_{$white_attr['merge_mode']}"] = $arr_attached;
|
||||
}
|
||||
|
||||
$arr_tmp_whitelist = array_merge(
|
||||
$arr_tmp_whitelist,
|
||||
$arr_whitelist_cache["{$white_file}_{$white_attr['merge_mode']}"]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$arr_tmp_whitelist = array_merge($arr_tmp_whitelist, $ARR_WHITELIST);
|
||||
|
||||
foreach($formatObj['src'] as $src_file => $src_attr){
|
||||
if(!array_key_exists($src_file, $arr_input_cache)){
|
||||
$src_content = file_get_contents(ORIG_DIR . $src_file);
|
||||
if($src_attr['type'] === 'easylist'){
|
||||
$src_content = addressMaker::get_domain_from_easylist($src_content, $src_attr['strict_mode'], $arr_tmp_whitelist);
|
||||
}elseif($src_attr['type'] === 'hosts'){
|
||||
$src_content = addressMaker::get_domain_list($src_content, $src_attr['strict_mode'], $arr_tmp_whitelist);
|
||||
}
|
||||
$arr_input_cache[$src_file] = $src_content;
|
||||
}
|
||||
$arr_src_domains = array_merge_recursive($arr_src_domains, $arr_input_cache[$src_file]);
|
||||
}
|
||||
|
||||
$arr_src_domains = array_merge_recursive($arr_src_domains, $ARR_BLACKLIST);
|
||||
ksort($arr_src_domains);
|
||||
|
||||
$arr_output[] = '[' . $name . ']:' . addressMaker::write_to_file($arr_src_domains, $formatObj, $arr_tmp_whitelist);
|
||||
}
|
||||
|
||||
echo join(',', $arr_output);
|
@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
source /etc/profile
|
||||
|
||||
cd $(cd "$(dirname "$0")";pwd)
|
||||
|
||||
php make-addr.php
|
||||
echo
|
||||
cp ../anti-ad-easylist.txt ../anti-ad-adguard.txt
|
||||
php ./tools/adguard-extend.php ../anti-ad-adguard.txt
|
||||
echo
|
||||
php ./tools/easylist-extend.php ../anti-ad-easylist.txt
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,133 +0,0 @@
|
||||
0hosting187.dyndns.com
|
||||
0hosting187.dyndns.org
|
||||
0jaqkuc24kdjvpgdc8va.littlematchagirl.com.au
|
||||
0n4tblbdfncaauxioxto.ddns.net
|
||||
0nline.23welsfargo39.com.al4all.co.za
|
||||
0npxkvszg.privatescurom.net
|
||||
0qizz.super-promo.hoxo.info
|
||||
0range-espaceclient.particuliersw2.fr
|
||||
0rvcr9ahvnueb4f1la4u.littlematchagirl.com.au
|
||||
0sn.dyndns.biz
|
||||
0tzg4irsuabvucpvw937.littlematchagirl.com.au
|
||||
0vm4hjvug772wnv8kuzj.cedricchenevert.com
|
||||
0vm4hjvug772wnv8kuzj.mbservicesyorkshire.co.uk
|
||||
0wn3d.dyndns.biz
|
||||
5178.1717pcw.com
|
||||
521073--verbraucher-mitteilung-account.sicher-vorbeugung.tk
|
||||
521686-de-verbraucher-kenntnis-benutzer.sicherheitsabwehr-hilfeservice-sicherheitshilfe.tk
|
||||
529499-deu-gast-sicherheit-validierung.sicherheitssystem-sicherheitshilfe.ga
|
||||
53ertt555.from-mn.com
|
||||
540591--nutzung-angabe-validierung.sicherheitshilfe-schutz.gq
|
||||
60aalexandrastreetcom.domainstel.org
|
||||
60l3j5wg.myutilitydomain.com
|
||||
6116.traeumtgerade.de
|
||||
612045126.htmldrop.com
|
||||
6193544.servicesbpd.club
|
||||
6234786296875-60237.portmap.host
|
||||
623623626638885047749469.z19.web.core.windows.net
|
||||
625491-deu-verbraucher-sicherheit-account.paypaldevelopment-system.top
|
||||
adli.topkorder.su
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.2oflranvbs3drvbmwvj2afac0dybr9qinmkumyfng8gnth1q4ah4fi6ecuft.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.alh5zrdnvj7gdymtzxhyea6dsbap6co6om1edtrodnv8c8rsvyg1pb4id5n0.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.cfrsfp8hcpkwdzsetpo8vir0wi1t64yyfq5knbn4ckw231kifi4nz3a9st5m.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.cybgzbqmymjbfcvgdi7aqceiao6d7yfvzclrsxf5whay3gcbddhg8lo81jax.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.gx86fkitocomhes0vfdqv6d1hpsyoxzulwqr8oalqooyt7xfbrwwmznue6it.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.k2q26ojmrogfubejuvyepr9wmrui9iej0ub60bhrqowaqrjac8fspdfrlzaj.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.l3smq6kznlhql0jleqe7ah3yw1oeh3diuwvbr6b6giliikuc2y02w2pisdnq.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.nfesb5q8cmvq5i26d1lchcozxpq9kgmfluhfledohyuc8m8bci4klha9xq8x.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.rqpzrmup7txbcf9eywnz56pwr387jfy2vdrcpbsmvqnxll3jyfysbdfs7cpg.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.y8pksa9yzdxlzza8bltezyrdc5sgliy0gokyfim5bag2agz2riwg7nkzisfj.jafinafara.for-our.info
|
||||
soundofhope.org
|
||||
renminbao.com
|
||||
aboluowang.com
|
||||
secretchina.com
|
||||
minghui.com
|
||||
minghui.org
|
||||
epochtimes.com
|
||||
epochtimes.org
|
||||
dongtaiwang.com
|
||||
dongtaiwang.org
|
||||
ntdtv.com
|
||||
ntdtv.org
|
||||
sucursalpersonas.transaccionesbancolombia.com2f2uf2bb55kpbc1dssr5uno-back-buttoon1.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comcbpagesjsp-nslogin-mada.jsp.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comfjykixj1wbfohdu84wactivarnotificacionesyalertas.alserviciorat-tray.com
|
||||
www.bannedbook.org
|
||||
bannedbook.org
|
||||
dafahao.com
|
||||
dafahao.org
|
||||
minghui.com
|
||||
minghui.org
|
||||
dongtaiwang.com
|
||||
dongtaiwang.org
|
||||
epochtimes.com
|
||||
epochtimes.org
|
||||
tuidang.epochtimes.com
|
||||
tuidang.epochtimes.org
|
||||
dajiyuan.com
|
||||
dajiyuan.org
|
||||
ntdtv.com
|
||||
ntdtv.org
|
||||
falundata.com
|
||||
falundata.org
|
||||
zh-cn.shenyun.com
|
||||
en.shenyun.com
|
||||
zh-cn.shenyun.org
|
||||
en.shenyun.org
|
||||
shenyun.com
|
||||
shenyun.org
|
||||
www.shenyun.com
|
||||
www.shenyun.org
|
||||
www.tuidang.org
|
||||
tuidang.org
|
||||
www.epochweekly.com
|
||||
www.zhengjian.org
|
||||
zhengjian.org
|
||||
www.shenyunperformingarts.org
|
||||
shenyunperformingarts.org
|
||||
www.xinsheng.net
|
||||
xinsheng.net
|
||||
www.fgmtv.org
|
||||
fgmtv.org
|
||||
tw.fgmtv.org
|
||||
www.zhuichaguoji.org
|
||||
zhuichaguoji.org
|
||||
www.yuanming.net
|
||||
yuanming.net
|
||||
www.soundofhope.org
|
||||
soundofhope.org
|
||||
www.wujieliulan.com
|
||||
wujieliulan.com
|
||||
www.zhengwunet.org
|
||||
zhengwunet.org
|
||||
www.guangming.org
|
||||
guangming.org
|
||||
www.mhradio.org
|
||||
mhradio.org
|
||||
www.aboluowang.com
|
||||
aboluowang.com
|
||||
renminbao.com
|
||||
www.secretchina.com
|
||||
secretchina.com
|
||||
www.shenzhoufilm.com
|
||||
shenzhoufilm.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwa.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwar.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwn.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixs.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixss.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixssu.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixssud.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comno-back-button0000000000verifiedalertasynotificaciones.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comno-back-buttonooooooooooverifiedalertasynotificaciones.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comusermagdavalidationsecureactivarproductosenlinea.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessionon.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessiononprotected.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessiononprotectedd.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateonline.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateonlinee.alserviciorat-tray.com
|
||||
|
||||
#dead domains
|
||||
09mk.cn
|
||||
100peng.com
|
||||
g2q3e.cn
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,381 +0,0 @@
|
||||
### WindowsSpyBlocker - Hosts spy rules
|
||||
### License: MIT
|
||||
### Updated: 2021-05-15T21:41:00Z02:12
|
||||
### Donate: https://github.com/sponsors/crazy-max ; https://www.paypal.me/crazyws
|
||||
### More info: https://github.com/crazy-max/WindowsSpyBlocker
|
||||
|
||||
0.0.0.0 a.ads1.msn.com
|
||||
0.0.0.0 a.ads2.msads.net
|
||||
0.0.0.0 a.ads2.msn.com
|
||||
0.0.0.0 a.rad.msn.com
|
||||
0.0.0.0 ac3.msn.com
|
||||
0.0.0.0 activity.windows.com
|
||||
0.0.0.0 adnexus.net
|
||||
0.0.0.0 adnxs.com
|
||||
0.0.0.0 ads.msn.com
|
||||
0.0.0.0 ads1.msads.net
|
||||
0.0.0.0 ads1.msn.com
|
||||
0.0.0.0 aidps.atdmt.com
|
||||
0.0.0.0 aka-cdn-ns.adtech.de
|
||||
0.0.0.0 alpha.telemetry.microsoft.com
|
||||
0.0.0.0 api.cortana.ai
|
||||
0.0.0.0 asimov-win.settings.data.microsoft.com.akadns.net
|
||||
0.0.0.0 azwancan.trafficmanager.net
|
||||
0.0.0.0 b.ads1.msn.com
|
||||
0.0.0.0 b.ads2.msads.net
|
||||
0.0.0.0 b.rad.msn.com
|
||||
0.0.0.0 bingads.microsoft.com
|
||||
0.0.0.0 bl3301-a.1drv.com
|
||||
0.0.0.0 bl3301-c.1drv.com
|
||||
0.0.0.0 bl3301-g.1drv.com
|
||||
0.0.0.0 bn2-ris-ap-prod-atm.trafficmanager.net
|
||||
0.0.0.0 bn2-ris-prod-atm.trafficmanager.net
|
||||
0.0.0.0 bn2b-cor001.api.p001.1drv.com
|
||||
0.0.0.0 bn2b-cor002.api.p001.1drv.com
|
||||
0.0.0.0 bn2b-cor003.api.p001.1drv.com
|
||||
0.0.0.0 bn2b-cor004.api.p001.1drv.com
|
||||
0.0.0.0 bn2wns1.wns.windows.com
|
||||
0.0.0.0 bn3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 bn3sch020010558.wns.windows.com
|
||||
0.0.0.0 bn3sch020010560.wns.windows.com
|
||||
0.0.0.0 bn3sch020010618.wns.windows.com
|
||||
0.0.0.0 bn3sch020010629.wns.windows.com
|
||||
0.0.0.0 bn3sch020010631.wns.windows.com
|
||||
0.0.0.0 bn3sch020010635.wns.windows.com
|
||||
0.0.0.0 bn3sch020010636.wns.windows.com
|
||||
0.0.0.0 bn3sch020010650.wns.windows.com
|
||||
0.0.0.0 bn3sch020011727.wns.windows.com
|
||||
0.0.0.0 bn3sch020012850.wns.windows.com
|
||||
0.0.0.0 bn3sch020020322.wns.windows.com
|
||||
0.0.0.0 bn3sch020020749.wns.windows.com
|
||||
0.0.0.0 bn3sch020022328.wns.windows.com
|
||||
0.0.0.0 bn3sch020022335.wns.windows.com
|
||||
0.0.0.0 bn3sch020022361.wns.windows.com
|
||||
0.0.0.0 bn4sch101120814.wns.windows.com
|
||||
0.0.0.0 bn4sch101120818.wns.windows.com
|
||||
0.0.0.0 bn4sch101120911.wns.windows.com
|
||||
0.0.0.0 bn4sch101120913.wns.windows.com
|
||||
0.0.0.0 bn4sch101121019.wns.windows.com
|
||||
0.0.0.0 bn4sch101121109.wns.windows.com
|
||||
0.0.0.0 bn4sch101121118.wns.windows.com
|
||||
0.0.0.0 bn4sch101121223.wns.windows.com
|
||||
0.0.0.0 bn4sch101121407.wns.windows.com
|
||||
0.0.0.0 bn4sch101121618.wns.windows.com
|
||||
0.0.0.0 bn4sch101121704.wns.windows.com
|
||||
0.0.0.0 bn4sch101121709.wns.windows.com
|
||||
0.0.0.0 bn4sch101121714.wns.windows.com
|
||||
0.0.0.0 bn4sch101121908.wns.windows.com
|
||||
0.0.0.0 bn4sch101122117.wns.windows.com
|
||||
0.0.0.0 bn4sch101122310.wns.windows.com
|
||||
0.0.0.0 bn4sch101122312.wns.windows.com
|
||||
0.0.0.0 bn4sch101122421.wns.windows.com
|
||||
0.0.0.0 bn4sch101123108.wns.windows.com
|
||||
0.0.0.0 bn4sch101123110.wns.windows.com
|
||||
0.0.0.0 bn4sch101123202.wns.windows.com
|
||||
0.0.0.0 bn4sch102110124.wns.windows.com
|
||||
0.0.0.0 browser.pipe.aria.microsoft.com
|
||||
0.0.0.0 bs.serving-sys.com
|
||||
0.0.0.0 by3301-a.1drv.com
|
||||
0.0.0.0 by3301-c.1drv.com
|
||||
0.0.0.0 by3301-e.1drv.com
|
||||
0.0.0.0 c.atdmt.com
|
||||
0.0.0.0 c.msn.com
|
||||
0.0.0.0 ca.telemetry.microsoft.com
|
||||
0.0.0.0 cache.datamart.windows.com
|
||||
0.0.0.0 cdn.atdmt.com
|
||||
0.0.0.0 cds10.stn.llnw.net
|
||||
0.0.0.0 cds1203.lon.llnw.net
|
||||
0.0.0.0 cds1204.lon.llnw.net
|
||||
0.0.0.0 cds1209.lon.llnw.net
|
||||
0.0.0.0 cds1219.lon.llnw.net
|
||||
0.0.0.0 cds1228.lon.llnw.net
|
||||
0.0.0.0 cds1244.lon.llnw.net
|
||||
0.0.0.0 cds1257.lon.llnw.net
|
||||
0.0.0.0 cds1265.lon.llnw.net
|
||||
0.0.0.0 cds1269.lon.llnw.net
|
||||
0.0.0.0 cds1273.lon.llnw.net
|
||||
0.0.0.0 cds1285.lon.llnw.net
|
||||
0.0.0.0 cds1287.lon.llnw.net
|
||||
0.0.0.0 cds1289.lon.llnw.net
|
||||
0.0.0.0 cds1293.lon.llnw.net
|
||||
0.0.0.0 cds1307.lon.llnw.net
|
||||
0.0.0.0 cds1310.lon.llnw.net
|
||||
0.0.0.0 cds1325.lon.llnw.net
|
||||
0.0.0.0 cds1327.lon.llnw.net
|
||||
0.0.0.0 cds177.dus.llnw.net
|
||||
0.0.0.0 cds20005.stn.llnw.net
|
||||
0.0.0.0 cds20404.lcy.llnw.net
|
||||
0.0.0.0 cds20411.lcy.llnw.net
|
||||
0.0.0.0 cds20415.lcy.llnw.net
|
||||
0.0.0.0 cds20416.lcy.llnw.net
|
||||
0.0.0.0 cds20417.lcy.llnw.net
|
||||
0.0.0.0 cds20424.lcy.llnw.net
|
||||
0.0.0.0 cds20425.lcy.llnw.net
|
||||
0.0.0.0 cds20431.lcy.llnw.net
|
||||
0.0.0.0 cds20435.lcy.llnw.net
|
||||
0.0.0.0 cds20440.lcy.llnw.net
|
||||
0.0.0.0 cds20443.lcy.llnw.net
|
||||
0.0.0.0 cds20445.lcy.llnw.net
|
||||
0.0.0.0 cds20450.lcy.llnw.net
|
||||
0.0.0.0 cds20452.lcy.llnw.net
|
||||
0.0.0.0 cds20457.lcy.llnw.net
|
||||
0.0.0.0 cds20461.lcy.llnw.net
|
||||
0.0.0.0 cds20469.lcy.llnw.net
|
||||
0.0.0.0 cds20475.lcy.llnw.net
|
||||
0.0.0.0 cds20482.lcy.llnw.net
|
||||
0.0.0.0 cds20485.lcy.llnw.net
|
||||
0.0.0.0 cds20495.lcy.llnw.net
|
||||
0.0.0.0 cds21205.lon.llnw.net
|
||||
0.0.0.0 cds21207.lon.llnw.net
|
||||
0.0.0.0 cds21225.lon.llnw.net
|
||||
0.0.0.0 cds21229.lon.llnw.net
|
||||
0.0.0.0 cds21233.lon.llnw.net
|
||||
0.0.0.0 cds21238.lon.llnw.net
|
||||
0.0.0.0 cds21244.lon.llnw.net
|
||||
0.0.0.0 cds21249.lon.llnw.net
|
||||
0.0.0.0 cds21256.lon.llnw.net
|
||||
0.0.0.0 cds21257.lon.llnw.net
|
||||
0.0.0.0 cds21258.lon.llnw.net
|
||||
0.0.0.0 cds21261.lon.llnw.net
|
||||
0.0.0.0 cds21267.lon.llnw.net
|
||||
0.0.0.0 cds21278.lon.llnw.net
|
||||
0.0.0.0 cds21281.lon.llnw.net
|
||||
0.0.0.0 cds21293.lon.llnw.net
|
||||
0.0.0.0 cds21309.lon.llnw.net
|
||||
0.0.0.0 cds21313.lon.llnw.net
|
||||
0.0.0.0 cds21321.lon.llnw.net
|
||||
0.0.0.0 cds299.lcy.llnw.net
|
||||
0.0.0.0 cds308.lcy.llnw.net
|
||||
0.0.0.0 cds30027.stn.llnw.net
|
||||
0.0.0.0 cds310.lcy.llnw.net
|
||||
0.0.0.0 cds38.ory.llnw.net
|
||||
0.0.0.0 cds54.ory.llnw.net
|
||||
0.0.0.0 cds405.lcy.llnw.net
|
||||
0.0.0.0 cds406.lcy.llnw.net
|
||||
0.0.0.0 cds407.fra.llnw.net
|
||||
0.0.0.0 cds416.lcy.llnw.net
|
||||
0.0.0.0 cds421.lcy.llnw.net
|
||||
0.0.0.0 cds422.lcy.llnw.net
|
||||
0.0.0.0 cds425.lcy.llnw.net
|
||||
0.0.0.0 cds426.lcy.llnw.net
|
||||
0.0.0.0 cds447.lcy.llnw.net
|
||||
0.0.0.0 cds458.lcy.llnw.net
|
||||
0.0.0.0 cds459.lcy.llnw.net
|
||||
0.0.0.0 cds461.lcy.llnw.net
|
||||
0.0.0.0 cds468.lcy.llnw.net
|
||||
0.0.0.0 cds469.lcy.llnw.net
|
||||
0.0.0.0 cds471.lcy.llnw.net
|
||||
0.0.0.0 cds483.lcy.llnw.net
|
||||
0.0.0.0 cds484.lcy.llnw.net
|
||||
0.0.0.0 cds489.lcy.llnw.net
|
||||
0.0.0.0 cds493.lcy.llnw.net
|
||||
0.0.0.0 cds494.lcy.llnw.net
|
||||
0.0.0.0 cds812.lon.llnw.net
|
||||
0.0.0.0 cds815.lon.llnw.net
|
||||
0.0.0.0 cds818.lon.llnw.net
|
||||
0.0.0.0 cds832.lon.llnw.net
|
||||
0.0.0.0 cds836.lon.llnw.net
|
||||
0.0.0.0 cds840.lon.llnw.net
|
||||
0.0.0.0 cds843.lon.llnw.net
|
||||
0.0.0.0 cds857.lon.llnw.net
|
||||
0.0.0.0 cds868.lon.llnw.net
|
||||
0.0.0.0 cds869.lon.llnw.net
|
||||
0.0.0.0 ceuswatcab01.blob.core.windows.net
|
||||
0.0.0.0 ceuswatcab02.blob.core.windows.net
|
||||
0.0.0.0 ch1-cor001.api.p001.1drv.com
|
||||
0.0.0.0 ch1-cor002.api.p001.1drv.com
|
||||
0.0.0.0 ch3301-c.1drv.com
|
||||
0.0.0.0 ch3301-e.1drv.com
|
||||
0.0.0.0 ch3301-g.1drv.com
|
||||
0.0.0.0 ch3302-c.1drv.com
|
||||
0.0.0.0 ch3302-e.1drv.com
|
||||
0.0.0.0 compatexchange1.trafficmanager.net
|
||||
0.0.0.0 corp.sts.microsoft.com
|
||||
0.0.0.0 corpext.msitadfs.glbdns2.microsoft.com
|
||||
0.0.0.0 cs1.wpc.v0cdn.net
|
||||
0.0.0.0 cy2.vortex.data.microsoft.com.akadns.net
|
||||
0.0.0.0 db3aqu.atdmt.com
|
||||
0.0.0.0 db5.settings.data.microsoft.com.akadns.net
|
||||
0.0.0.0 db5.settings-win.data.microsoft.com.akadns.net
|
||||
0.0.0.0 db5.vortex.data.microsoft.com.akadns.net
|
||||
0.0.0.0 db5-eap.settings-win.data.microsoft.com.akadns.net
|
||||
0.0.0.0 df.telemetry.microsoft.com
|
||||
0.0.0.0 diagnostics.support.microsoft.com
|
||||
0.0.0.0 eaus2watcab01.blob.core.windows.net
|
||||
0.0.0.0 eaus2watcab02.blob.core.windows.net
|
||||
0.0.0.0 ec.atdmt.com
|
||||
0.0.0.0 flex.msn.com
|
||||
0.0.0.0 g.msn.com
|
||||
0.0.0.0 geo.settings.data.microsoft.com.akadns.net
|
||||
0.0.0.0 geo.settings-win.data.microsoft.com.akadns.net
|
||||
0.0.0.0 geo.vortex.data.microsoft.com.akadns.net
|
||||
0.0.0.0 h1.msn.com
|
||||
0.0.0.0 h2.msn.com
|
||||
0.0.0.0 hk2.settings.data.microsoft.com.akadns.net
|
||||
0.0.0.0 hk2.wns.windows.com
|
||||
0.0.0.0 hk2sch130020721.wns.windows.com
|
||||
0.0.0.0 hk2sch130020723.wns.windows.com
|
||||
0.0.0.0 hk2sch130020726.wns.windows.com
|
||||
0.0.0.0 hk2sch130020729.wns.windows.com
|
||||
0.0.0.0 hk2sch130020732.wns.windows.com
|
||||
0.0.0.0 hk2sch130020824.wns.windows.com
|
||||
0.0.0.0 hk2sch130020843.wns.windows.com
|
||||
0.0.0.0 hk2sch130020851.wns.windows.com
|
||||
0.0.0.0 hk2sch130020854.wns.windows.com
|
||||
0.0.0.0 hk2sch130020855.wns.windows.com
|
||||
0.0.0.0 hk2sch130020924.wns.windows.com
|
||||
0.0.0.0 hk2sch130020936.wns.windows.com
|
||||
0.0.0.0 hk2sch130020940.wns.windows.com
|
||||
0.0.0.0 hk2sch130020956.wns.windows.com
|
||||
0.0.0.0 hk2sch130020958.wns.windows.com
|
||||
0.0.0.0 hk2sch130020961.wns.windows.com
|
||||
0.0.0.0 hk2sch130021017.wns.windows.com
|
||||
0.0.0.0 hk2sch130021029.wns.windows.com
|
||||
0.0.0.0 hk2sch130021035.wns.windows.com
|
||||
0.0.0.0 hk2sch130021137.wns.windows.com
|
||||
0.0.0.0 hk2sch130021142.wns.windows.com
|
||||
0.0.0.0 hk2sch130021153.wns.windows.com
|
||||
0.0.0.0 hk2sch130021217.wns.windows.com
|
||||
0.0.0.0 hk2sch130021246.wns.windows.com
|
||||
0.0.0.0 hk2sch130021249.wns.windows.com
|
||||
0.0.0.0 hk2sch130021260.wns.windows.com
|
||||
0.0.0.0 hk2sch130021264.wns.windows.com
|
||||
0.0.0.0 hk2sch130021322.wns.windows.com
|
||||
0.0.0.0 hk2sch130021323.wns.windows.com
|
||||
0.0.0.0 hk2sch130021329.wns.windows.com
|
||||
0.0.0.0 hk2sch130021334.wns.windows.com
|
||||
0.0.0.0 hk2sch130021360.wns.windows.com
|
||||
0.0.0.0 hk2sch130021432.wns.windows.com
|
||||
0.0.0.0 hk2sch130021433.wns.windows.com
|
||||
0.0.0.0 hk2sch130021435.wns.windows.com
|
||||
0.0.0.0 hk2sch130021437.wns.windows.com
|
||||
0.0.0.0 hk2sch130021440.wns.windows.com
|
||||
0.0.0.0 hk2sch130021450.wns.windows.com
|
||||
0.0.0.0 hk2sch130021518.wns.windows.com
|
||||
0.0.0.0 hk2sch130021523.wns.windows.com
|
||||
0.0.0.0 hk2sch130021526.wns.windows.com
|
||||
0.0.0.0 hk2sch130021527.wns.windows.com
|
||||
0.0.0.0 hk2sch130021544.wns.windows.com
|
||||
0.0.0.0 hk2sch130021554.wns.windows.com
|
||||
0.0.0.0 hk2sch130021618.wns.windows.com
|
||||
0.0.0.0 hk2sch130021634.wns.windows.com
|
||||
0.0.0.0 hk2sch130021638.wns.windows.com
|
||||
0.0.0.0 hk2sch130021646.wns.windows.com
|
||||
0.0.0.0 hk2sch130021652.wns.windows.com
|
||||
0.0.0.0 hk2sch130021654.wns.windows.com
|
||||
0.0.0.0 hk2sch130021657.wns.windows.com
|
||||
0.0.0.0 hk2sch130021723.wns.windows.com
|
||||
0.0.0.0 hk2sch130021726.wns.windows.com
|
||||
0.0.0.0 hk2sch130021727.wns.windows.com
|
||||
0.0.0.0 hk2sch130021730.wns.windows.com
|
||||
0.0.0.0 hk2sch130021731.wns.windows.com
|
||||
0.0.0.0 hk2sch130021754.wns.windows.com
|
||||
0.0.0.0 hk2sch130021829.wns.windows.com
|
||||
0.0.0.0 hk2sch130021830.wns.windows.com
|
||||
0.0.0.0 hk2sch130021833.wns.windows.com
|
||||
0.0.0.0 hk2sch130021840.wns.windows.com
|
||||
0.0.0.0 hk2sch130021842.wns.windows.com
|
||||
0.0.0.0 hk2sch130021851.wns.windows.com
|
||||
0.0.0.0 hk2sch130021852.wns.windows.com
|
||||
0.0.0.0 hk2sch130021927.wns.windows.com
|
||||
0.0.0.0 hk2sch130021928.wns.windows.com
|
||||
0.0.0.0 hk2sch130021929.wns.windows.com
|
||||
0.0.0.0 hk2sch130021958.wns.windows.com
|
||||
0.0.0.0 hk2sch130022035.wns.windows.com
|
||||
0.0.0.0 hk2sch130022041.wns.windows.com
|
||||
0.0.0.0 hk2sch130022049.wns.windows.com
|
||||
0.0.0.0 hk2sch130022135.wns.windows.com
|
||||
0.0.0.0 hk2wns1.wns.windows.com
|
||||
0.0.0.0 hk2wns1b.wns.windows.com
|
||||
0.0.0.0 i-am3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-am3p-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-am3p-cor003.api.p001.1drv.com
|
||||
0.0.0.0 i-am3p-cor004.api.p001.1drv.com
|
||||
0.0.0.0 i-am3p-cor005.api.p001.1drv.com
|
||||
0.0.0.0 i-bl6p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-bl6p-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-bn3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-bn3p-cor090.api.p001.1drv.com
|
||||
0.0.0.0 i-by3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-by3p-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-ch1-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-ch1-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-db3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-db3p-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-db3p-cor003.api.p001.1drv.com
|
||||
0.0.0.0 i-db3p-cor004.api.p001.1drv.com
|
||||
0.0.0.0 i-db3p-cor005.api.p001.1drv.com
|
||||
0.0.0.0 i-sn2-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-sn2-cor002.api.p001.1drv.com
|
||||
0.0.0.0 i-sn3p-cor001.api.p001.1drv.com
|
||||
0.0.0.0 i-sn3p-cor002.api.p001.1drv.com
|
||||
0.0.0.0 ieonlinews.microsoft.com
|
||||
0.0.0.0 ieonlinews.trafficmanager.net
|
||||
0.0.0.0 insideruser.trafficmanager.net
|
||||
0.0.0.0 lb1.www.ms.akadns.net
|
||||
0.0.0.0 live.rads.msn.com
|
||||
0.0.0.0 m.adnxs.com
|
||||
0.0.0.0 mobile.pipe.aria.microsoft.com
|
||||
0.0.0.0 modern.watson.data.microsoft.com.akadns.net
|
||||
0.0.0.0 msedge.net
|
||||
0.0.0.0 msntest.serving-sys.com
|
||||
0.0.0.0 nexus.officeapps.live.com
|
||||
0.0.0.0 nexusrules.officeapps.live.com
|
||||
0.0.0.0 nw-umwatson.events.data.microsoft.com
|
||||
0.0.0.0 oca.telemetry.microsoft.com
|
||||
0.0.0.0 onecollector.cloudapp.aria.akadns.net
|
||||
0.0.0.0 par02p.wns.windows.com
|
||||
0.0.0.0 pre.footprintpredict.com
|
||||
0.0.0.0 preview.msn.com
|
||||
0.0.0.0 rad.live.com
|
||||
0.0.0.0 rad.msn.com
|
||||
0.0.0.0 redir.metaservices.microsoft.com
|
||||
0.0.0.0 reports.wes.df.telemetry.microsoft.com
|
||||
0.0.0.0 schemas.microsoft.akadns.net
|
||||
0.0.0.0 secure.adnxs.com
|
||||
0.0.0.0 secure.flashtalking.com
|
||||
0.0.0.0 services.wes.df.telemetry.microsoft.com
|
||||
0.0.0.0 settings-sandbox.data.microsoft.com
|
||||
0.0.0.0 settings-win-ppe.data.microsoft.com
|
||||
0.0.0.0 settings.data.glbdns2.microsoft.com
|
||||
0.0.0.0 settingsfd-geo.trafficmanager.net
|
||||
0.0.0.0 sg2p.wns.windows.com
|
||||
0.0.0.0 sn3301-c.1drv.com
|
||||
0.0.0.0 sn3301-e.1drv.com
|
||||
0.0.0.0 sn3301-g.1drv.com
|
||||
0.0.0.0 spynet2.microsoft.com
|
||||
0.0.0.0 spynetalt.microsoft.com
|
||||
0.0.0.0 spyneteurope.microsoft.akadns.net
|
||||
0.0.0.0 sqm.df.telemetry.microsoft.com
|
||||
0.0.0.0 sqm.telemetry.microsoft.com
|
||||
0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net
|
||||
0.0.0.0 ssw.live.com
|
||||
0.0.0.0 survey.watson.microsoft.com
|
||||
0.0.0.0 tele.trafficmanager.net
|
||||
0.0.0.0 telecommand.telemetry.microsoft.com
|
||||
0.0.0.0 telemetry.appex.bing.net
|
||||
0.0.0.0 telemetry.microsoft.com
|
||||
0.0.0.0 telemetry.remoteapp.windowsazure.com
|
||||
0.0.0.0 telemetry.urs.microsoft.com
|
||||
0.0.0.0 teredo.ipv6.microsoft.com
|
||||
0.0.0.0 test.activity.windows.com
|
||||
0.0.0.0 umwatsonc.events.data.microsoft.com
|
||||
0.0.0.0 v10.vortex-win.data.microsoft.com
|
||||
0.0.0.0 v10-win.vortex.data.microsoft.com.akadns.net
|
||||
0.0.0.0 v20.vortex-win.data.microsoft.com
|
||||
0.0.0.0 view.atdmt.com
|
||||
0.0.0.0 vortex-sandbox.data.microsoft.com
|
||||
0.0.0.0 vortex.data.glbdns2.microsoft.com
|
||||
0.0.0.0 vortex.data.microsoft.com
|
||||
0.0.0.0 watson.live.com
|
||||
0.0.0.0 watson.microsoft.com
|
||||
0.0.0.0 watson.ppe.telemetry.microsoft.com
|
||||
0.0.0.0 watson.telemetry.microsoft.com
|
||||
0.0.0.0 web.vortex.data.microsoft.com
|
||||
0.0.0.0 wes.df.telemetry.microsoft.com
|
||||
0.0.0.0 weus2watcab01.blob.core.windows.net
|
||||
0.0.0.0 weus2watcab02.blob.core.windows.net
|
||||
0.0.0.0 win10.ipv6.microsoft.com
|
||||
0.0.0.0 win1710.ipv6.microsoft.com
|
||||
0.0.0.0 win8.ipv6.microsoft.com
|
||||
0.0.0.0 ztd.dds.microsoft.com
|
@ -1,587 +0,0 @@
|
||||
127.0.0.1 admob.com
|
||||
127.0.0.1 ads.gmodules.com
|
||||
127.0.0.1 ads.google.com
|
||||
127.0.0.1 adservice.google.com
|
||||
127.0.0.1 afd.l.google.com
|
||||
127.0.0.1 badad.googleplex.com
|
||||
127.0.0.1 csi.gstatic.com
|
||||
127.0.0.1 doubleclick.com
|
||||
127.0.0.1 doubleclick.net
|
||||
127.0.0.1 google-analytics.com
|
||||
127.0.0.1 googleadservices.com
|
||||
127.0.0.1 googleadsserving.cn
|
||||
127.0.0.1 googlecommerce.com
|
||||
127.0.0.1 googlesyndication.com
|
||||
127.0.0.1 mobileads.google.com
|
||||
127.0.0.1 pagead-tpc.l.google.com
|
||||
127.0.0.1 pagead.google.com
|
||||
127.0.0.1 pagead.l.google.com
|
||||
127.0.0.1 service.urchin.com
|
||||
127.0.0.1 09mk.cn
|
||||
127.0.0.1 100peng.com
|
||||
127.0.0.1 114la.com
|
||||
127.0.0.1 123juzi.net
|
||||
127.0.0.1 138lm.com
|
||||
127.0.0.1 17un.com
|
||||
127.0.0.1 2cnt.net
|
||||
127.0.0.1 3gmimo.com
|
||||
127.0.0.1 3xx.vip
|
||||
127.0.0.1 51.la
|
||||
127.0.0.1 51taifu.com
|
||||
127.0.0.1 51yes.com
|
||||
127.0.0.1 600ad.com
|
||||
127.0.0.1 6dad.com
|
||||
127.0.0.1 70e.com
|
||||
127.0.0.1 86.cc
|
||||
127.0.0.1 8le8le.com
|
||||
127.0.0.1 8ox.cn
|
||||
127.0.0.1 95558000.com
|
||||
127.0.0.1 99click.com
|
||||
127.0.0.1 99youmeng.com
|
||||
127.0.0.1 a3p4.net
|
||||
127.0.0.1 acs86.com
|
||||
127.0.0.1 acxiom-online.com
|
||||
127.0.0.1 ad-brix.com
|
||||
127.0.0.1 ad-delivery.net
|
||||
127.0.0.1 ad-locus.com
|
||||
127.0.0.1 ad-plus.cn
|
||||
127.0.0.1 ad7.com
|
||||
127.0.0.1 adadapted.com
|
||||
127.0.0.1 adadvisor.net
|
||||
127.0.0.1 adap.tv
|
||||
127.0.0.1 adbana.com
|
||||
127.0.0.1 adchina.com
|
||||
127.0.0.1 adcome.cn
|
||||
127.0.0.1 ader.mobi
|
||||
127.0.0.1 adform.net
|
||||
127.0.0.1 adfuture.cn
|
||||
127.0.0.1 adhouyi.com
|
||||
127.0.0.1 adinfuse.com
|
||||
127.0.0.1 adirects.com
|
||||
127.0.0.1 adjust.io
|
||||
127.0.0.1 adkmob.com
|
||||
127.0.0.1 adlive.cn
|
||||
127.0.0.1 adlocus.com
|
||||
127.0.0.1 admaji.com
|
||||
127.0.0.1 admin6.com
|
||||
127.0.0.1 admon.cn
|
||||
127.0.0.1 adnyg.com
|
||||
127.0.0.1 adpolestar.net
|
||||
127.0.0.1 adpro.cn
|
||||
127.0.0.1 adpush.cn
|
||||
127.0.0.1 adquan.com
|
||||
127.0.0.1 adreal.cn
|
||||
127.0.0.1 ads8.com
|
||||
127.0.0.1 adsame.com
|
||||
127.0.0.1 adsmogo.com
|
||||
127.0.0.1 adsmogo.org
|
||||
127.0.0.1 adsunflower.com
|
||||
127.0.0.1 adsunion.com
|
||||
127.0.0.1 adtrk.me
|
||||
127.0.0.1 adups.com
|
||||
127.0.0.1 aduu.cn
|
||||
127.0.0.1 advertising.com
|
||||
127.0.0.1 adview.cn
|
||||
127.0.0.1 advmob.cn
|
||||
127.0.0.1 adwetec.com
|
||||
127.0.0.1 adwhirl.com
|
||||
127.0.0.1 adwo.com
|
||||
127.0.0.1 adxmi.com
|
||||
127.0.0.1 adyun.com
|
||||
127.0.0.1 adzerk.net
|
||||
127.0.0.1 agrant.cn
|
||||
127.0.0.1 agrantsem.com
|
||||
127.0.0.1 aihaoduo.cn
|
||||
127.0.0.1 ajapk.com
|
||||
127.0.0.1 allyes.cn
|
||||
127.0.0.1 allyes.com
|
||||
127.0.0.1 amazon-adsystem.com
|
||||
127.0.0.1 analysys.cn
|
||||
127.0.0.1 angsrvr.com
|
||||
127.0.0.1 anquan.org
|
||||
127.0.0.1 anysdk.com
|
||||
127.0.0.1 appadhoc.com
|
||||
127.0.0.1 appads.com
|
||||
127.0.0.1 appboy.com
|
||||
127.0.0.1 appdriver.cn
|
||||
127.0.0.1 appjiagu.com
|
||||
127.0.0.1 applifier.com
|
||||
127.0.0.1 appsflyer.com
|
||||
127.0.0.1 atdmt.com
|
||||
127.0.0.1 baifendian.com
|
||||
127.0.0.1 banmamedia.com
|
||||
127.0.0.1 baoyatu.cc
|
||||
127.0.0.1 baycode.cn
|
||||
127.0.0.1 bayimob.com
|
||||
127.0.0.1 behe.com
|
||||
127.0.0.1 bfshan.cn
|
||||
127.0.0.1 biddingos.com
|
||||
127.0.0.1 biddingx.com
|
||||
127.0.0.1 bjvvqu.cn
|
||||
127.0.0.1 bjxiaohua.com
|
||||
127.0.0.1 bloggerads.net
|
||||
127.0.0.1 branch.io
|
||||
127.0.0.1 bsdev.cn
|
||||
127.0.0.1 bshare.cn
|
||||
127.0.0.1 btyou.com
|
||||
127.0.0.1 bugtags.com
|
||||
127.0.0.1 buysellads.com
|
||||
127.0.0.1 c0563.com
|
||||
127.0.0.1 cacafly.com
|
||||
127.0.0.1 casee.cn
|
||||
127.0.0.1 cdnmaster.com
|
||||
127.0.0.1 chance-ad.com
|
||||
127.0.0.1 chanet.com.cn
|
||||
127.0.0.1 chartbeat.com
|
||||
127.0.0.1 chartboost.com
|
||||
127.0.0.1 chengadx.com
|
||||
127.0.0.1 chmae.com
|
||||
127.0.0.1 clickadu.com
|
||||
127.0.0.1 clicki.cn
|
||||
127.0.0.1 clicktracks.com
|
||||
127.0.0.1 clickzs.com
|
||||
127.0.0.1 cloudmobi.net
|
||||
127.0.0.1 cmcore.com
|
||||
127.0.0.1 cnxad.com
|
||||
127.0.0.1 cnzz.com
|
||||
127.0.0.1 cnzzlink.com
|
||||
127.0.0.1 cocounion.com
|
||||
127.0.0.1 coocaatv.com
|
||||
127.0.0.1 cooguo.com
|
||||
127.0.0.1 coolguang.com
|
||||
127.0.0.1 coremetrics.com
|
||||
127.0.0.1 cpmchina.co
|
||||
127.0.0.1 cpx24.com
|
||||
127.0.0.1 crasheye.cn
|
||||
127.0.0.1 crosschannel.com
|
||||
127.0.0.1 ctrmi.com
|
||||
127.0.0.1 customer-security.online
|
||||
127.0.0.1 daoyoudao.com
|
||||
127.0.0.1 datouniao.com
|
||||
127.0.0.1 ddapp.cn
|
||||
127.0.0.1 dianjoy.com
|
||||
127.0.0.1 dianru.com
|
||||
127.0.0.1 disqusads.com
|
||||
127.0.0.1 domob.cn
|
||||
127.0.0.1 domob.com.cn
|
||||
127.0.0.1 domob.org
|
||||
127.0.0.1 dotmore.com.tw
|
||||
127.0.0.1 doubleverify.com
|
||||
127.0.0.1 doudouguo.com
|
||||
127.0.0.1 doumob.com
|
||||
127.0.0.1 duanat.com
|
||||
127.0.0.1 duiba.com.cn
|
||||
127.0.0.1 duomeng.cn
|
||||
127.0.0.1 dxpmedia.com
|
||||
127.0.0.1 edigitalsurvey.com
|
||||
127.0.0.1 eduancm.com
|
||||
127.0.0.1 emarbox.com
|
||||
127.0.0.1 epsilon.com
|
||||
127.0.0.1 exosrv.com
|
||||
127.0.0.1 fancyapi.com
|
||||
127.0.0.1 feitian001.com
|
||||
127.0.0.1 feixin2.com
|
||||
127.0.0.1 flashtalking.com
|
||||
127.0.0.1 fraudmetrix.cn
|
||||
127.0.0.1 g1.tagtic.cn
|
||||
127.0.0.1 gentags.net
|
||||
127.0.0.1 gepush.com
|
||||
127.0.0.1 getui.com
|
||||
127.0.0.1 glispa.com
|
||||
127.0.0.1 go-mpulse
|
||||
127.0.0.1 go-mpulse.net
|
||||
127.0.0.1 godloveme.cn
|
||||
127.0.0.1 gridsum.com
|
||||
127.0.0.1 gridsumdissector.cn
|
||||
127.0.0.1 gridsumdissector.com
|
||||
127.0.0.1 growingio.com
|
||||
127.0.0.1 guohead.com
|
||||
127.0.0.1 guomob.com
|
||||
127.0.0.1 haoghost.com
|
||||
127.0.0.1 hivecn.cn
|
||||
127.0.0.1 hypers.com
|
||||
127.0.0.1 icast.cn
|
||||
127.0.0.1 igexin.com
|
||||
127.0.0.1 il8r.com
|
||||
127.0.0.1 imageter.com
|
||||
127.0.0.1 immob.cn
|
||||
127.0.0.1 inad.com
|
||||
127.0.0.1 inmobi.cn
|
||||
127.0.0.1 inmobi.net
|
||||
127.0.0.1 inmobicdn.cn
|
||||
127.0.0.1 inmobicdn.net
|
||||
127.0.0.1 innity.com
|
||||
127.0.0.1 instabug.com
|
||||
127.0.0.1 intely.cn
|
||||
127.0.0.1 iperceptions.com
|
||||
127.0.0.1 ipinyou.com
|
||||
127.0.0.1 irs01.com
|
||||
127.0.0.1 irs01.net
|
||||
127.0.0.1 irs09.com
|
||||
127.0.0.1 istreamsche.com
|
||||
127.0.0.1 jesgoo.com
|
||||
127.0.0.1 jiaeasy.net
|
||||
127.0.0.1 jiguang.cn
|
||||
127.0.0.1 jimdo.com
|
||||
127.0.0.1 jisucn.com
|
||||
127.0.0.1 jmgehn.cn
|
||||
127.0.0.1 jpush.cn
|
||||
127.0.0.1 jusha.com
|
||||
127.0.0.1 juzi.cn
|
||||
127.0.0.1 juzilm.com
|
||||
127.0.0.1 kejet.com
|
||||
127.0.0.1 kejet.net
|
||||
127.0.0.1 keydot.net
|
||||
127.0.0.1 keyrun.cn
|
||||
127.0.0.1 kmd365.com
|
||||
127.0.0.1 krux.net
|
||||
127.0.0.1 lnk0.com
|
||||
127.0.0.1 lnk8.cn
|
||||
127.0.0.1 localytics.com
|
||||
127.0.0.1 lomark.cn
|
||||
127.0.0.1 lotuseed.com
|
||||
127.0.0.1 lrswl.com
|
||||
127.0.0.1 lufax.com
|
||||
127.0.0.1 madhouse.cn
|
||||
127.0.0.1 madmini.com
|
||||
127.0.0.1 madserving.com
|
||||
127.0.0.1 magicwindow.cn
|
||||
127.0.0.1 mathtag.com
|
||||
127.0.0.1 maysunmedia.com
|
||||
127.0.0.1 mbai.cn
|
||||
127.0.0.1 mediaplex.com
|
||||
127.0.0.1 mediav.com
|
||||
127.0.0.1 megajoy.com
|
||||
127.0.0.1 meiqia.com
|
||||
127.0.0.1 mgogo.com
|
||||
127.0.0.1 miaozhen.com
|
||||
127.0.0.1 microad-cn.com
|
||||
127.0.0.1 miidi.net
|
||||
127.0.0.1 mijifen.com
|
||||
127.0.0.1 mixpanel.com
|
||||
127.0.0.1 mjmobi.com
|
||||
127.0.0.1 mng-ads.com
|
||||
127.0.0.1 moad.cn
|
||||
127.0.0.1 moatads.com
|
||||
127.0.0.1 mobaders.com
|
||||
127.0.0.1 mobclix.com
|
||||
127.0.0.1 mobgi.com
|
||||
127.0.0.1 mobisage.cn
|
||||
127.0.0.1 mobvista.com
|
||||
127.0.0.1 mopub.com
|
||||
127.0.0.1 moquanad.com
|
||||
127.0.0.1 mpush.cn
|
||||
127.0.0.1 mxpnl.com
|
||||
127.0.0.1 myhug.cn
|
||||
127.0.0.1 mzy2014.com
|
||||
127.0.0.1 networkbench.com
|
||||
127.0.0.1 ninebox.cn
|
||||
127.0.0.1 ntalker.com
|
||||
127.0.0.1 nylalobghyhirgh.com
|
||||
127.0.0.1 o2omobi.com
|
||||
127.0.0.1 oadz.com
|
||||
127.0.0.1 oneapm.com
|
||||
127.0.0.1 onetad.com
|
||||
127.0.0.1 optaim.com
|
||||
127.0.0.1 optimix.asia
|
||||
127.0.0.1 optimix.cn
|
||||
127.0.0.1 optimizelyapis.com
|
||||
127.0.0.1 overture.com
|
||||
127.0.0.1 p0y.cn
|
||||
127.0.0.1 pagechoice.net
|
||||
127.0.0.1 pingdom.net
|
||||
127.0.0.1 plugrush.com
|
||||
127.0.0.1 popin.cc
|
||||
127.0.0.1 pro.cn
|
||||
127.0.0.1 publicidad.net
|
||||
127.0.0.1 publicidad.tv
|
||||
127.0.0.1 pubmatic.com
|
||||
127.0.0.1 pubnub.com
|
||||
127.0.0.1 qcl777.com
|
||||
127.0.0.1 qiyou.com
|
||||
127.0.0.1 qtmojo.com
|
||||
127.0.0.1 quantcount.com
|
||||
127.0.0.1 qucaigg.com
|
||||
127.0.0.1 qumi.com
|
||||
127.0.0.1 qxxys.com
|
||||
127.0.0.1 reachmax.cn
|
||||
127.0.0.1 responsys.net
|
||||
127.0.0.1 revsci.net
|
||||
127.0.0.1 rlcdn.com
|
||||
127.0.0.1 rtbasia.com
|
||||
127.0.0.1 sanya1.com
|
||||
127.0.0.1 scupio.com
|
||||
127.0.0.1 serving-sys.com
|
||||
127.0.0.1 shuiguo.com
|
||||
127.0.0.1 shuzilm.cn
|
||||
127.0.0.1 similarweb.com
|
||||
127.0.0.1 sitemeter.com
|
||||
127.0.0.1 sitescout.com
|
||||
127.0.0.1 sitetag.us
|
||||
127.0.0.1 smartmad.com
|
||||
127.0.0.1 social-touch.com
|
||||
127.0.0.1 somecoding.com
|
||||
127.0.0.1 sponsorpay.com
|
||||
127.0.0.1 stargame.com
|
||||
127.0.0.1 stg8.com
|
||||
127.0.0.1 switchadhub.com
|
||||
127.0.0.1 sycbbs.com
|
||||
127.0.0.1 synacast.com
|
||||
127.0.0.1 sysdig.com
|
||||
127.0.0.1 talkingdata.com
|
||||
127.0.0.1 talkingdata.net
|
||||
127.0.0.1 tansuotv.com
|
||||
127.0.0.1 tanv.com
|
||||
127.0.0.1 tanx.com
|
||||
127.0.0.1 tapjoy.cn
|
||||
127.0.0.1 th7.cn
|
||||
127.0.0.1 thoughtleadr.com
|
||||
127.0.0.1 tianmidian.com
|
||||
127.0.0.1 tiqcdn.com
|
||||
127.0.0.1 touclick.com
|
||||
127.0.0.1 trafficjam.cn
|
||||
127.0.0.1 trafficmp.com
|
||||
127.0.0.1 tuia.cn
|
||||
127.0.0.1 ueadlian.com
|
||||
127.0.0.1 uerzyr.cn
|
||||
127.0.0.1 ugdtimg.com
|
||||
127.0.0.1 ugvip.com
|
||||
127.0.0.1 ujian.cc
|
||||
127.0.0.1 ukeiae.com
|
||||
127.0.0.1 umeng.co
|
||||
127.0.0.1 umeng.com
|
||||
127.0.0.1 umtrack.com
|
||||
127.0.0.1 unimhk.com
|
||||
127.0.0.1 union-wifi.com
|
||||
127.0.0.1 union001.com
|
||||
127.0.0.1 unionsy.com
|
||||
127.0.0.1 unlitui.com
|
||||
127.0.0.1 uri6.com
|
||||
127.0.0.1 ushaqi.com
|
||||
127.0.0.1 usingde.com
|
||||
127.0.0.1 uuzu.com
|
||||
127.0.0.1 uyunad.com
|
||||
127.0.0.1 vamaker.com
|
||||
127.0.0.1 voiceads.cn
|
||||
127.0.0.1 voiceads.com
|
||||
127.0.0.1 vpon.com
|
||||
127.0.0.1 vungle.cn
|
||||
127.0.0.1 vungle.com
|
||||
127.0.0.1 waps.cn
|
||||
127.0.0.1 wapx.cn
|
||||
127.0.0.1 webterren.com
|
||||
127.0.0.1 whpxy.com
|
||||
127.0.0.1 winads.cn
|
||||
127.0.0.1 winasdaq.com
|
||||
127.0.0.1 wiyun.com
|
||||
127.0.0.1 wooboo.com.cn
|
||||
127.0.0.1 wqmobile.com
|
||||
127.0.0.1 wrating.com
|
||||
127.0.0.1 wumii.cn
|
||||
127.0.0.1 xcy8.com
|
||||
127.0.0.1 xdrig.com
|
||||
127.0.0.1 xiaozhen.com
|
||||
127.0.0.1 xibao100.com
|
||||
127.0.0.1 xtgreat.com
|
||||
127.0.0.1 xy.com
|
||||
127.0.0.1 yandui.com
|
||||
127.0.0.1 yigao.com
|
||||
127.0.0.1 yijifen.com
|
||||
127.0.0.1 yinooo.com
|
||||
127.0.0.1 yiqifa.com
|
||||
127.0.0.1 yiwk.com
|
||||
127.0.0.1 ylunion.com
|
||||
127.0.0.1 ymapp.com
|
||||
127.0.0.1 ymcdn.cn
|
||||
127.0.0.1 yongyuelm.com
|
||||
127.0.0.1 yooli.com
|
||||
127.0.0.1 youmi.net
|
||||
127.0.0.1 youxiaoad.com
|
||||
127.0.0.1 yoyi.com.cn
|
||||
127.0.0.1 yoyi.tv
|
||||
127.0.0.1 yrxmr.com
|
||||
127.0.0.1 ysjwj.com
|
||||
127.0.0.1 yunjiasu.com
|
||||
127.0.0.1 yunpifu.cn
|
||||
127.0.0.1 zampdsp.com
|
||||
127.0.0.1 zamplus.com
|
||||
127.0.0.1 zcdsp.com
|
||||
127.0.0.1 zhidian3g.cn
|
||||
127.0.0.1 zhiziyun.com
|
||||
127.0.0.1 zhjfad.com
|
||||
127.0.0.1 zqzxz.com
|
||||
127.0.0.1 zzsx8.com
|
||||
127.0.0.1 acuityplatform.com
|
||||
127.0.0.1 ad-stir.com
|
||||
127.0.0.1 ad-survey.com
|
||||
127.0.0.1 ad4game.com
|
||||
127.0.0.1 adcloud.jp
|
||||
127.0.0.1 adcolony.com
|
||||
127.0.0.1 addthis.com
|
||||
127.0.0.1 adfurikun.jp
|
||||
127.0.0.1 adhigh.net
|
||||
127.0.0.1 adhood.com
|
||||
127.0.0.1 adinall.com
|
||||
127.0.0.1 adition.com
|
||||
127.0.0.1 adk2x.com
|
||||
127.0.0.1 admarket.mobi
|
||||
127.0.0.1 admarvel.com
|
||||
127.0.0.1 admedia.com
|
||||
127.0.0.1 adnxs.com
|
||||
127.0.0.1 adotmob.com
|
||||
127.0.0.1 adperium.com
|
||||
127.0.0.1 adriver.ru
|
||||
127.0.0.1 adroll.com
|
||||
127.0.0.1 adsco.re
|
||||
127.0.0.1 adservice.com
|
||||
127.0.0.1 adsrvr.org
|
||||
127.0.0.1 adsymptotic.com
|
||||
127.0.0.1 adtaily.com
|
||||
127.0.0.1 adtech.de
|
||||
127.0.0.1 adtechjp.com
|
||||
127.0.0.1 adtechus.com
|
||||
127.0.0.1 airpush.com
|
||||
127.0.0.1 am15.net
|
||||
127.0.0.1 amobee.com
|
||||
127.0.0.1 appier.net
|
||||
127.0.0.1 applift.com
|
||||
127.0.0.1 apsalar.com
|
||||
127.0.0.1 atas.io
|
||||
127.0.0.1 awempire.com
|
||||
127.0.0.1 axonix.com
|
||||
127.0.0.1 beintoo.com
|
||||
127.0.0.1 bepolite.eu
|
||||
127.0.0.1 bidtheatre.com
|
||||
127.0.0.1 bidvertiser.com
|
||||
127.0.0.1 blismedia.com
|
||||
127.0.0.1 brucelead.com
|
||||
127.0.0.1 bttrack.com
|
||||
127.0.0.1 casalemedia.com
|
||||
127.0.0.1 celtra.com
|
||||
127.0.0.1 channeladvisor.com
|
||||
127.0.0.1 connexity.net
|
||||
127.0.0.1 criteo.com
|
||||
127.0.0.1 criteo.net
|
||||
127.0.0.1 csbew.com
|
||||
127.0.0.1 demdex.net
|
||||
127.0.0.1 directrev.com
|
||||
127.0.0.1 dumedia.ru
|
||||
127.0.0.1 effectivemeasure.com
|
||||
127.0.0.1 effectivemeasure.net
|
||||
127.0.0.1 eqads.com
|
||||
127.0.0.1 everesttech.net
|
||||
127.0.0.1 exoclick.com
|
||||
127.0.0.1 extend.tv
|
||||
127.0.0.1 eyereturn.com
|
||||
127.0.0.1 fastapi.net
|
||||
127.0.0.1 fastclick.com
|
||||
127.0.0.1 fastclick.net
|
||||
127.0.0.1 flurry.com
|
||||
127.0.0.1 gosquared.com
|
||||
127.0.0.1 gtags.net
|
||||
127.0.0.1 heyzap.com
|
||||
127.0.0.1 histats.com
|
||||
127.0.0.1 hitslink.com
|
||||
127.0.0.1 hot-mob.com
|
||||
127.0.0.1 hyperpromote.com
|
||||
127.0.0.1 i-mobile.co.jp
|
||||
127.0.0.1 imrworldwide.com
|
||||
127.0.0.1 inmobi.com
|
||||
127.0.0.1 inner-active.mobi
|
||||
127.0.0.1 intentiq.com
|
||||
127.0.0.1 inter1ads.com
|
||||
127.0.0.1 ipredictive.com
|
||||
127.0.0.1 ironsrc.com
|
||||
127.0.0.1 iskyworker.com
|
||||
127.0.0.1 jizzads.com
|
||||
127.0.0.1 juicyads.com
|
||||
127.0.0.1 kochava.com
|
||||
127.0.0.1 leadbolt.com
|
||||
127.0.0.1 leadbolt.net
|
||||
127.0.0.1 leadboltads.net
|
||||
127.0.0.1 leadboltapps.net
|
||||
127.0.0.1 leadboltmobile.net
|
||||
127.0.0.1 lenzmx.com
|
||||
127.0.0.1 liveadvert.com
|
||||
127.0.0.1 marketgid.com
|
||||
127.0.0.1 marketo.com
|
||||
127.0.0.1 mdotm.com
|
||||
127.0.0.1 medialytics.com
|
||||
127.0.0.1 medialytics.io
|
||||
127.0.0.1 meetrics.com
|
||||
127.0.0.1 meetrics.net
|
||||
127.0.0.1 mgid.com
|
||||
127.0.0.1 millennialmedia.com
|
||||
127.0.0.1 mobadme.jp
|
||||
127.0.0.1 mobfox.com
|
||||
127.0.0.1 mobileadtrading.com
|
||||
127.0.0.1 mobilityware.com
|
||||
127.0.0.1 mojiva.com
|
||||
127.0.0.1 mookie1.com
|
||||
127.0.0.1 msads.net
|
||||
127.0.0.1 mydas.mobi
|
||||
127.0.0.1 nend.net
|
||||
127.0.0.1 netshelter.net
|
||||
127.0.0.1 nexage.com
|
||||
127.0.0.1 owneriq.net
|
||||
127.0.0.1 pixels.asia
|
||||
127.0.0.1 plista.com
|
||||
127.0.0.1 popads.net
|
||||
127.0.0.1 powerlinks.com
|
||||
127.0.0.1 propellerads.com
|
||||
127.0.0.1 quantserve.com
|
||||
127.0.0.1 rayjump.com
|
||||
127.0.0.1 revdepo.com
|
||||
127.0.0.1 rubiconproject.com
|
||||
127.0.0.1 sape.ru
|
||||
127.0.0.1 scorecardresearch.com
|
||||
127.0.0.1 segment.com
|
||||
127.0.0.1 serving-sys.com
|
||||
127.0.0.1 sharethis.com
|
||||
127.0.0.1 smaato.com
|
||||
127.0.0.1 smaato.net
|
||||
127.0.0.1 smartadserver.com
|
||||
127.0.0.1 smartnews-ads.com
|
||||
127.0.0.1 startapp.com
|
||||
127.0.0.1 startappexchange.com
|
||||
127.0.0.1 statcounter.com
|
||||
127.0.0.1 steelhousemedia.com
|
||||
127.0.0.1 stickyadstv.com
|
||||
127.0.0.1 supersonic.com
|
||||
127.0.0.1 taboola.com
|
||||
127.0.0.1 tapjoy.com
|
||||
127.0.0.1 tapjoyads.com
|
||||
127.0.0.1 trafficjunky.com
|
||||
127.0.0.1 trafficjunky.net
|
||||
127.0.0.1 tribalfusion.com
|
||||
127.0.0.1 turn.com
|
||||
127.0.0.1 uberads.com
|
||||
127.0.0.1 vidoomy.com
|
||||
127.0.0.1 viglink.com
|
||||
127.0.0.1 voicefive.com
|
||||
127.0.0.1 wedolook.com
|
||||
127.0.0.1 yadro.ru
|
||||
127.0.0.1 yengo.com
|
||||
127.0.0.1 zedo.com
|
||||
127.0.0.1 zemanta.com
|
||||
127.0.0.1 11h5.com
|
||||
127.0.0.1 1kxun.mobi
|
||||
127.0.0.1 26zsd.cn
|
||||
127.0.0.1 519397.com
|
||||
127.0.0.1 626uc.com
|
||||
127.0.0.1 915.com
|
||||
127.0.0.1 appget.cn
|
||||
127.0.0.1 appuu.cn
|
||||
127.0.0.1 coinhive.com
|
||||
127.0.0.1 huodonghezi.cn
|
||||
127.0.0.1 vcbn65.xyz
|
||||
127.0.0.1 wanfeng1.com
|
||||
127.0.0.1 wep016.top
|
||||
127.0.0.1 win-stock.com.cn
|
||||
127.0.0.1 zantainet.com
|
||||
127.0.0.1 dh54wf.xyz
|
||||
127.0.0.1 g2q3e.cn
|
||||
127.0.0.1 114so.cn
|
||||
127.0.0.1 go.10086.cn
|
||||
127.0.0.1 hivedata.cc
|
||||
127.0.0.1 navi.gd.chinamobile.com
|
File diff suppressed because it is too large
Load Diff
@ -1,133 +0,0 @@
|
||||
0hosting187.dyndns.com
|
||||
0hosting187.dyndns.org
|
||||
0jaqkuc24kdjvpgdc8va.littlematchagirl.com.au
|
||||
0n4tblbdfncaauxioxto.ddns.net
|
||||
0nline.23welsfargo39.com.al4all.co.za
|
||||
0npxkvszg.privatescurom.net
|
||||
0qizz.super-promo.hoxo.info
|
||||
0range-espaceclient.particuliersw2.fr
|
||||
0rvcr9ahvnueb4f1la4u.littlematchagirl.com.au
|
||||
0sn.dyndns.biz
|
||||
0tzg4irsuabvucpvw937.littlematchagirl.com.au
|
||||
0vm4hjvug772wnv8kuzj.cedricchenevert.com
|
||||
0vm4hjvug772wnv8kuzj.mbservicesyorkshire.co.uk
|
||||
0wn3d.dyndns.biz
|
||||
5178.1717pcw.com
|
||||
521073--verbraucher-mitteilung-account.sicher-vorbeugung.tk
|
||||
521686-de-verbraucher-kenntnis-benutzer.sicherheitsabwehr-hilfeservice-sicherheitshilfe.tk
|
||||
529499-deu-gast-sicherheit-validierung.sicherheitssystem-sicherheitshilfe.ga
|
||||
53ertt555.from-mn.com
|
||||
540591--nutzung-angabe-validierung.sicherheitshilfe-schutz.gq
|
||||
60aalexandrastreetcom.domainstel.org
|
||||
60l3j5wg.myutilitydomain.com
|
||||
6116.traeumtgerade.de
|
||||
612045126.htmldrop.com
|
||||
6193544.servicesbpd.club
|
||||
6234786296875-60237.portmap.host
|
||||
623623626638885047749469.z19.web.core.windows.net
|
||||
625491-deu-verbraucher-sicherheit-account.paypaldevelopment-system.top
|
||||
adli.topkorder.su
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.2oflranvbs3drvbmwvj2afac0dybr9qinmkumyfng8gnth1q4ah4fi6ecuft.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.alh5zrdnvj7gdymtzxhyea6dsbap6co6om1edtrodnv8c8rsvyg1pb4id5n0.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.cfrsfp8hcpkwdzsetpo8vir0wi1t64yyfq5knbn4ckw231kifi4nz3a9st5m.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.cybgzbqmymjbfcvgdi7aqceiao6d7yfvzclrsxf5whay3gcbddhg8lo81jax.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.gx86fkitocomhes0vfdqv6d1hpsyoxzulwqr8oalqooyt7xfbrwwmznue6it.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.k2q26ojmrogfubejuvyepr9wmrui9iej0ub60bhrqowaqrjac8fspdfrlzaj.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.l3smq6kznlhql0jleqe7ah3yw1oeh3diuwvbr6b6giliikuc2y02w2pisdnq.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.nfesb5q8cmvq5i26d1lchcozxpq9kgmfluhfledohyuc8m8bci4klha9xq8x.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.rqpzrmup7txbcf9eywnz56pwr387jfy2vdrcpbsmvqnxll3jyfysbdfs7cpg.jafinafara.for-our.info
|
||||
securelogin.paypal.it.webapps.mpp.home.autenticazione.y8pksa9yzdxlzza8bltezyrdc5sgliy0gokyfim5bag2agz2riwg7nkzisfj.jafinafara.for-our.info
|
||||
soundofhope.org
|
||||
renminbao.com
|
||||
aboluowang.com
|
||||
secretchina.com
|
||||
minghui.com
|
||||
minghui.org
|
||||
epochtimes.com
|
||||
epochtimes.org
|
||||
dongtaiwang.com
|
||||
dongtaiwang.org
|
||||
ntdtv.com
|
||||
ntdtv.org
|
||||
sucursalpersonas.transaccionesbancolombia.com2f2uf2bb55kpbc1dssr5uno-back-buttoon1.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comcbpagesjsp-nslogin-mada.jsp.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comfjykixj1wbfohdu84wactivarnotificacionesyalertas.alserviciorat-tray.com
|
||||
www.bannedbook.org
|
||||
bannedbook.org
|
||||
dafahao.com
|
||||
dafahao.org
|
||||
minghui.com
|
||||
minghui.org
|
||||
dongtaiwang.com
|
||||
dongtaiwang.org
|
||||
epochtimes.com
|
||||
epochtimes.org
|
||||
tuidang.epochtimes.com
|
||||
tuidang.epochtimes.org
|
||||
dajiyuan.com
|
||||
dajiyuan.org
|
||||
ntdtv.com
|
||||
ntdtv.org
|
||||
falundata.com
|
||||
falundata.org
|
||||
zh-cn.shenyun.com
|
||||
en.shenyun.com
|
||||
zh-cn.shenyun.org
|
||||
en.shenyun.org
|
||||
shenyun.com
|
||||
shenyun.org
|
||||
www.shenyun.com
|
||||
www.shenyun.org
|
||||
www.tuidang.org
|
||||
tuidang.org
|
||||
www.epochweekly.com
|
||||
www.zhengjian.org
|
||||
zhengjian.org
|
||||
www.shenyunperformingarts.org
|
||||
shenyunperformingarts.org
|
||||
www.xinsheng.net
|
||||
xinsheng.net
|
||||
www.fgmtv.org
|
||||
fgmtv.org
|
||||
tw.fgmtv.org
|
||||
www.zhuichaguoji.org
|
||||
zhuichaguoji.org
|
||||
www.yuanming.net
|
||||
yuanming.net
|
||||
www.soundofhope.org
|
||||
soundofhope.org
|
||||
www.wujieliulan.com
|
||||
wujieliulan.com
|
||||
www.zhengwunet.org
|
||||
zhengwunet.org
|
||||
www.guangming.org
|
||||
guangming.org
|
||||
www.mhradio.org
|
||||
mhradio.org
|
||||
www.aboluowang.com
|
||||
aboluowang.com
|
||||
renminbao.com
|
||||
www.secretchina.com
|
||||
secretchina.com
|
||||
www.shenzhoufilm.com
|
||||
shenzhoufilm.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwa.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwar.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauser3dno-back-buttonjqh0xo09v2fn2ba9eg1xwn.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixs.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixss.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixssu.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.commuauserscisk8fb2byspy9cewvsjixssud.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comno-back-button0000000000verifiedalertasynotificaciones.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comno-back-buttonooooooooooverifiedalertasynotificaciones.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comusermagdavalidationsecureactivarproductosenlinea.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessionon.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessiononprotected.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateinuniquevalidtruesessiononprotectedd.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateonline.alserviciorat-tray.com
|
||||
sucursalpersonas.transaccionesbancolombia.comuservalidateonlinee.alserviciorat-tray.com
|
||||
|
||||
#dead domains
|
||||
09mk.cn
|
||||
100peng.com
|
||||
g2q3e.cn
|
@ -1,706 +0,0 @@
|
||||
# NoCoin Filter List
|
||||
# Blocking Web Browser Bitcoin Mining
|
||||
#
|
||||
# Homepage: https://github.com/hoshsadiq/adblock-nocoin-list/
|
||||
# Contribute: https://github.com/hoshsadiq/adblock-nocoin-list/issues
|
||||
# Changelog: https://github.com/hoshsadiq/adblock-nocoin-list/commits/master/hosts.txt
|
||||
# License: https://mit-license.org/
|
||||
#
|
||||
# Last modified: 20 Jan 2021
|
||||
#
|
||||
|
||||
0.0.0.0 cnhv.co
|
||||
0.0.0.0 coin-hive.com
|
||||
0.0.0.0 coinhive.com
|
||||
0.0.0.0 authedmine.com
|
||||
0.0.0.0 api.jsecoin.com
|
||||
0.0.0.0 load.jsecoin.com
|
||||
0.0.0.0 server.jsecoin.com
|
||||
0.0.0.0 miner.pr0gramm.com
|
||||
0.0.0.0 minemytraffic.com
|
||||
0.0.0.0 crypto-loot.com
|
||||
0.0.0.0 cryptaloot.pro
|
||||
0.0.0.0 cryptoloot.pro
|
||||
0.0.0.0 coinerra.com
|
||||
0.0.0.0 coin-have.com
|
||||
0.0.0.0 minero.pw
|
||||
0.0.0.0 minero-proxy-01.now.sh
|
||||
0.0.0.0 minero-proxy-02.now.sh
|
||||
0.0.0.0 minero-proxy-03.now.sh
|
||||
0.0.0.0 api.inwemo.com
|
||||
0.0.0.0 rocks.io
|
||||
0.0.0.0 adminer.com
|
||||
0.0.0.0 ad-miner.com
|
||||
0.0.0.0 jsccnn.com
|
||||
0.0.0.0 jscdndel.com
|
||||
0.0.0.0 coinhiveproxy.com
|
||||
0.0.0.0 coinblind.com
|
||||
0.0.0.0 coinnebula.com
|
||||
0.0.0.0 monerominer.rocks
|
||||
0.0.0.0 cdn.cloudcoins.co
|
||||
0.0.0.0 coinlab.biz
|
||||
0.0.0.0 go.megabanners.cf
|
||||
0.0.0.0 baiduccdn1.com
|
||||
0.0.0.0 wsp.marketgid.com
|
||||
0.0.0.0 papoto.com
|
||||
0.0.0.0 flare-analytics.com
|
||||
0.0.0.0 www.sparechange.io
|
||||
0.0.0.0 static.sparechange.io
|
||||
0.0.0.0 miner.nablabee.com
|
||||
0.0.0.0 m.anyfiles.ovh
|
||||
0.0.0.0 www.coinimp.com
|
||||
0.0.0.0 www.coinimp.net
|
||||
0.0.0.0 www.freecontent.bid
|
||||
0.0.0.0 www.freecontent.date
|
||||
0.0.0.0 www.freecontent.faith
|
||||
0.0.0.0 www.freecontent.loan
|
||||
0.0.0.0 www.freecontent.racing
|
||||
0.0.0.0 www.freecontent.win
|
||||
0.0.0.0 www.blockchained.party
|
||||
0.0.0.0 www.hostingcloud.download
|
||||
0.0.0.0 www.cryptonoter.com
|
||||
0.0.0.0 www.mutuza.win
|
||||
0.0.0.0 crypto-webminer.com
|
||||
0.0.0.0 cdn.adless.io
|
||||
0.0.0.0 hegrinhar.com
|
||||
0.0.0.0 verresof.com
|
||||
0.0.0.0 hemnes.win
|
||||
0.0.0.0 tidafors.xyz
|
||||
0.0.0.0 moneone.ga
|
||||
0.0.0.0 plexcoin.info
|
||||
0.0.0.0 www.monkeyminer.net
|
||||
0.0.0.0 go2.mercy.ga
|
||||
0.0.0.0 coinpirate.cf
|
||||
0.0.0.0 d.cpufan.club
|
||||
0.0.0.0 krb.devphp.org.ua
|
||||
0.0.0.0 nfwebminer.com
|
||||
0.0.0.0 cfcdist.gdn
|
||||
0.0.0.0 node.cfcdist.gdn
|
||||
0.0.0.0 webxmr.com
|
||||
0.0.0.0 xmr.mining.best
|
||||
0.0.0.0 webminepool.com
|
||||
0.0.0.0 webminepool.tk
|
||||
0.0.0.0 hive.tubetitties.com
|
||||
0.0.0.0 playerassets.info
|
||||
0.0.0.0 tokyodrift.ga
|
||||
0.0.0.0 webassembly.stream
|
||||
0.0.0.0 www.webassembly.stream
|
||||
0.0.0.0 okeyletsgo.ml
|
||||
0.0.0.0 candid.zone
|
||||
0.0.0.0 webmine.pro
|
||||
0.0.0.0 andlache.com
|
||||
0.0.0.0 bablace.com
|
||||
0.0.0.0 bewaslac.com
|
||||
0.0.0.0 biberukalap.com
|
||||
0.0.0.0 bowithow.com
|
||||
0.0.0.0 butcalve.com
|
||||
0.0.0.0 evengparme.com
|
||||
0.0.0.0 gridiogrid.com
|
||||
0.0.0.0 hatcalter.com
|
||||
0.0.0.0 kedtise.com
|
||||
0.0.0.0 ledinund.com
|
||||
0.0.0.0 nathetsof.com
|
||||
0.0.0.0 renhertfo.com
|
||||
0.0.0.0 rintindown.com
|
||||
0.0.0.0 sparnove.com
|
||||
0.0.0.0 witthethim.com
|
||||
0.0.0.0 1q2w3.fun
|
||||
0.0.0.0 1q2w3.me
|
||||
0.0.0.0 bjorksta.men
|
||||
0.0.0.0 crypto.csgocpu.com
|
||||
0.0.0.0 noblock.pro
|
||||
0.0.0.0 miner.cryptobara.com
|
||||
0.0.0.0 digger.cryptobara.com
|
||||
0.0.0.0 dev.cryptobara.com
|
||||
0.0.0.0 reservedoffers.club
|
||||
0.0.0.0 mine.torrent.pw
|
||||
0.0.0.0 host.d-ns.ga
|
||||
0.0.0.0 abc.pema.cl
|
||||
0.0.0.0 js.nahnoji.cz
|
||||
0.0.0.0 mine.nahnoji.cz
|
||||
0.0.0.0 webmine.cz
|
||||
0.0.0.0 www.webmine.cz
|
||||
0.0.0.0 intactoffers.club
|
||||
0.0.0.0 analytics.blue
|
||||
0.0.0.0 smectapop12.pl
|
||||
0.0.0.0 berserkpl.net.pl
|
||||
0.0.0.0 hodlers.party
|
||||
0.0.0.0 hodling.faith
|
||||
0.0.0.0 chainblock.science
|
||||
0.0.0.0 minescripts.info
|
||||
0.0.0.0 cdn.minescripts.info
|
||||
0.0.0.0 miner.nablabee.com
|
||||
0.0.0.0 wss.nablabee.com
|
||||
0.0.0.0 clickwith.bid
|
||||
0.0.0.0 dronml.ml
|
||||
0.0.0.0 niematego.tk
|
||||
0.0.0.0 tulip18.com
|
||||
0.0.0.0 p.estream.to
|
||||
0.0.0.0 didnkinrab.com
|
||||
0.0.0.0 ledhenone.com
|
||||
0.0.0.0 losital.ru
|
||||
0.0.0.0 mebablo.com
|
||||
0.0.0.0 moonsade.com
|
||||
0.0.0.0 nebabrop.com
|
||||
0.0.0.0 pearno.com
|
||||
0.0.0.0 rintinwa.com
|
||||
0.0.0.0 willacrit.com
|
||||
0.0.0.0 www2.adfreetv.ch
|
||||
0.0.0.0 minr.pw
|
||||
0.0.0.0 new.minr.pw
|
||||
0.0.0.0 test.minr.pw
|
||||
0.0.0.0 staticsfs.host
|
||||
0.0.0.0 cdn-code.host
|
||||
0.0.0.0 g-content.bid
|
||||
0.0.0.0 ad.g-content.bid
|
||||
0.0.0.0 cdn.static-cnt.bid
|
||||
0.0.0.0 cnt.statistic.date
|
||||
0.0.0.0 jquery-uim.download
|
||||
0.0.0.0 cdn.jquery-uim.download
|
||||
0.0.0.0 cdn-jquery.host
|
||||
0.0.0.0 p1.interestingz.pw
|
||||
0.0.0.0 kippbeak.cf
|
||||
0.0.0.0 pasoherb.gq
|
||||
0.0.0.0 axoncoho.tk
|
||||
0.0.0.0 depttake.ga
|
||||
0.0.0.0 flophous.cf
|
||||
0.0.0.0 pr0gram.org
|
||||
0.0.0.0 authedmine.eu
|
||||
0.0.0.0 www.monero-miner.com
|
||||
0.0.0.0 www.datasecu.download
|
||||
0.0.0.0 www.jquery-cdn.download
|
||||
0.0.0.0 www.etzbnfuigipwvs.ru
|
||||
0.0.0.0 www.terethat.ru
|
||||
0.0.0.0 freshrefresher.com
|
||||
0.0.0.0 api.pzoifaum.info
|
||||
0.0.0.0 ws.pzoifaum.info
|
||||
0.0.0.0 api.bhzejltg.info
|
||||
0.0.0.0 ws.bhzejltg.info
|
||||
0.0.0.0 d.cfcnet.top
|
||||
0.0.0.0 vip.cfcnet.top
|
||||
0.0.0.0 eu.cfcnet.top
|
||||
0.0.0.0 as.cfcnet.top
|
||||
0.0.0.0 us.cfcnet.top
|
||||
0.0.0.0 eu.cfcdist.loan
|
||||
0.0.0.0 as.cfcdist.loan
|
||||
0.0.0.0 us.cfcdist.loan
|
||||
0.0.0.0 gustaver.ddns.net
|
||||
0.0.0.0 worker.salon.com
|
||||
0.0.0.0 s2.appelamule.com
|
||||
0.0.0.0 mepirtedic.com
|
||||
0.0.0.0 cdn.streambeam.io
|
||||
0.0.0.0 adzjzewsma.cf
|
||||
0.0.0.0 ffinwwfpqi.gq
|
||||
0.0.0.0 ininmacerad.pro
|
||||
0.0.0.0 mhiobjnirs.gq
|
||||
0.0.0.0 open-hive-server-1.pp.ua
|
||||
0.0.0.0 pool.hws.ru
|
||||
0.0.0.0 pool.etn.spacepools.org
|
||||
0.0.0.0 api.aalbbh84.info
|
||||
0.0.0.0 www.aymcsx.ru
|
||||
0.0.0.0 aeros01.tk
|
||||
0.0.0.0 aeros02.tk
|
||||
0.0.0.0 aeros03.tk
|
||||
0.0.0.0 aeros04.tk
|
||||
0.0.0.0 aeros05.tk
|
||||
0.0.0.0 aeros06.tk
|
||||
0.0.0.0 aeros07.tk
|
||||
0.0.0.0 aeros08.tk
|
||||
0.0.0.0 aeros09.tk
|
||||
0.0.0.0 aeros10.tk
|
||||
0.0.0.0 aeros11.tk
|
||||
0.0.0.0 aeros12.tk
|
||||
0.0.0.0 npcdn1.now.sh
|
||||
0.0.0.0 mxcdn2.now.sh
|
||||
0.0.0.0 sxcdn6.now.sh
|
||||
0.0.0.0 mxcdn1.now.sh
|
||||
0.0.0.0 sxcdn02.now.sh
|
||||
0.0.0.0 sxcdn4.now.sh
|
||||
0.0.0.0 jqcdn2.herokuapp.com
|
||||
0.0.0.0 sxcdn1.herokuapp.com
|
||||
0.0.0.0 sxcdn5.herokuapp.com
|
||||
0.0.0.0 wpcdn1.herokuapp.com
|
||||
0.0.0.0 jqcdn01.herokuapp.com
|
||||
0.0.0.0 jqcdn03.herokuapp.com
|
||||
0.0.0.0 1q2w3.website
|
||||
0.0.0.0 video.videos.vidto.me
|
||||
0.0.0.0 play.play1.videos.vidto.me
|
||||
0.0.0.0 playe.vidto.se
|
||||
0.0.0.0 video.streaming.estream.to
|
||||
0.0.0.0 eth-pocket.de
|
||||
0.0.0.0 xvideosharing.site
|
||||
0.0.0.0 bestcoinsignals.com
|
||||
0.0.0.0 eucsoft.com
|
||||
0.0.0.0 traviilo.com
|
||||
0.0.0.0 wasm24.ru
|
||||
0.0.0.0 xmr.cool
|
||||
0.0.0.0 api.netflare.info
|
||||
0.0.0.0 cdnjs.cloudflane.com
|
||||
0.0.0.0 www.cloudflane.com
|
||||
0.0.0.0 clgserv.pro
|
||||
0.0.0.0 hide.ovh
|
||||
0.0.0.0 graftpool.ovh
|
||||
0.0.0.0 encoding.ovh
|
||||
0.0.0.0 altavista.ovh
|
||||
0.0.0.0 scaleway.ovh
|
||||
0.0.0.0 nexttime.ovh
|
||||
0.0.0.0 never.ovh
|
||||
0.0.0.0 2giga.download
|
||||
0.0.0.0 webminerpool.com
|
||||
0.0.0.0 minercry.pt
|
||||
0.0.0.0 adplusplus.fr
|
||||
0.0.0.0 ethtrader.de
|
||||
0.0.0.0 gobba.myeffect.net
|
||||
0.0.0.0 bauersagtnein.myeffect.net
|
||||
0.0.0.0 besti.ga
|
||||
0.0.0.0 jurty.ml
|
||||
0.0.0.0 jurtym.cf
|
||||
0.0.0.0 mfio.cf
|
||||
0.0.0.0 mwor.gq
|
||||
0.0.0.0 oei1.gq
|
||||
0.0.0.0 wordc.ga
|
||||
0.0.0.0 berateveng.ru
|
||||
0.0.0.0 ctlrnwbv.ru
|
||||
0.0.0.0 ermaseuc.ru
|
||||
0.0.0.0 kdmkauchahynhrs.ru
|
||||
0.0.0.0 uoldid.ru
|
||||
0.0.0.0 www.jqrcdn.download
|
||||
0.0.0.0 www.jqassets.download
|
||||
0.0.0.0 www.jqcdn.download
|
||||
0.0.0.0 www.jquerrycdn.download
|
||||
0.0.0.0 www.jqwww.download
|
||||
0.0.0.0 lightminer.co
|
||||
0.0.0.0 www.lightminer.co
|
||||
0.0.0.0 browsermine.com
|
||||
0.0.0.0 api.browsermine.com
|
||||
0.0.0.0 dl.browsermine.com
|
||||
0.0.0.0 mlib.browsermine.com
|
||||
0.0.0.0 minr.browsermine.com
|
||||
0.0.0.0 static.browsermine.com
|
||||
0.0.0.0 ws.browsermine.com
|
||||
0.0.0.0 bmst.pw
|
||||
0.0.0.0 bmnr.pw
|
||||
0.0.0.0 bmcm.pw
|
||||
0.0.0.0 bmcm.ml
|
||||
0.0.0.0 videoplayer2.xyz
|
||||
0.0.0.0 play.video2.stream.vidzi.tv
|
||||
0.0.0.0 001.0x1f4b0.com
|
||||
0.0.0.0 002.0x1f4b0.com
|
||||
0.0.0.0 003.0x1f4b0.com
|
||||
0.0.0.0 004.0x1f4b0.com
|
||||
0.0.0.0 005.0x1f4b0.com
|
||||
0.0.0.0 006.0x1f4b0.com
|
||||
0.0.0.0 007.0x1f4b0.com
|
||||
0.0.0.0 008.0x1f4b0.com
|
||||
0.0.0.0 authedwebmine.cz
|
||||
0.0.0.0 www.authedwebmine.cz
|
||||
0.0.0.0 skencituer.com
|
||||
0.0.0.0 site.flashx.cc
|
||||
0.0.0.0 play1.flashx.pw
|
||||
0.0.0.0 play2.flashx.pw
|
||||
0.0.0.0 play4.flashx.pw
|
||||
0.0.0.0 play5.flashx.pw
|
||||
0.0.0.0 js.vidoza.net
|
||||
0.0.0.0 mm.zubovskaya-banya.ru
|
||||
0.0.0.0 mysite.irkdsu.ru
|
||||
0.0.0.0 play.estream.nu
|
||||
0.0.0.0 play.estream.to
|
||||
0.0.0.0 play.estream.xyz
|
||||
0.0.0.0 play.play.estream.nu
|
||||
0.0.0.0 play.play.estream.to
|
||||
0.0.0.0 play.play.estream.xyz
|
||||
0.0.0.0 play.tainiesonline.pw
|
||||
0.0.0.0 play.vidzi.tv
|
||||
0.0.0.0 play.pampopholf.com
|
||||
0.0.0.0 s3.pampopholf.com
|
||||
0.0.0.0 play.malictuiar.com
|
||||
0.0.0.0 s3.malictuiar.com
|
||||
0.0.0.0 play.play.tainiesonline.stream
|
||||
0.0.0.0 ocean2.authcaptcha.com
|
||||
0.0.0.0 rock2.authcaptcha.com
|
||||
0.0.0.0 stone2.authcaptcha.com
|
||||
0.0.0.0 sass2.authcaptcha.com
|
||||
0.0.0.0 sea2.authcaptcha.com
|
||||
0.0.0.0 play.flowplayer.space
|
||||
0.0.0.0 play.pc.belicimo.pw
|
||||
0.0.0.0 play.power.tainiesonline.pw
|
||||
0.0.0.0 play.s01.vidtodo.pro
|
||||
0.0.0.0 wm.yololike.space
|
||||
0.0.0.0 play.mix.kinostuff.com
|
||||
0.0.0.0 play.on.animeteatr.ru
|
||||
0.0.0.0 play.mine.gay-hotvideo.net
|
||||
0.0.0.0 play.www.intellecthosting.net
|
||||
0.0.0.0 mytestminer.xyz
|
||||
0.0.0.0 play.vb.wearesaudis.net
|
||||
0.0.0.0 flowplayer.space
|
||||
0.0.0.0 s2.flowplayer.space
|
||||
0.0.0.0 s3.flowplayer.space
|
||||
0.0.0.0 thersprens.com
|
||||
0.0.0.0 s2.thersprens.com
|
||||
0.0.0.0 s3.thersprens.com
|
||||
0.0.0.0 gramombird.com
|
||||
0.0.0.0 play.gramombird.com
|
||||
0.0.0.0 ugmfvqsu.ru
|
||||
0.0.0.0 bsyauqwerd.party
|
||||
0.0.0.0 ccvwtdtwyu.trade
|
||||
0.0.0.0 baywttgdhe.download
|
||||
0.0.0.0 pdheuryopd.loan
|
||||
0.0.0.0 iaheyftbsn.review
|
||||
0.0.0.0 djfhwosjck.bid
|
||||
0.0.0.0 najsiejfnc.win
|
||||
0.0.0.0 zndaowjdnf.stream
|
||||
0.0.0.0 yqaywudifu.date
|
||||
0.0.0.0 malictuiar.com
|
||||
0.0.0.0 proofly.win
|
||||
0.0.0.0 zminer.zaloapp.com
|
||||
0.0.0.0 vkcdnservice.com
|
||||
0.0.0.0 dexim.space
|
||||
0.0.0.0 acbp0020171456.page.tl
|
||||
0.0.0.0 vuryua.ru
|
||||
0.0.0.0 minexmr.stream
|
||||
0.0.0.0 gitgrub.pro
|
||||
0.0.0.0 d8acddffe978b5dfcae6.date
|
||||
0.0.0.0 eth-pocket.com
|
||||
0.0.0.0 autologica.ga
|
||||
0.0.0.0 whysoserius.club
|
||||
0.0.0.0 aster18cdn.nl
|
||||
0.0.0.0 nerohut.com
|
||||
0.0.0.0 gnrdomimplementation.com
|
||||
0.0.0.0 pon.ewtuyytdf45.com
|
||||
0.0.0.0 hhb123.tk
|
||||
0.0.0.0 dzizsih.ru
|
||||
0.0.0.0 nddmcconmqsy.ru
|
||||
0.0.0.0 silimbompom.com
|
||||
0.0.0.0 unrummaged.com
|
||||
0.0.0.0 fruitice.realnetwrk.com
|
||||
0.0.0.0 synconnector.com
|
||||
0.0.0.0 toftofcal.com
|
||||
0.0.0.0 gasolina.ml
|
||||
0.0.0.0 8jd2lfsq.me
|
||||
0.0.0.0 afflow.18-plus.net
|
||||
0.0.0.0 afminer.com
|
||||
0.0.0.0 aservices.party
|
||||
0.0.0.0 becanium.com
|
||||
0.0.0.0 brominer.com
|
||||
0.0.0.0 cdn-analytics.pl
|
||||
0.0.0.0 cdn.static-cnt.bid
|
||||
0.0.0.0 cloudcdn.gdn
|
||||
0.0.0.0 coin-service.com
|
||||
0.0.0.0 coinpot.co
|
||||
0.0.0.0 coinrail.io
|
||||
0.0.0.0 etacontent.com
|
||||
0.0.0.0 exdynsrv.com
|
||||
0.0.0.0 formulawire.com
|
||||
0.0.0.0 go.bestmobiworld.com
|
||||
0.0.0.0 goldoffer.online
|
||||
0.0.0.0 hallaert.online
|
||||
0.0.0.0 hashing.win
|
||||
0.0.0.0 igrid.org
|
||||
0.0.0.0 laserveradedomaina.com
|
||||
0.0.0.0 machieved.com
|
||||
0.0.0.0 nametraff.com
|
||||
0.0.0.0 offerreality.com
|
||||
0.0.0.0 ogrid.org
|
||||
0.0.0.0 panelsave.com
|
||||
0.0.0.0 party-vqgdyvoycc.now.sh
|
||||
0.0.0.0 pertholin.com
|
||||
0.0.0.0 premiumstats.xyz
|
||||
0.0.0.0 serie-vostfr.com
|
||||
0.0.0.0 salamaleyum.com
|
||||
0.0.0.0 smartoffer.site
|
||||
0.0.0.0 stonecalcom.com
|
||||
0.0.0.0 thewhizmarketing.com
|
||||
0.0.0.0 thewhizproducts.com
|
||||
0.0.0.0 thewise.com
|
||||
0.0.0.0 traffic.tc-clicks.com
|
||||
0.0.0.0 vcfs6ip5h6.bid
|
||||
0.0.0.0 web.dle-news.pw
|
||||
0.0.0.0 webmining.co
|
||||
0.0.0.0 wp-monero-miner.de
|
||||
0.0.0.0 wtm.monitoringservice.co
|
||||
0.0.0.0 xy.nullrefexcep.com
|
||||
0.0.0.0 yrdrtzmsmt.com
|
||||
0.0.0.0 wss.rand.com.ru
|
||||
0.0.0.0 www.verifier.live
|
||||
0.0.0.0 www.jshosting.bid
|
||||
0.0.0.0 www.jshosting.date
|
||||
0.0.0.0 www.jshosting.download
|
||||
0.0.0.0 www.jshosting.faith
|
||||
0.0.0.0 www.jshosting.loan
|
||||
0.0.0.0 www.jshosting.party
|
||||
0.0.0.0 www.jshosting.racing
|
||||
0.0.0.0 www.jshosting.review
|
||||
0.0.0.0 www.jshosting.science
|
||||
0.0.0.0 www.jshosting.stream
|
||||
0.0.0.0 www.jshosting.trade
|
||||
0.0.0.0 www.jshosting.win
|
||||
0.0.0.0 www.freecontent.download
|
||||
0.0.0.0 www.freecontent.party
|
||||
0.0.0.0 www.freecontent.review
|
||||
0.0.0.0 www.freecontent.science
|
||||
0.0.0.0 www.freecontent.stream
|
||||
0.0.0.0 www.freecontent.trade
|
||||
0.0.0.0 www.hostcontent.live
|
||||
0.0.0.0 www.hostingcloud.accountant
|
||||
0.0.0.0 www.hostingcloud.bid
|
||||
0.0.0.0 www.hostingcloud.date
|
||||
0.0.0.0 www.hostingcloud.download
|
||||
0.0.0.0 www.hostingcloud.faith
|
||||
0.0.0.0 www.hostingcloud.live
|
||||
0.0.0.0 www.hostingcloud.loan
|
||||
0.0.0.0 www.hostingcloud.party
|
||||
0.0.0.0 www.hostingcloud.racing
|
||||
0.0.0.0 www.hostingcloud.review
|
||||
0.0.0.0 www.hostingcloud.science
|
||||
0.0.0.0 www.hostingcloud.stream
|
||||
0.0.0.0 www.hostingcloud.trade
|
||||
0.0.0.0 www.hostingcloud.win
|
||||
0.0.0.0 minerad.com
|
||||
0.0.0.0 coin-cube.com
|
||||
0.0.0.0 coin-services.info
|
||||
0.0.0.0 service4refresh.info
|
||||
0.0.0.0 money-maker-script.info
|
||||
0.0.0.0 money-maker-default.info
|
||||
0.0.0.0 money-maker-default.info
|
||||
0.0.0.0 de-ner-mi-nis4.info
|
||||
0.0.0.0 de-nis-ner-mi-5.info
|
||||
0.0.0.0 de-mi-nis-ner2.info
|
||||
0.0.0.0 de-mi-nis-ner.info
|
||||
0.0.0.0 mi-de-ner-nis3.info
|
||||
0.0.0.0 s2.soodatmish.com
|
||||
0.0.0.0 s2.thersprens.com
|
||||
0.0.0.0 play.feesocrald.com
|
||||
0.0.0.0 cdn1.pebx.pl
|
||||
0.0.0.0 play.nexioniect.com
|
||||
0.0.0.0 play.besstahete.info
|
||||
0.0.0.0 s2.myregeneaf.com
|
||||
0.0.0.0 s3.myregeneaf.com
|
||||
0.0.0.0 reauthenticator.com
|
||||
0.0.0.0 rock.reauthenticator.com
|
||||
0.0.0.0 serv1swork.com
|
||||
0.0.0.0 str1kee.com
|
||||
0.0.0.0 f1tbit.com
|
||||
0.0.0.0 g1thub.com
|
||||
0.0.0.0 swiftmining.win
|
||||
0.0.0.0 cashbeet.com
|
||||
0.0.0.0 wmtech.website
|
||||
0.0.0.0 www.notmining.org
|
||||
0.0.0.0 coinminingonline.com
|
||||
0.0.0.0 alflying.bid
|
||||
0.0.0.0 alflying.date
|
||||
0.0.0.0 alflying.win
|
||||
0.0.0.0 anybest.host
|
||||
0.0.0.0 anybest.pw
|
||||
0.0.0.0 anybest.site
|
||||
0.0.0.0 anybest.space
|
||||
0.0.0.0 dubester.pw
|
||||
0.0.0.0 dubester.site
|
||||
0.0.0.0 dubester.space
|
||||
0.0.0.0 flightsy.bid
|
||||
0.0.0.0 flightsy.date
|
||||
0.0.0.0 flightsy.win
|
||||
0.0.0.0 flighty.win
|
||||
0.0.0.0 flightzy.bid
|
||||
0.0.0.0 flightzy.date
|
||||
0.0.0.0 flightzy.win
|
||||
0.0.0.0 gettate.date
|
||||
0.0.0.0 gettate.faith
|
||||
0.0.0.0 gettate.racing
|
||||
0.0.0.0 mighbest.host
|
||||
0.0.0.0 mighbest.pw
|
||||
0.0.0.0 mighbest.site
|
||||
0.0.0.0 zymerget.bid
|
||||
0.0.0.0 zymerget.date
|
||||
0.0.0.0 zymerget.faith
|
||||
0.0.0.0 zymerget.party
|
||||
0.0.0.0 zymerget.stream
|
||||
0.0.0.0 zymerget.win
|
||||
0.0.0.0 statdynamic.com
|
||||
0.0.0.0 alpha.nimiqpool.com
|
||||
0.0.0.0 api.miner.beeppool.org
|
||||
0.0.0.0 beatingbytes.com
|
||||
0.0.0.0 besocial.online
|
||||
0.0.0.0 beta.nimiqpool.com
|
||||
0.0.0.0 bulls.nimiqpool.com
|
||||
0.0.0.0 de1.eu.nimiqpool.com
|
||||
0.0.0.0 ethmedialab.info
|
||||
0.0.0.0 feilding.nimiqpool.com
|
||||
0.0.0.0 foxton.nimiqpool.com
|
||||
0.0.0.0 ganymed.beeppool.org
|
||||
0.0.0.0 himatangi.nimiqpool.com
|
||||
0.0.0.0 levin.nimiqpool.com
|
||||
0.0.0.0 mine.terorie.com
|
||||
0.0.0.0 miner-1.team.nimiq.agency
|
||||
0.0.0.0 miner-10.team.nimiq.agency
|
||||
0.0.0.0 miner-11.team.nimiq.agency
|
||||
0.0.0.0 miner-12.team.nimiq.agency
|
||||
0.0.0.0 miner-13.team.nimiq.agency
|
||||
0.0.0.0 miner-14.team.nimiq.agency
|
||||
0.0.0.0 miner-15.team.nimiq.agency
|
||||
0.0.0.0 miner-16.team.nimiq.agency
|
||||
0.0.0.0 miner-17.team.nimiq.agency
|
||||
0.0.0.0 miner-18.team.nimiq.agency
|
||||
0.0.0.0 miner-19.team.nimiq.agency
|
||||
0.0.0.0 miner-2.team.nimiq.agency
|
||||
0.0.0.0 miner-3.team.nimiq.agency
|
||||
0.0.0.0 miner-4.team.nimiq.agency
|
||||
0.0.0.0 miner-5.team.nimiq.agency
|
||||
0.0.0.0 miner-6.team.nimiq.agency
|
||||
0.0.0.0 miner-7.team.nimiq.agency
|
||||
0.0.0.0 miner-8.team.nimiq.agency
|
||||
0.0.0.0 miner-9.team.nimiq.agency
|
||||
0.0.0.0 miner-deu-1.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-2.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-3.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-4.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-5.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-6.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-7.inf.nimiq.network
|
||||
0.0.0.0 miner-deu-8.inf.nimiq.network
|
||||
0.0.0.0 miner.beeppool.org
|
||||
0.0.0.0 miner.nimiq.com
|
||||
0.0.0.0 mon-deu-1.inf.nimiq.network
|
||||
0.0.0.0 mon-deu-2.inf.nimiq.network
|
||||
0.0.0.0 mon-deu-3.inf.nimiq.network
|
||||
0.0.0.0 mon-fra-1.inf.nimiq.network
|
||||
0.0.0.0 mon-fra-2.inf.nimiq.network
|
||||
0.0.0.0 mon-gbr-1.inf.nimiq.network
|
||||
0.0.0.0 nimiq.terorie.com
|
||||
0.0.0.0 nimiqpool.com
|
||||
0.0.0.0 nimiqtest.ml
|
||||
0.0.0.0 ninaning.com
|
||||
0.0.0.0 node.alpha.nimiqpool.com
|
||||
0.0.0.0 node.nimiqpool.com
|
||||
0.0.0.0 nodeb.nimiqpool.com
|
||||
0.0.0.0 nodeone.nimiqpool.com
|
||||
0.0.0.0 proxy-can-1.inf.nimiq.network
|
||||
0.0.0.0 proxy-deu-1.inf.nimiq.network
|
||||
0.0.0.0 proxy-deu-2.inf.nimiq.network
|
||||
0.0.0.0 proxy-fra-1.inf.nimiq.network
|
||||
0.0.0.0 proxy-fra-2.inf.nimiq.network
|
||||
0.0.0.0 proxy-fra-3.inf.nimiq.network
|
||||
0.0.0.0 proxy-gbr-1.inf.nimiq.network
|
||||
0.0.0.0 proxy-gbr-2.inf.nimiq.network
|
||||
0.0.0.0 proxy-pol-1.inf.nimiq.network
|
||||
0.0.0.0 proxy-pol-2.inf.nimiq.network
|
||||
0.0.0.0 script.nimiqpool.com
|
||||
0.0.0.0 seed-1.nimiq-network.com
|
||||
0.0.0.0 seed-1.nimiq.com
|
||||
0.0.0.0 seed-1.nimiq.network
|
||||
0.0.0.0 seed-10.nimiq-network.com
|
||||
0.0.0.0 seed-10.nimiq.com
|
||||
0.0.0.0 seed-10.nimiq.network
|
||||
0.0.0.0 seed-11.nimiq-network.com
|
||||
0.0.0.0 seed-11.nimiq.com
|
||||
0.0.0.0 seed-11.nimiq.network
|
||||
0.0.0.0 seed-12.nimiq-network.com
|
||||
0.0.0.0 seed-12.nimiq.com
|
||||
0.0.0.0 seed-12.nimiq.network
|
||||
0.0.0.0 seed-13.nimiq-network.com
|
||||
0.0.0.0 seed-13.nimiq.com
|
||||
0.0.0.0 seed-13.nimiq.network
|
||||
0.0.0.0 seed-14.nimiq-network.com
|
||||
0.0.0.0 seed-14.nimiq.com
|
||||
0.0.0.0 seed-14.nimiq.network
|
||||
0.0.0.0 seed-15.nimiq-network.com
|
||||
0.0.0.0 seed-15.nimiq.com
|
||||
0.0.0.0 seed-15.nimiq.network
|
||||
0.0.0.0 seed-16.nimiq-network.com
|
||||
0.0.0.0 seed-16.nimiq.com
|
||||
0.0.0.0 seed-16.nimiq.network
|
||||
0.0.0.0 seed-17.nimiq-network.com
|
||||
0.0.0.0 seed-17.nimiq.com
|
||||
0.0.0.0 seed-17.nimiq.network
|
||||
0.0.0.0 seed-18.nimiq-network.com
|
||||
0.0.0.0 seed-18.nimiq.com
|
||||
0.0.0.0 seed-18.nimiq.network
|
||||
0.0.0.0 seed-19.nimiq-network.com
|
||||
0.0.0.0 seed-19.nimiq.com
|
||||
0.0.0.0 seed-19.nimiq.network
|
||||
0.0.0.0 seed-2.nimiq-network.com
|
||||
0.0.0.0 seed-2.nimiq.com
|
||||
0.0.0.0 seed-2.nimiq.network
|
||||
0.0.0.0 seed-20.nimiq-network.com
|
||||
0.0.0.0 seed-20.nimiq.com
|
||||
0.0.0.0 seed-20.nimiq.network
|
||||
0.0.0.0 seed-3.nimiq-network.com
|
||||
0.0.0.0 seed-3.nimiq.com
|
||||
0.0.0.0 seed-3.nimiq.network
|
||||
0.0.0.0 seed-4.nimiq-network.com
|
||||
0.0.0.0 seed-4.nimiq.com
|
||||
0.0.0.0 seed-4.nimiq.network
|
||||
0.0.0.0 seed-5.nimiq-network.com
|
||||
0.0.0.0 seed-5.nimiq.com
|
||||
0.0.0.0 seed-5.nimiq.network
|
||||
0.0.0.0 seed-6.nimiq-network.com
|
||||
0.0.0.0 seed-6.nimiq.com
|
||||
0.0.0.0 seed-6.nimiq.network
|
||||
0.0.0.0 seed-7.nimiq-network.com
|
||||
0.0.0.0 seed-7.nimiq.com
|
||||
0.0.0.0 seed-7.nimiq.network
|
||||
0.0.0.0 seed-8.nimiq-network.com
|
||||
0.0.0.0 seed-8.nimiq.com
|
||||
0.0.0.0 seed-8.nimiq.network
|
||||
0.0.0.0 seed-9.nimiq-network.com
|
||||
0.0.0.0 seed-9.nimiq.com
|
||||
0.0.0.0 seed-9.nimiq.network
|
||||
0.0.0.0 seed-can-1.inf.nimiq.network
|
||||
0.0.0.0 seed-can-2.inf.nimiq.network
|
||||
0.0.0.0 seed-deu-1.inf.nimiq.network
|
||||
0.0.0.0 seed-deu-2.inf.nimiq.network
|
||||
0.0.0.0 seed-deu-3.inf.nimiq.network
|
||||
0.0.0.0 seed-deu-4.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-1.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-2.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-3.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-4.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-5.inf.nimiq.network
|
||||
0.0.0.0 seed-fra-6.inf.nimiq.network
|
||||
0.0.0.0 seed-gbr-1.inf.nimiq.network
|
||||
0.0.0.0 seed-gbr-2.inf.nimiq.network
|
||||
0.0.0.0 seed-gbr-3.inf.nimiq.network
|
||||
0.0.0.0 seed-gbr-4.inf.nimiq.network
|
||||
0.0.0.0 seed-pol-1.inf.nimiq.network
|
||||
0.0.0.0 seed-pol-2.inf.nimiq.network
|
||||
0.0.0.0 seed-pol-3.inf.nimiq.network
|
||||
0.0.0.0 seed-pol-4.inf.nimiq.network
|
||||
0.0.0.0 seed.nimiqpool.com
|
||||
0.0.0.0 seed1.sushipool.com
|
||||
0.0.0.0 shannon.nimiqpool.com
|
||||
0.0.0.0 sunnimiq.cf
|
||||
0.0.0.0 sunnimiq1.cf
|
||||
0.0.0.0 sunnimiq2.cf
|
||||
0.0.0.0 sunnimiq3.cf
|
||||
0.0.0.0 sunnimiq4.cf
|
||||
0.0.0.0 sunnimiq5.cf
|
||||
0.0.0.0 sunnimiq6.cf
|
||||
0.0.0.0 tokomaru.nimiqpool.com
|
||||
0.0.0.0 whanganui.nimiqpool.com
|
||||
0.0.0.0 www.besocial.online
|
||||
0.0.0.0 miner.nimiq.com
|
||||
0.0.0.0 jscoinminer.com
|
||||
0.0.0.0 www.jscoinminer.com
|
||||
0.0.0.0 play.tercabilis.info
|
||||
0.0.0.0 play.istlandoll.com
|
||||
0.0.0.0 s01.hostcontent.live
|
||||
0.0.0.0 s02.hostcontent.live
|
||||
0.0.0.0 s03.hostcontent.live
|
||||
0.0.0.0 s04.hostcontent.live
|
||||
0.0.0.0 s05.hostcontent.live
|
||||
0.0.0.0 s06.hostcontent.live
|
||||
0.0.0.0 s07.hostcontent.live
|
||||
0.0.0.0 s08.hostcontent.live
|
||||
0.0.0.0 s09.hostcontent.live
|
||||
0.0.0.0 s10.hostcontent.live
|
||||
0.0.0.0 s100.hostcontent.live
|
||||
0.0.0.0 s11.hostcontent.live
|
||||
0.0.0.0 s12.hostcontent.live
|
||||
0.0.0.0 s13.hostcontent.live
|
||||
0.0.0.0 binarybusiness.de
|
||||
0.0.0.0 bitcoin-pay.eu
|
||||
0.0.0.0 cloud-miner.de
|
||||
0.0.0.0 cloud-miner.eu
|
||||
0.0.0.0 easyhash.de
|
||||
0.0.0.0 srcip.com
|
||||
0.0.0.0 srcips.com
|
||||
0.0.0.0 gxbrowser.net
|
File diff suppressed because it is too large
Load Diff
@ -1,333 +0,0 @@
|
||||
@@||10010.com^$generichide
|
||||
@@||10086.cn^$generichide
|
||||
@@||17173im.allyes.com^
|
||||
@@||199it.com^$generichide
|
||||
@@||1point3acres.com^$generichide
|
||||
@@||3dpchip.com^$generichide
|
||||
@@||4horlover.com^$generichide
|
||||
@@||51job.com^$generichide
|
||||
@@||520call.me^$generichide
|
||||
@@||5278.cool^$generichide
|
||||
@@||58b.tv^$generichide
|
||||
@@||5qidgde.com^$generichide
|
||||
@@||85po.com^$generichide
|
||||
@@||85porn.net^$generichide
|
||||
@@||99wbwc.com^$generichide
|
||||
@@||99ybcc.com^$generichide
|
||||
@@||9zvip.net^$elemhide
|
||||
@@||abril.com.br^$generichide
|
||||
@@||ad-gone.com^
|
||||
@@||ad.10010.com^
|
||||
@@||ad.abchina.com^
|
||||
@@||ad.alimama.com^$genericblock
|
||||
@@||ad.kazakinfo.com^
|
||||
@@||ad.ourgame.com^
|
||||
@@||ad2.uoocuniversity.com^$~third-party
|
||||
@@||adblockplus.org^$generichide
|
||||
@@||adcdn.pingan.com^
|
||||
@@||adf.ly^$generichide
|
||||
@@||adfox.ru^$~third-party
|
||||
@@||adjs.8591.com.tw^$script
|
||||
@@||admin.mgid.com^$popup
|
||||
@@||adnet.qq.com^$~third-party
|
||||
@@||ads.amazon^$popup
|
||||
@@||ads.askgamblers.com^$popup
|
||||
@@||ads.com^$popup
|
||||
@@||ads.instacart.com^$popup
|
||||
@@||ads.kazakh-zerno.net^$popup
|
||||
@@||ads.microsoft.com^$popup
|
||||
@@||ads.midwayusa.com^$popup
|
||||
@@||ads.pinterest.com^$popup
|
||||
@@||ads.reempresa.org^$popup
|
||||
@@||ads.spotify.com^$popup
|
||||
@@||ads.taboola.com^$popup
|
||||
@@||ads.tiktok.com^$generichide
|
||||
@@||ads.tiktok.com^$popup
|
||||
@@||ads.tiktok.com^$~third-party
|
||||
@@||ads.twitter.com^$popup,~third-party
|
||||
@@||adsense.woso.cn^$~third-party
|
||||
@@||adv.blogupp.com^$popup
|
||||
@@||adv.cr^$popup
|
||||
@@||adv.gg^$popup
|
||||
@@||adv.welaika.com^$popup
|
||||
@@||advert.kf5.com^
|
||||
@@||aetv.com^$generichide
|
||||
@@||affyun.com^$generichide
|
||||
@@||ak77now.pixnet.net^$generichide
|
||||
@@||analytics.amplitude.com^$~third-party
|
||||
@@||analytics.itunes.apple.com^$~third-party
|
||||
@@||annhe.net^$generichide
|
||||
@@||anyknew.com^$generichide
|
||||
@@||api-merchants.skimlinks.com^
|
||||
@@||api.ad-gone.com^
|
||||
@@||api.ads.tvb.com^
|
||||
@@||api.nyda.pro^$websocket
|
||||
@@||api.recaptcha.net^$script
|
||||
@@||apk.tw^$script,~third-party
|
||||
@@||app-advertise.zhihuishu.com^
|
||||
@@||app.adroll.com^$generichide
|
||||
@@||archiveteam.org^$generichide
|
||||
@@||arstechnica.com^$generichide
|
||||
@@||aternos.org^$generichide
|
||||
@@||authentication-api.skimlinks.com^
|
||||
@@||battle.net^
|
||||
@@||bde4.cc^$generichide
|
||||
@@||beta.bugly.qq.com^
|
||||
@@||bingfeng.tw^$generichide
|
||||
@@||blackmod.net^$generichide
|
||||
@@||blog.ztjal.info^$generichide
|
||||
@@||brighteon.com^$generichide
|
||||
@@||browser.cloud.ucweb.com^
|
||||
@@||btsax.info^$generichide
|
||||
@@||buyad.bi-xenon.cn^
|
||||
@@||captcha.su.baidu.com^
|
||||
@@||ccllaa.com^$generichide
|
||||
@@||centro.co.il^$generichide
|
||||
@@||changyou.com^$generichide
|
||||
@@||chinamobile.com^$generichide
|
||||
@@||chinatelecom.com.cn^
|
||||
@@||chuangkit.com^$generichide
|
||||
@@||cloud.google.com^$~third-party
|
||||
@@||cloud.mail.ru^$image,~third-party
|
||||
@@||club.tgfcer.com^$generichide
|
||||
@@||cmechina.net^$genericblock
|
||||
@@||cnprint.org^$generichide
|
||||
@@||cocomanhua.com^$generichide
|
||||
@@||colatour.com.tw^$generichide
|
||||
@@||consent-pref.trustarc.com^$subdocument
|
||||
@@||consent.trustarc.com^$image
|
||||
@@||cookielawinfo.com^$~third-party
|
||||
@@||coolinet.com^$generichide
|
||||
@@||cwtv.com^$generichide
|
||||
@@||cy.com^$generichide
|
||||
@@||d1-dm.com^$generichide
|
||||
@@||dailymail.co.uk^$generichide
|
||||
@@||dashboard.idealmedia.com^$~third-party
|
||||
@@||dashboard.lentainform.com^$~third-party
|
||||
@@||dashboard.marketgid.com^$~third-party
|
||||
@@||dashboard.mgid.com^$popup
|
||||
@@||dashboard.mgid.com^$~third-party
|
||||
@@||dashboard.tovarro.com^$~third-party
|
||||
@@||destinationamerica.com^$generichide
|
||||
@@||digit77.com^$generichide
|
||||
@@||dilidili.one^$generichide
|
||||
@@||displayad.naver.com^$~third-party
|
||||
@@||dizhi99.com^$generichide
|
||||
@@||dlkoo.cc^$generichide
|
||||
@@||dlkoo.com^$generichide
|
||||
@@||dmhy.b168.net^$generichide
|
||||
@@||doubibackup.com^$generichide
|
||||
@@||download.jumpw.com^
|
||||
@@||download.mokeedev.com^$genericblock,generichide
|
||||
@@||e9china.net^$generichide
|
||||
@@||easylife.tw^$generichide
|
||||
@@||ecitic.com^
|
||||
@@||edmondpoon.com^$generichide
|
||||
@@||elife-cloud.blogspot.com^$generichide
|
||||
@@||eolinker.com^$generichide
|
||||
@@||eucookiedirective.com^$~third-party
|
||||
@@||experienceleague.adobe.com^$~third-party
|
||||
@@||experienceleague.corp.adobe.com^$~third-party
|
||||
@@||ez3c.tw^$generichide
|
||||
@@||fangcloud.com^$generichide
|
||||
@@||feed.mix.sina.com.cn^
|
||||
@@||fharr.com^$generichide
|
||||
@@||fingerprintjs.com^$generichide
|
||||
@@||flattr.com^$generichide
|
||||
@@||fontawesome.com^$generichide,~third-party
|
||||
@@||front-go.lemall.com^
|
||||
@@||fullmatchesandshows.com^$generichide
|
||||
@@||game735.com^$generichide
|
||||
@@||games.pch.com^$generichide
|
||||
@@||gaus.ee^$generichide
|
||||
@@||gaybeeg.info^$generichide
|
||||
@@||gelbooru.com^$generichide
|
||||
@@||getrelax.cc^$generichide
|
||||
@@||ggg50.pw^$generichide
|
||||
@@||github.com^$generichide
|
||||
@@||github.io^$generichide
|
||||
@@||golangnote.com^$generichide
|
||||
@@||gooogle.how^$generichide
|
||||
@@||hanjubaike.com^$script,~third-party
|
||||
@@||hanjuwang.com^$script,~third-party
|
||||
@@||hanjuwang.net^$script,~third-party
|
||||
@@||healthyadvertising.es^$~third-party
|
||||
@@||hh010.com^$generichide
|
||||
@@||history.com^$generichide
|
||||
@@||ibf.tw^$generichide
|
||||
@@||identity.mparticle.com^$xmlhttprequest
|
||||
@@||ifttt.com^$generichide
|
||||
@@||image.coolapk.com^
|
||||
@@||img.ads.tvb.com^
|
||||
@@||informer.com^$generichide
|
||||
@@||inoreader.com^$genericblock,generichide
|
||||
@@||ipfs-lab.com^$generichide
|
||||
@@||jetzt.de^$generichide
|
||||
@@||jin10.com^$generichide
|
||||
@@||jinyongci.com^$generichide
|
||||
@@||jjkmn.com^$generichide
|
||||
@@||jlthjy.com^$generichide
|
||||
@@||joyk.com^$generichide
|
||||
@@||jsfiddle.net^$generichide
|
||||
@@||jsjiami.com^$generichide
|
||||
@@||kissjav.com^$generichide
|
||||
@@||kk665403.pixnet.net^$generichide
|
||||
@@||laotiesao.vip^$generichide
|
||||
@@||ldxinyong.com^$generichide
|
||||
@@||league-funny.com^$generichide
|
||||
@@||league-funny.com^$script,~third-party
|
||||
@@||leagueofmovie.com^$generichide
|
||||
@@||lemon.baidu.com^
|
||||
@@||liumingye.cn^$generichide
|
||||
@@||lnk2.cc^$generichide
|
||||
@@||login.mos.ru^$image
|
||||
@@||ltzn.9377.com^
|
||||
@@||mcbar.cn^$generichide
|
||||
@@||mccc11.com^$generichide
|
||||
@@||mccm88.com^$generichide
|
||||
@@||media-cache*.pinimg.com^$image,third-party
|
||||
@@||megaup.net^$generichide
|
||||
@@||metrics.torproject.org^$~third-party
|
||||
@@||mi.cn^
|
||||
@@||milfzr.com^$generichide
|
||||
@@||minigame.qq.com^
|
||||
@@||mmaa99.xyz^$generichide
|
||||
@@||mmee04.com^$generichide
|
||||
@@||mmff30.com^$generichide
|
||||
@@||mmgd.xyz^$generichide
|
||||
@@||mmuu22.link^$generichide
|
||||
@@||mnighthk.net^$elemhide
|
||||
@@||monnsutogatya.com^$elemhide
|
||||
@@||moviesunusa.net^$generichide
|
||||
@@||ms332.com^$generichide
|
||||
@@||msn.wrating.com^
|
||||
@@||muzlan.top^$generichide
|
||||
@@||myqqjd.com^$generichide
|
||||
@@||namechk.com^$generichide
|
||||
@@||netflav.com^$generichide
|
||||
@@||newad.mail.wo.cn^
|
||||
@@||niotv.com^$generichide
|
||||
@@||nobugin.com^$generichide
|
||||
@@||nodkey.xyz^$genericblock,generichide
|
||||
@@||nodkey.xyz^$generichide
|
||||
@@||oiihk.com^$generichide
|
||||
@@||olgame.tw^$generichide
|
||||
@@||ondemand.sas.com^$subdocument
|
||||
@@||optout.networkadvertising.org^$document
|
||||
@@||panjiachen.github.io^$generichide
|
||||
@@||pass.1688.com^$subdocument
|
||||
@@||passets-cdn.pinterest.com^
|
||||
@@||passiontimes.hk^$generichide
|
||||
@@||payload.cargocollective.com^$image,~third-party
|
||||
@@||pg-wuming.com^$generichide
|
||||
@@||phs.tanx.com^
|
||||
@@||pingjs.qq.com^$~third-party
|
||||
@@||pixelexperience.org^$generichide
|
||||
@@||player.sundaysky.com^$subdocument
|
||||
@@||plugins.matomo.org^$image,~third-party
|
||||
@@||poedb.tw^$generichide
|
||||
@@||pornbraze.com^$generichide
|
||||
@@||premiumleecher.com^$generichide
|
||||
@@||profile.getyounity.com^$image,~third-party
|
||||
@@||publisher.adservice.com^$generichide
|
||||
@@||qqdie.com^$generichide
|
||||
@@||r3sub.com^$generichide
|
||||
@@||receive-a-sms.com^$generichide
|
||||
@@||redditarchive.com^
|
||||
@@||restream.io^$generichide
|
||||
@@||reuters.com^$generichide
|
||||
@@||rojadirecta.me^$generichide
|
||||
@@||rule34hentai.net^$generichide
|
||||
@@||s-media*.pinimg.com^$image,third-party
|
||||
@@||sakai-hk.com^$generichide
|
||||
@@||sc2casts.com^$generichide
|
||||
@@||schemeflood.com^$generichide
|
||||
@@||sciencechannel.com^$generichide
|
||||
@@||scyts.com^$generichide
|
||||
@@||sdc.pingan.com^$~image
|
||||
@@||searchad.naver.com^$~third-party
|
||||
@@||serve.netsh.org^$elemhide
|
||||
@@||services.pornhub.com^$~third-party,xmlhttprequest
|
||||
@@||seselah.com^$generichide
|
||||
@@||sexylove.club^$generichide
|
||||
@@||seyise8.com^$generichide
|
||||
@@||seyy66.space^$generichide
|
||||
@@||share1223.com^$generichide
|
||||
@@||shopback.com.tw^$generichide
|
||||
@@||slack.com^$generichide
|
||||
@@||smallseotools.com^$generichide
|
||||
@@||smtcaw.com^$generichide
|
||||
@@||social.krunker.io^$~third-party
|
||||
@@||socialmedia.by^$~third-party
|
||||
@@||softwarebrother.com^$generichide
|
||||
@@||sourcepoint.telegraph.co.uk^$~third-party,xmlhttprequest
|
||||
@@||spanishdict.com^$generichide
|
||||
@@||speedtest.net^
|
||||
@@||spiegel.de^$genericblock,generichide
|
||||
@@||sssbozh.com^$generichide
|
||||
@@||stream4free.live^$generichide
|
||||
@@||swiso.org^$generichide
|
||||
@@||switching.software^$generichide
|
||||
@@||swjoy.com^
|
||||
@@||szhr.com.cn^$generichide
|
||||
@@||szhr.com^$generichide
|
||||
@@||television-envivo.com^$generichide
|
||||
@@||th-sjy.com^$generichide
|
||||
@@||thefreedictionary.com^$generichide
|
||||
@@||thimble.mozilla.org^$generichide,~third-party
|
||||
@@||thisav.com^$generichide
|
||||
@@||tiktok.com^$generichide
|
||||
@@||tlc.com^$generichide
|
||||
@@||tldrify.com^$generichide
|
||||
@@||tomshardware.co.uk^$generichide
|
||||
@@||tomshardware.com^$generichide
|
||||
@@||transferwise.com^$generichide
|
||||
@@||trip.cmbchina.com^$generichide
|
||||
@@||ttkdex.com^$generichide
|
||||
@@||tuhu.cn^
|
||||
@@||tui.click^$generichide
|
||||
@@||tweaktown.com^$generichide
|
||||
@@||twofactorauth.org^$generichide
|
||||
@@||udp2p.com^$generichide
|
||||
@@||upload.tube8.com^$script,xmlhttprequest
|
||||
@@||uptostream.com^$generichide
|
||||
@@||upxin.net^$generichide
|
||||
@@||urlgalleries.net^$generichide
|
||||
@@||v2rayssr.com^$generichide
|
||||
@@||vd.l.qq.com^
|
||||
@@||viu.tv^$generichide
|
||||
@@||ware.shop.jd.com^$genericblock,generichide
|
||||
@@||wavebox.io^$generichide
|
||||
@@||web.archive.org^$generichide
|
||||
@@||websetnet.com^$generichide
|
||||
@@||weithenn.org^$generichide
|
||||
@@||wenxuecity.com^$generichide
|
||||
@@||wgun.net^$elemhide
|
||||
@@||wholehk.com^$generichide
|
||||
@@||widget.myrentacar.me^$script,subdocument
|
||||
@@||wikia.nocookie.net^$stylesheet
|
||||
@@||wikibooks.org^$generichide
|
||||
@@||wikidata.org^$generichide
|
||||
@@||wikinews.org^$generichide
|
||||
@@||wikipedia.org^$generichide
|
||||
@@||wikiquote.org^$generichide
|
||||
@@||wikiversity.org^$generichide
|
||||
@@||wiktionary.org^$generichide
|
||||
@@||ws.webcaster.pro^$websocket
|
||||
@@||www.gsxt.gov.cn^
|
||||
@@||xia1ge.com^$generichide
|
||||
@@||xianzhenyuan.cn^$generichide
|
||||
@@||xianzhenyuan.cn^$script,~third-party
|
||||
@@||xidian.edu.cn^$generichide
|
||||
@@||xilinjie.com^$generichide
|
||||
@@||xiuren.org^$generichide
|
||||
@@||xmpp-chat.pornhub.com^$script,~third-party,websocket
|
||||
@@||xmxing.net^
|
||||
@@||yellowbridge.com^$generichide
|
||||
@@||yesiget.i234.me^$generichide
|
||||
@@||yibada.com^$generichide
|
||||
@@||ymso.cc^$generichide
|
||||
@@||yygsz.com^$generichide
|
||||
@@||zbj.com^
|
||||
@@||zeplin.io^$generichide
|
||||
@@||zippyshare.com^$generichide
|
@ -1,92 +0,0 @@
|
||||
||*.feipukeplus.com^$domain=m.qqm4.com
|
||||
||*.wap.xsbiquge.com^
|
||||
||*^sdtfrom=^$media,rewrite=abp-resource:blank-mp3,domain=qq.com
|
||||
||*^sdtfrom=^$rewrite=abp-resource:blank-mp3,domain=qq.com
|
||||
||*serror*.wo.com.cn^
|
||||
||201*.myhard.com^
|
||||
||8*.tianya.cn^
|
||||
||a*.chajiaotong.com^
|
||||
||ac*.786ip.com^
|
||||
||ac*.faxingchina.com^
|
||||
||ac*.pingguolv.com^
|
||||
||activity.*.miui.com^
|
||||
||adi*.cnool.net^
|
||||
||aff*.kolektiva.net^
|
||||
||analytics-beacon-*.amazonaws.com^
|
||||
||anet*.tradedoubler.com^$third-party
|
||||
||ap*.jj20.com^
|
||||
||ap*.pl520.com^
|
||||
||assoc-amazon.*^e/ir?t=$image
|
||||
||at*.doubanio.com^
|
||||
||ax.*.ifeng.com^
|
||||
||bdcpro*.techweb.com.cn^
|
||||
||bdlm*.hc360.com^
|
||||
||bj*.9669.cn^
|
||||
||cas.*.criteo.com^$domain=spiegel.de
|
||||
||cas.*.criteo.com^$third-party
|
||||
||caw.*.criteo.com^$domain=spiegel.de
|
||||
||caw.*.criteo.com^$third-party
|
||||
||collect.*.miui.com^
|
||||
||collector-*.elb.amazonaws.com^$image,third-party
|
||||
||collector-*.px-client.net^
|
||||
||collector-*.tvsquared.com^
|
||||
||d*.ruiwen.com^
|
||||
||d*.wanzhuang.com^
|
||||
||d*.xinshipu.com^
|
||||
||dm*.ppzuowen.com^
|
||||
||dm*.yxlady.com^
|
||||
||dn*.ixinwei.com^
|
||||
||fanpingbi*.gaokao.com^
|
||||
||fpb*.51edu.com^
|
||||
||gcw*.2liang.cn^
|
||||
||geo*.hltv.org^
|
||||
||hits-*.iubenda.com^
|
||||
||iad-*.blaze.com^
|
||||
||images.*.criteo.net^$domain=spiegel.de
|
||||
||images.*.criteo.net^$third-party
|
||||
||img*.hc360.com^*.swf
|
||||
||img.*mk.cn^$domain=avtbf.com
|
||||
||imp*.tradedoubler.com^$third-party
|
||||
||impservice*.yodao.com^
|
||||
||impservice*.youdao.com^
|
||||
||itc.*^prod=ad&
|
||||
||ja*.gamersky.com^
|
||||
||js*.abolezi.com^
|
||||
||log*.ku6.com^
|
||||
||log-*.previewnetworks.com^
|
||||
||logger-*.dailymotion.com^
|
||||
||lts*.qq.com^*.ts?index=$media,rewrite=abp-resource:blank-mp3,domain=qq.com
|
||||
||mcdp-*.outbrain.com^
|
||||
||metric*.rediff.com^
|
||||
||metro-trending-*.amazonaws.com^$third-party
|
||||
||minero-proxy-*.sh^$third-party
|
||||
||mkto-*.com^$third-party
|
||||
||ow*.biqugego.com^
|
||||
||ox-d.*^auid=
|
||||
||ping.*.sogou.com^
|
||||
||po*.877zw.com^
|
||||
||quickflix*.gridserver.com^$third-party
|
||||
||rdi.*.criteo.com^$domain=spiegel.de
|
||||
||rdi.*.criteo.com^$third-party
|
||||
||sam*.baby-kingdom.com^
|
||||
||same*.stockstar.com^
|
||||
||sell*.etlong.com^
|
||||
||sense-*.tapdb.net^
|
||||
||ssh.*.com^*!$script,third-party
|
||||
||stat.*.v-56.com^
|
||||
||static*.365inews.com^
|
||||
||stats-*.p2pnow.ru^
|
||||
||stats2.*.fdnames.com^
|
||||
||targeting.*.arcpublishing.com^
|
||||
||toujing*.top^
|
||||
||tracker*.qcloud.com^
|
||||
||tracking*.euroads.fi^$third-party
|
||||
||tracking.*.miui.com^
|
||||
||trk*.vidible.tv^
|
||||
||uc*.atobo.com^
|
||||
||um*.com^$third-party
|
||||
||union*.365inews.com^
|
||||
||vix.*.criteo.net^$domain=spiegel.de
|
||||
||vix.*.criteo.net^$third-party
|
||||
||vtnlog-*.elb.amazonaws.com^
|
||||
||ya*.dwstatic.com^
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
source /etc/profile
|
||||
|
||||
cd $(cd "$(dirname "$0")";pwd)
|
||||
|
@ -1,14 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
source /etc/profile
|
||||
|
||||
cd $(cd "$(dirname "$0")";pwd)
|
||||
git pull
|
||||
|
||||
shopt -s expand_aliases
|
||||
alias php='/usr/local/php/bin/php'
|
||||
export PHP_RET=$(. ./start-ci.sh | tail -1)
|
||||
|
||||
git add -A adblock-for-dnsmasq.conf origin-files/*
|
||||
git commit -am "auto commit. $PHP_RET"
|
||||
git push --force
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
<?php
|
||||
die('anti-AD');
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
<?php
|
||||
die('anti-AD');
|
Loading…
Reference in New Issue
Block a user