feat: add BIND-compatible blocklist
This commit is contained in:
parent
7227b68ee7
commit
f4cb2d4f5a
72
README.md
72
README.md
|
@ -8,6 +8,7 @@ There are multiple formats available, refer to the appropriate section according
|
|||
- Pi-hole -> [Domain-based](#domain-based) or [Hosts-based](#hosts-based) section
|
||||
- Hosts file -> [Hosts-based](#hosts-based) section
|
||||
- Dnsmasq DNS server -> [Dnsmasq](#dnsmasq) section
|
||||
- BIND DNS server -> [BIND](#bind) section
|
||||
|
||||
Not sure which format to choose? See [Compatibility](https://gitlab.com/curben/urlhaus-filter/wikis/compatibility) page in the wiki.
|
||||
|
||||
|
@ -136,14 +137,14 @@ This blocklist includes domains only.
|
|||
|
||||
```
|
||||
mkdir -p ~/.config/urlhaus-filter/
|
||||
curl https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq.conf -o ~/.config/urlhaus-filter/urlhaus-filter-dnsmasq.conf
|
||||
curl -L https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq.conf -o ~/.config/urlhaus-filter/urlhaus-filter-dnsmasq.conf
|
||||
printf "\nconf-file=$HOME/.config/urlhaus-filter/urlhaus-filter-dnsmasq.conf\n" >> /etc/dnsmasq.conf
|
||||
```
|
||||
|
||||
### Update
|
||||
|
||||
```
|
||||
curl https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq.conf -o ~/.config/urlhaus-filter/urlhaus-filter-dnsmasq.conf
|
||||
curl -L https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq.conf -o ~/.config/urlhaus-filter/urlhaus-filter-dnsmasq.conf
|
||||
```
|
||||
|
||||
<details>
|
||||
|
@ -177,7 +178,72 @@ Lite version (online domains only):
|
|||
|
||||
</details>
|
||||
|
||||
Note that it is not possible for Dnsmasq to block malicious IP address.
|
||||
## BIND
|
||||
|
||||
This blocklist includes domains only.
|
||||
|
||||
### Install
|
||||
|
||||
```
|
||||
mkdir -p ~/.config/urlhaus-filter/
|
||||
curl -L https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind.conf -o ~/.config/urlhaus-filter/urlhaus-filter-bind.conf
|
||||
printf '\ninclude "$HOME/.config/urlhaus-filter/urlhaus-filter-bind.conf"\n' >> /etc/bind/named.conf
|
||||
```
|
||||
|
||||
Add this to "/etc/bind/null.zone.file" (skip this step if the file already exists):
|
||||
|
||||
```
|
||||
$TTL 86400 ; one day
|
||||
@ IN SOA ns.nullzone.loc. ns.nullzone.loc. (
|
||||
2017102203
|
||||
28800
|
||||
7200
|
||||
864000
|
||||
86400 )
|
||||
NS ns.nullzone.loc.
|
||||
A 0.0.0.0
|
||||
@ IN A 0.0.0.0
|
||||
* IN A 0.0.0.0
|
||||
```
|
||||
|
||||
Zone file is derived from [here](https://github.com/tomzuu/blacklist-named/blob/master/null.zone.file).
|
||||
|
||||
### Update
|
||||
|
||||
```
|
||||
curl -L https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind.conf -o ~/.config/urlhaus-filter/urlhaus-filter-bind.conf
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>Mirrors</summary>
|
||||
|
||||
- https://cdn.statically.io/gl/curben/urlhaus-filter/raw/master/urlhaus-filter-bind.conf
|
||||
- https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind.conf
|
||||
- https://raw.githubusercontent.com/curbengh/urlhaus-filter/master/urlhaus-filter-bind.conf
|
||||
- https://cdn.statically.io/gh/curbengh/urlhaus-filter/master/urlhaus-filter-bind.conf
|
||||
- https://gitcdn.xyz/repo/curbengh/urlhaus-filter/master/urlhaus-filter-bind.conf
|
||||
- https://cdn.jsdelivr.net/gh/curbengh/urlhaus-filter/urlhaus-filter-bind.conf
|
||||
- https://repo.or.cz/urlhaus-filter.git/blob_plain/refs/heads/master:/urlhaus-filter-bind.conf
|
||||
|
||||
</details>
|
||||
|
||||
<br />
|
||||
Lite version (online domains only):
|
||||
|
||||
- https://gitlab.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf
|
||||
|
||||
<details>
|
||||
<summary>Mirrors</summary>
|
||||
|
||||
- https://cdn.statically.io/gl/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf
|
||||
- https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf
|
||||
- https://raw.githubusercontent.com/curbengh/urlhaus-filter/master/urlhaus-filter-bind-online.conf
|
||||
- https://cdn.statically.io/gh/curbengh/urlhaus-filter/master/urlhaus-filter-bind-online.conf
|
||||
- https://gitcdn.xyz/repo/curbengh/urlhaus-filter/master/urlhaus-filter-bind-online.conf
|
||||
- https://cdn.jsdelivr.net/gh/curbengh/urlhaus-filter/urlhaus-filter-bind-online.conf
|
||||
- https://repo.or.cz/urlhaus-filter.git/blob_plain/refs/heads/master:/urlhaus-filter-bind-online.conf
|
||||
|
||||
</details>
|
||||
|
||||
## Issues
|
||||
|
||||
|
|
17
script.sh
17
script.sh
|
@ -157,4 +157,21 @@ sed "s/$/\/0.0.0.0/g" | \
|
|||
sed '1 i\'"$COMMENT"'' | \
|
||||
sed "1s/Blocklist/dnsmasq Blocklist/" > "../urlhaus-filter-dnsmasq-online.conf"
|
||||
|
||||
|
||||
## BIND-compatible blocklist
|
||||
cat "../urlhaus-filter-hosts.txt" | \
|
||||
grep -vE "^#" | \
|
||||
sed "s/^0.0.0.0 /zone \"/g" | \
|
||||
sed "s/$/\" { type master; notify no; file \"null.zone.file\"; };/g" | \
|
||||
sed '1 i\'"$COMMENT"'' | \
|
||||
sed "1s/Blocklist/BIND Blocklist/" > "../urlhaus-filter-bind.conf"
|
||||
|
||||
cat "../urlhaus-filter-hosts-online.txt" | \
|
||||
grep -vE "^#" | \
|
||||
sed "s/^0.0.0.0 /zone \"/g" | \
|
||||
sed "s/$/\" { type master; notify no; file \"null.zone.file\"; };/g" | \
|
||||
sed '1 i\'"$COMMENT"'' | \
|
||||
sed "1s/Blocklist/BIND Blocklist/" > "../urlhaus-filter-bind-online.conf"
|
||||
|
||||
|
||||
cd ../ && rm -rf "tmp/"
|
||||
|
|
|
@ -0,0 +1,950 @@
|
|||
# Title: abuse.ch URLhaus Malicious Domains BIND Blocklist
|
||||
# Updated: Sun, 19 Apr 2020 07:40:20 +0000
|
||||
# Repo: https://gitlab.com/curben/urlhaus-filter
|
||||
# License: https://creativecommons.org/publicdomain/zero/1.0/
|
||||
# Source: https://urlhaus.abuse.ch/api/
|
||||
zone "0400msc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "150.co.il" { type master; notify no; file "null.zone.file"; };
|
||||
zone "2000kumdo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "21robo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "36lian.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "3mandatesmedia.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "3.zhzy999.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "3.zhzy999.net3.zhzy999.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "402musicfest.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "420hempizone.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "49parallel.ca" { type master; notify no; file "null.zone.file"; };
|
||||
zone "5321msc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "786suncity.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "8133msc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "8200msc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "87du.vip" { type master; notify no; file "null.zone.file"; };
|
||||
zone "887sconline.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "88mscco.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "9983suncity.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aaasolution.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "a.adventh.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "accentlandscapes.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "accessyouraudience.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "acghope.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "acteon.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "activecost.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "admin.solissol.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aehezi.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "agiandsam.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "agipasesores.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aite.me" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ajibolarilwan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alac.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alainghazal.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alba1004.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alexbase.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alexwacker.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "algorithmshargh.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "allloveseries.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alluringuk.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alohasoftware.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alphaconsumer.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alrazi-pharrna.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "altoinfor.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "al-wahd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "alyafchi.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "am-concepts.ca" { type master; notify no; file "null.zone.file"; };
|
||||
zone "amemarine.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "americanrange.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "anamikaindanegas.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "andreabo1.myftp.biz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "andreelapeyre.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "andremaraisbeleggings.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "angiathinh.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "angthong.nfe.go.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "annhienco.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "anvietpro.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "anysbergbiltong.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aoujlift.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "apartdelpinar.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "apoolcondo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "app.paketchef.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "apware.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "archiv.bg" { type master; notify no; file "null.zone.file"; };
|
||||
zone "areac-agr.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "a-reality.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aresorganics.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "asadairtravel.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ascentive.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "asgardia.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ashoakacharya.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "askarindo.or.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "atfile.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "atomlines.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "attach.66rpg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "audiosv.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aulist.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "auraco.ca" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aurumboy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "autochip.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "avstrust.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "azmeasurement.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "aznetsolutions.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "azzd.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "babaroadways.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "backlinksale.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "badgesforbullies.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bagmatisanchar.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bamakobleach.free.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bangkok-orchids.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "banzaimonkey.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bapo.granudan.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "baskinside.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bavlcentral.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bbs1.marisfrolg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bbs.sunwy.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bcdbrok.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bd11.52lishi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bd12.52lishi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bd18.52lishi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bd19.52lishi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bdsnhontrach.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "beeps.my" { type master; notify no; file "null.zone.file"; };
|
||||
zone "beibei.xx007.cc" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bepgroup.com.hk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "besserblok-ufa.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "besthack.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "besttasimacilik.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "beta.pterosol.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bflow.security-portal.cz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "biendaoco.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bigssearch.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bildeboks.no" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bilim-pavlodar.gov.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bingxiong.vip" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bisnishack.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bjkumdo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blog.241optical.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blog.800ml.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blog.anytimeneeds.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blog.hanxe.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blog.iwebnext.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "blogvanphongpham.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bolidar.dnset.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bondbuild.com.sg" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bpo.correct.go.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "brasstec.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "brbs.customer.netspace.net.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bread.karenkee.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "brewmethods.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "brifing.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "btlocum.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bugansavings.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bulki.by" { type master; notify no; file "null.zone.file"; };
|
||||
zone "bybysunday.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "byqkdy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cameli.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "caravella.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cassovia.sk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "castmart.ga" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cbk.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ccnn.xiaomier.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cdnus.laboratoryconecpttoday.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cdn.xiaoduoai.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ceirecrear.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cellas.sk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "centrocasagarbagnate.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "centromusicalpaternense.es" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cf0.pw" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cfs5.tistory.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cf.uuu9.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "changematterscounselling.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "changsa.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chanvribloc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "charm.bizfxr.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chattosport.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chauffeursontravel.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cheapwebvn.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "checktime.pk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chedea.eu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chinhdropfile80.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chinhdropfile.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chipmarkets.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chiptune.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chj.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ch.rmu.ac.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "chuckweiss.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cista-dobra-voda.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "clarityupstate.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "clearwaterriveroutfitting.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "client.yaap.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "clinicamariademolina.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "common-factor.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "compesat.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "complanbt.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "complan.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "comtechadsl.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "config.kuaisousou.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "consultingcy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "counciloflight.bravepages.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cozumuret.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cqjcc.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "creationsbyannmarie.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "creativepreneurclub.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "crimebranch.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "crittersbythebay.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "crudenergyllc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "csnserver.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "csw.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "cyclomove.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "d9.99ddd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "da.alibuf.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "daiohs.com.tw" { type master; notify no; file "null.zone.file"; };
|
||||
zone "damayab.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "danielbastos.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "darco.pk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "data.over-blog-kiwi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "datapolish.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "datvensaigon.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "davinadouthard.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dawaphoto.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "daynightgym.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "decorexpert-arte.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "de.gsearch.com.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "deixameuskls.tripod.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "demo10.onbm.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "demo.caglificioclerici.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "denkagida.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "depgrup.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "depot7.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "derivativespro.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dev1.xicom.us" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dev5.mypagevn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dev.sebpo.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dezcom.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dfd.zhzy999.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dgecolesdepolice.bf" { type master; notify no; file "null.zone.file"; };
|
||||
zone "diazavendano.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dichvuvesinhcongnghiep.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "digilib.dianhusada.ac.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "digiovanniconsultants.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "digitaldog.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "discuzx.win" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ditec.com.my" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dkw-engineering.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl.1003b.56a.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl.198424.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl2.soft-lenta.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl.dzqzd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl-gameplayer.dmm.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dlist.iqilie.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dl.kuaile-u.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dmresor.se" { type master; notify no; file "null.zone.file"; };
|
||||
zone "donmago.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "don.viameventos.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "doostansocks.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "doransky.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dosame.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down1.arpun.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.ancamera.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "downcdn.xianshuabao.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.gogominer.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.haote.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.1ys.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download301.wanmei.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.doumaibiji.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.kaobeitu.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.ktkt.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.pdf00.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.rising.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.skycn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.ttz3.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.ware.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "download.zjsyawqj.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.pcclear.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.pdf.cqmjkjzx.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.startools.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.upzxt.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.webbora.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "down.xrpdf.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dpeasesummithilltoppers.pbworks.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dpupr.lomboktengahkab.go.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dralpaslan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dreamtrips.cheap" { type master; notify no; file "null.zone.file"; };
|
||||
zone "drools-moved.46999.n3.nabble.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "drpradeepupadhayaya.com.np" { type master; notify no; file "null.zone.file"; };
|
||||
zone "drumetulguard.com.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "druzim.freewww.biz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dsiun.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "d.top4top.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dudulm.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dusdn.mireene.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dx1.qqtn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dx2.qqtn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dx30.siweidaoxiang.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dx60.siweidaoxiang.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dx.qqyewu.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "dzinestudio87.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "easydown.workday360.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ebook.w3wvg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "e.dangeana.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "edenhillireland.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "edicolanazionale.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ekenefb34518maketer.duckdns.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "elo.karenkee.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "enc-tech.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "energisegroup.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "entre-potes.mon-application.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "eoclean.com.tw" { type master; notify no; file "null.zone.file"; };
|
||||
zone "er-bulisguvenligi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ermekanik.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "esolvent.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "esteteam.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "eugeniaboix.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "export.faramouj.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ezfintechcorp.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fairyqueenstore.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fastsoft.onlinedown.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fazi.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fenoma.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fidiag.kymco.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "figuig.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fileco.jobkorea.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "filen3.utengine.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "filen5.utengine.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "files6.uludagbilisim.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fishingbigstore.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fitmanacademy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fjueir.ioiu.cf" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fkd.derpcity.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "flex.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "flood-protection.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "foodbooktv.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fordlamdong.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "foreverprecious.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "frin.ng" { type master; notify no; file "null.zone.file"; };
|
||||
zone "fte.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ftpftpftp.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "funletters.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "funpartyrent.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "futuregraphics.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "futurodelasciudades.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "g0ogle.free.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "g.7230.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "galuhtea.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gamee.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gaoruicn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "garenanow4.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "garenanow.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gateway.ethlqd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gateway-heide.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gd2.greenxf.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "genesisconstruction.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "germistonmiraclecentre.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ghislain.dartois.pagesperso-orange.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ghwls44.gabia.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gimscompany.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "glitchexotika.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "glitzygal.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "globaloilsupply.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gnimelf.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gocanada.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "goldseason.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "govhotel.us" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gov.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "grafchekloder.rebatesrule.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "granportale.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "greenfood.sa.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "greindustry.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gssgroups.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "gx-10012947.file.myqcloud.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "habbotips.free.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hagebakken.no" { type master; notify no; file "null.zone.file"; };
|
||||
zone "halalmovies.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "halcat.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "halotelco.vip" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hanaphoto.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "handrush.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hanoihub.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "haraldweinbrecht.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hazel-azure.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hdxa.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hellomessager.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "help-customer4.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hfsoftware.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hingcheong.hk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hldschool.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hmbwgroup.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hmpmall.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hoayeuthuong-my.sharepoint.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "holodrs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hostzaa.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hotart.co.nz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hotel-le-relais-des-moulins.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "housewifes.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hqsistemas.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hseda.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hsmwebapp.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "htxl.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "huishuren.nu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hyadegari.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hygianis-dz.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "hyvat-olutravintolat.fi" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ibda.adv.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ich-bin-es.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ideadom.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "idealselfstoragetx.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "igrejayhwh.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "imellda.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "impression-gobelet.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "inapadvance.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "incrediblepixels.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "incredicole.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "innovation4crisis.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "in-sect.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "instanttechnology.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "intelicasa.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "interbus.cz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "intersel-idf.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "intertradeassociates.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "intoxicated-twilight.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ipbg.org.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "iphonewin.website" { type master; notify no; file "null.zone.file"; };
|
||||
zone "iran-gold.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "irbf.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "iremart.es" { type master; notify no; file "null.zone.file"; };
|
||||
zone "isolation-a1-euro.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "isso.ps" { type master; notify no; file "null.zone.file"; };
|
||||
zone "itd.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "itsalongdrivetomichiganbutatleastmynameisnotjohnson.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "itsnixielou.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "itzmychoice.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ivanvy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "izu.co.jp" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jamiekaylive.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jansen-heesch.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "janusblockchain.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "janvierassocies.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "javatank.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jcedu.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jecas.edu.sh.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jkmotorimport.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jointings.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jorpesa.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "joule.kpi.ua" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jppost-cde.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jppost-dka.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jsd618.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jsq.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jsya.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jsygxc.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "justhemp.addrop.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jutvac.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jvalert.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jxwmw.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jycingenieria.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jyv.fi" { type master; notify no; file "null.zone.file"; };
|
||||
zone "jzny.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "k3.etfiber.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kachsurf.mylftv.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kaiwangdian.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kamasu11.cafe24.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kamisecurity.com.my" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kanok.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "karavantekstil.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kar.big-pro.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kassohome.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kaungchitzaw.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kdsp.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kejpa.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "khan-associates.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "khomaynhomnhua.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kingsland.systemsolution.me" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kjbm9.mof.gov.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kk-insig.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kleinendeli.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "k.ludong.tv" { type master; notify no; file "null.zone.file"; };
|
||||
zone "k-mart.co.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "knightsbridgeenergy.com.ng" { type master; notify no; file "null.zone.file"; };
|
||||
zone "koppemotta.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "koralli.if.ua" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kplico.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kqq.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kristofferdaniels.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ktkingtiger.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kt.saithingware.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kubanuchpribor.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kukumbara.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kupaliskohs.sk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kuponmax.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kuznetsov.ca" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kwanfromhongkong.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "kwikomfi-lab.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lameguard.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lammaixep.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "langsirterkini.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "langyabbs.05yun.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lcfurtado.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ld.mediaget.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "learnbuddy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "learningcomputing.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lebedyn.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lecafedesartistes.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lengendryme.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "leukkado.be" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lhbfirst.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lifeapt.biz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lists.ibiblio.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lists.mplayerhq.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "livetrack.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ln.ac.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lodergord.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "log.yundabao.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lsyr.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lt02.datacomspecialists.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ltseo.se" { type master; notify no; file "null.zone.file"; };
|
||||
zone "luatminhthuan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "luisnacht.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lurenzhuang.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "luyalu.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "lvr.samacomplus.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "m93701t2.beget.tech" { type master; notify no; file "null.zone.file"; };
|
||||
zone "macassar900.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mackleyn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "magda.zelentourism.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "maindb.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "makosoft.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "malin-akerman.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "margopassadorestylist.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "marketprice.com.ng" { type master; notify no; file "null.zone.file"; };
|
||||
zone "marocaji.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mattayom31.go.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "matt-e.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mazury4x4.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mbgrm.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mediamatkat.fi" { type master; notify no; file "null.zone.file"; };
|
||||
zone "medianews.ge" { type master; notify no; file "null.zone.file"; };
|
||||
zone "medicacademic.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "meeweb.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "meitao886.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "members.chello.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "members.westnet.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "metallexs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mettaanand.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mettek.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mfevr.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mhkdhotbot80.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mhkdhotbot.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "micahproducts.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "micalle.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "milap.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mindrey.co" { type master; notify no; file "null.zone.file"; };
|
||||
zone "minhanfood.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mirror.mypage.sk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mis.nbcc.ac.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "misterson.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mistydeblasiophotography.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mitsui-jyuku.mixh.jp" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mkk09.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mkontakt.az" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mmc.ru.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mobiadnews.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mobilefueldoctor.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mobilier-modern.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mochandmade.us" { type master; notify no; file "null.zone.file"; };
|
||||
zone "modcloudserver.eu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "moha-group.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "moscow11.at" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mountveederwines.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "moyo.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mperez.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mrtronic.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "msecurity.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mteng.mmj7.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mueblesjcp.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mvb.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mydaftar.instedt.edu.my" { type master; notify no; file "null.zone.file"; };
|
||||
zone "myhood.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "myofficeplus.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "myo.net.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "myonlinepokiesblog.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mytrains.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "mywp.asia" { type master; notify no; file "null.zone.file"; };
|
||||
zone "myyttilukukansasta.fi" { type master; notify no; file "null.zone.file"; };
|
||||
zone "n4321.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "namuvpn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nanomineraller.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "narty.laserteam.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "naturalma.es" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nebraskacharters.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "neocity1.free.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nerve.untergrund.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "news.abfakerman.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "newsfee.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "news.omumusic.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "newsun-shop.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "newxing.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nfbio.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ngoaingu.garage.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nofound.000webhostapp.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nprg.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nst-corporation.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "nwcsvcs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "oa.fnysw.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "oa.hys.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "obnova.zzux.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "obseques-conseils.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "oknoplastik.sk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "omega.az" { type master; notify no; file "null.zone.file"; };
|
||||
zone "omsk-osma.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "omuzgor.tj" { type master; notify no; file "null.zone.file"; };
|
||||
zone "onestin.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "onlinebuy24.eu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "onyourmarkmindsetgo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "openclient.sroinfo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "operasanpiox.bravepages.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ophtalmiccenter.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "opolis.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "originsmile.newe-card.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "osdsoft.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "osesama.jp" { type master; notify no; file "null.zone.file"; };
|
||||
zone "osnolum.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "otanityre.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ovelcom.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ozemag.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ozkayalar.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "p1.lingpao8.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "p2.lingpao8.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "p30qom.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "p3.zbjimg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "p500.mon-application.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pack301.bravepages.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "palochusvet.szm.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pamelaferolaw.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "paradisecreationsllc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "paradoks.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "partyflix.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pat4.jetos.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pat4.qpoe.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "patch2.51lg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "patch2.99ddd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "patch3.99ddd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pawel-sikora.pl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pcbooster.pro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pcginsure.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pcsoori.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pedidoslalacteo.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "peternoresson.se" { type master; notify no; file "null.zone.file"; };
|
||||
zone "phamchilong.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "phangiunque.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "phgmc.com.my" { type master; notify no; file "null.zone.file"; };
|
||||
zone "phudieusongma.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "piapendet.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pic.ncrczpw.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pink99.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pintall.ideaest.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "podiatristlansdale.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "podrska.com.hr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ponto50.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "poolbook.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ppl.ac.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ppmakrifatulilmi.or.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "probost.cz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "profitcoach.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "prosoc.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "protectiadatelor.biz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "protonambalaj.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "prowin.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pujashoppe.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "pure-hosting.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "purelondonhyg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qchms.qcpro.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qfjys.com.img.800cdn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qmsled.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qppl.angiang.gov.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qqhdz.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "qualitygolfbags.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "quartier-midi.be" { type master; notify no; file "null.zone.file"; };
|
||||
zone "quehagoencartagena.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "quoteslevel.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "raacts.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "raifix.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rapidex.co.rs" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ravadari.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rc.ixiaoyang.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "readytalk.github.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "real-song.tjmedia.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "recommendservices.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "redesoftdownload.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "redgreenblogs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rekspirit.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "renim.https443.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "renimin.mymom.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "res.uf1.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rezaazizi.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rinkaisystem-ht.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "riyanenterprise.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rkverify.securestudies.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "robertmcardle.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "robotrade.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rollscar.pk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ross-ocenka.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rossogato.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rrsolutions.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rudraagrointernational.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ruisgood.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rusch.nu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "rvo-net.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "s14b.91danji.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "s.51shijuan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sabiupd.compress.to" { type master; notify no; file "null.zone.file"; };
|
||||
zone "saboorjaam.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sabupda.vizvaz.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sahathaikasetpan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "salvationbd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sampaashi.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sanlen.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sanphimhay.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sardardhambhavnagar.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "saskklo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sayiteducation.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "scglobal.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "schollaert.eu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "schoongezicht.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "seenext.com.pk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sefp-boispro.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "selekture.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "selvikoyunciftligi.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sentineldev2.trafficdemos.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "serpentrising.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "servicemhkd80.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "servicemhkd.myvnc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sfoodfeedf.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shacked.webdepot.co.il" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shantouhallowed.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shaoxiaofei.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sharefile2020.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sharjahas.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shawigroup.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shembefoundation.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sherazsaleem.softvion.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "shishangta.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "simlun.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sinastorage.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sindicato1ucm.cl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sinerjias.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sisdata.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sistemagema.com.ar" { type master; notify no; file "null.zone.file"; };
|
||||
zone "s.kk30.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "skyscan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "slgroupsrl.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "slmconduct.dk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "smccycles.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "smits.by" { type master; notify no; file "null.zone.file"; };
|
||||
zone "snapit.solutions" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sncshyamavan.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sn-technologies.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "social.scottsimard.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sonsistemsogutma.com.tr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sonvietmy.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sophiahotel.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sophiaskyhotel.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sota-france.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "soulcastor.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sparkplug.staging.rayportugal.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "speed.myz.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sputnikmailru.cdnmail.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sr5.webplanbd.xyz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "src1.minibai.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sriglobalit.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "srvmanos.no-ip.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ss.cybersoft-vn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sslv3.at" { type master; notify no; file "null.zone.file"; };
|
||||
zone "starcountry.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "static.ilclock.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "stationaryhome.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "steelbuildings.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "stephenmould.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "stevewalker.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "stonece.com.tw" { type master; notify no; file "null.zone.file"; };
|
||||
zone "story-maker.jp" { type master; notify no; file "null.zone.file"; };
|
||||
zone "suc9898.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sugma.it5c.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "suncity116.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sup3rc10ud.ga" { type master; notify no; file "null.zone.file"; };
|
||||
zone "support-center3.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "support.clz.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "surecake.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "svkacademy.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "svn.cc.jyu.fi" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sv.pvroe.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sweaty.dk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "sweetrsnd.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "swwbia.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "symanreni.mysecondarydns.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "szlhtrade.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "szxypt.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "t8eiwt.coragem.cf" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tandenblekenhoofddorp.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "taraward.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "taxpos.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tcy.198424.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "teacherlinx.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "teardrop-productions.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "technoites.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tehranfish.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tehrenberg.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "telescopelms.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "telsiai.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tepcian.utcc.ac.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "testdatabaseforcepoint.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "testing.web-x.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "test.iyibakkendine.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thaibbqculver.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thaisell.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thammyroyal.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tharringtonsponsorship.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thc-annex.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "theneews.us" { type master; notify no; file "null.zone.file"; };
|
||||
zone "theprestige.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "theptiendat.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thepyramids.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "therecruiter.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thevision.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "t.honker.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thornadops.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thosewebbs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "thuong.bidiworks.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tianangdep.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tianti1.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tibinst.mefound.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tibok.lflink.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "timlinger.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tmhfashionhouse.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "toe.polinema.ac.id" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tonghopgia.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tonydong.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tonyzone.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "trailevolution.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "trienviet.com.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "trmv.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tsd.jxwan.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tsredco.telangana.gov.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tulli.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tumso.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tuneup.ibk.me" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tup.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tutuler.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "tuyensinhv2.elo.edu.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "uc-56.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ucto-id.cz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "uctscf.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ugc.wegame.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ultimatelamborghiniexperience.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ultimatepointsstore.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ulusalofis.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "umeed.app" { type master; notify no; file "null.zone.file"; };
|
||||
zone "undantagforlag.se" { type master; notify no; file "null.zone.file"; };
|
||||
zone "unicorpbrunei.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "unilevercopabr.mbiz20.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "uniquehall.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "update.iwang8.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "update.my.99.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "upd.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "urgentmessage.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "urschel-mosaic.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "users.skynet.be" { type master; notify no; file "null.zone.file"; };
|
||||
zone "uskeba.ca" { type master; notify no; file "null.zone.file"; };
|
||||
zone "usmadetshirts.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "uvegteglaker.hu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vadyur.github.io" { type master; notify no; file "null.zone.file"; };
|
||||
zone "valedchap.ir" { type master; notify no; file "null.zone.file"; };
|
||||
zone "valencaagora.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vasoccernews.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vat-registration.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vexhockey.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vfocus.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "videoswebcammsn.free.fr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vietducbio.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vigilar.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "visualdata.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vitinhvnt.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vitinhvnt.vn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vitromed.ro" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vrrumover0.vrrum0.farted.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "vvff.in" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wahat-apps.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wakecar.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wangjy1211.xyz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wangtong7.siweidaoxiang.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wap.dosame.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ware.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "warriorllc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wassonline.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "waterosmo.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wbd.5636.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wbkmt.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "webarte.com.br" { type master; notify no; file "null.zone.file"; };
|
||||
zone "webdoktor.at" { type master; notify no; file "null.zone.file"; };
|
||||
zone "webq.wikaba.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "webserverthai.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "websound.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "web.tiscali.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "web.tiscalinet.it" { type master; notify no; file "null.zone.file"; };
|
||||
zone "welcometothefuture.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "whgaty.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wiebe-sanitaer.de" { type master; notify no; file "null.zone.file"; };
|
||||
zone "windowsgadgets.club" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wmd9e.a3i1vvv.feteboc.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wmi.1217bye.host" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wnksupply.co.th" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wood-expert.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "woodsytech.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "worldvpn.co.kr" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wp.quercus.palustris.dk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wq.feiniaoai.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "writesofpassage.co.za" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wsg.com.sg" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wt8.siweidaoxiang.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "wt9.siweidaoxiang.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "www2.recepty5.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "w.zhzy999.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "x2vn.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xiaidown.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xiaoma-10021647.file.myqcloud.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xia.vzboot.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xiegushi.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xirfad.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xmr.haoqing.me" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xtremeforumz.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xxwl.kuaiyunds.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "xxxze.co.nu" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yagikozublog.mixh.jp" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yeabeauty.top" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yeez.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yeknam.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yesky.51down.org.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yesky.xzstatic.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yikesjewellery.co.uk" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yiyangjz.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yun-1.lenku.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yuyu02004-10043918.file.myqcloud.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "yx.m.dodo52.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zagruz.dnset.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zagruz.toh.info" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zagruz.zyns.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zd4b.lonlyfafner.ru" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zdy.17110.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zenkashow.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zentealounge.com.au" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zetalogs.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zeytinyagisabun.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zhencang.org" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zhetysu360.kz" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zhixiang360.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zh.rehom-logistics.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zhzy999.net" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zj.9553.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zmmore.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zoetermeerov.nl" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zoeydeutchweb.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zonefound.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zsinstrument.com" { type master; notify no; file "null.zone.file"; };
|
||||
zone "ztqsc.com.cn" { type master; notify no; file "null.zone.file"; };
|
||||
zone "zumodelima.com" { type master; notify no; file "null.zone.file"; };
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue