update regular expression

This commit is contained in:
gently 2020-03-08 12:31:57 +08:00
parent c747d20581
commit ef0d2f0fde
2 changed files with 18 additions and 20 deletions

View File

@ -1,7 +1,7 @@
!TITLE=anti-AD
!VER=20200308041052
!VER=20200308042918
!URL=https://github.com/privacy-protection-tools/anti-AD
!TOTAL_LINES=31670
!TOTAL_LINES=31669
||201*.myhard.com^
||8*.tianya.cn^
||a*.chajiaotong.com^
@ -438,7 +438,7 @@
||r.mail.ru^
||rs.mail.ru^
||top-fwz1.mail.ru^
/^(\S+\.)?ad([0-9]|m|s)?\./
/^(\S+\.)?ad([\d]|m|s)?\./
||1l1.cc^
||1lib.cn^
||1lo0.net^
@ -2992,7 +2992,7 @@
||afftrack.com^
||afftrk.online^
||affutdmedia.com^
/afgr[0-9]{1,2}\.com$/
/afgr[\d]{1,2}\.com$/
||afj0.com^
||afjlb.com^
||aflrm.com^
@ -4914,12 +4914,12 @@
||beacon.shazam.com^
||beacon.sina.com.cn^
||count.video.sina.com.cn^
/^(\S+\.)?d[0-9]+\.sina\.com\.cn/
/^(\S+\.)?d[\d]+\.sina(img)?(\.com)?\.cn/
||interest.mix.sina.com.cn^
||matwbp.iask.sina.com.cn^
||p4p.sina.com.cn^
||pfp.sina.com.cn^
/^(\S+\.)?sax[0-9ns]?\.sina\.com\.cn/
/^(\S+\.)?sax[\dns]?\.sina\.com\.cn/
||cre.mix.sina.com.cn^
||dcads.sina.com.cn^
||img.adbox.sina.com.cn^
@ -5793,7 +5793,7 @@
||bytemgdd.com^
||byujf.cn^
||byusabodcwyct.com^
/^([a-z0-9\-]+\.)?(?!xn--)[^\.\/]{40,}\.(com|net|cn)(\.cn)?$/
/^([a-z\d\-]+\.)?(?!xn--)[^\.\/]{40,}\.(com|net|cn)(\.cn)?$/
||byvue.com^
||byxlivaqzo.com^
||byzoo.org^
@ -8341,7 +8341,7 @@
||delivery.playallvideos.com^
||delivery.porn.com^
||delivery.smashing.services^
/delivery([0-9]{2}|dom|modo).com$/
/delivery([\d]{2}|dom|modo).com$/
||delnapb.com^
||deloplen.com^
||delta-boa.com^
@ -28393,7 +28393,6 @@
||list.z.qingting.fm^
||s.qtad.qingting.fm^
||adsys.sinovision.net^
/^(\S+\.)?d[0-9]\.sinaimg\.cn/
||pb.wang502.com^
||adse.ximalaya.com^
||ylunion.com^
@ -31299,10 +31298,10 @@
||qichetiemo.info^
||bbhyqp.com^
||sntzq.com^
/^(\S+\.)?61677[0-9a-z]{0,20}\.com$/
/^(\S+\.)?61677[\da-z]{0,20}\.com$/
||111ol.com^
||www-61677.com^
/^(\S+\.)?11599[0-9a-z]{2,20}\.com$/
/^(\S+\.)?11599[\da-z]{2,20}\.com$/
||duote.com^
||zzb6.cn^
||xp666.com^

View File

@ -66,9 +66,9 @@ $ARR_MERGED_WILD_LIST = array(
$ARR_REGEX_LIST = array(
'/9377[a-z]{2}\.com$/' => null,
'/^(\S+\.)?ad([0-9]|m|s)?\./' => null,
'/^(\S+\.)?ad([\d]|m|s)?\./' => null,
'/^(\S+\.)?affiliat(es|ion|e)\./' => null,
'/afgr[0-9]{1,2}\.com$/' => null,
'/afgr[\d]{1,2}\.com$/' => null,
'/^(\S+\.)?analytics(\-|\.)/' => null,
'/^(\S+\.)?counter(\-|\.)/' => null,
'/^(\S+\.)?pixels?\./' => null,
@ -79,14 +79,13 @@ $ARR_REGEX_LIST = array(
'/^(\S+\.)?tongji\./' => null,
'/^(\S+\.)?toolbar\./' => null,
'/^(\S+\.)?adservice\.google\./' => null,
'/^(\S+\.)?d[0-9]+\.sina\.com\.cn/' => null,
'/^(\S+\.)?d[0-9]\.sinaimg\.cn/' => null,
'/^(\S+\.)?sax[0-9ns]?\.sina\.com\.cn/' => null,
'/delivery([0-9]{2}|dom|modo).com$/' => null,
'/^(\S+\.)?d[\d]+\.sina(img)?(\.com)?\.cn/' => null,
'/^(\S+\.)?sax[\dns]?\.sina\.com\.cn/' => null,
'/delivery([\d]{2}|dom|modo).com$/' => null,
'/^(\S+\.)?[c-s]ads(abs|abz|ans|anz|ats|atz|del|ecs|ecz|ims|imz|ips|ipz|kis|kiz|oks|okz|one|pms|pmz)\.com/' => null,
'/^([a-z0-9\-]+\.)?(?!xn--)[^\.\/]{40,}\.(com|net|cn)(\.cn)?$/' => null, //超长域名
'/^(\S+\.)?11599[0-9a-z]{2,20}\.com$/' => null, //"澳门新葡京"系列
'/^(\S+\.)?61677[0-9a-z]{0,20}\.com$/' => null, //"澳门新葡京"系列
'/^([a-z\d\-]+\.)?(?!xn--)[^\.\/]{40,}\.(com|net|cn)(\.cn)?$/' => null, //超长域名
'/^(\S+\.)?11599[\da-z]{2,20}\.com$/' => null, //"澳门新葡京"系列
'/^(\S+\.)?61677[\da-z]{0,20}\.com$/' => null, //"澳门新葡京"系列
// '/^(\S+\.)?(?=.*[a-f].*\.com$)(?=.*\d.*\.com$)[a-f0-9]{15,}\.com$/' => null,
);