email_data 1605293459 → 1605671224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +4 -0
- data/.github/FUNDING.yml +3 -2
- data/.github/ISSUE_TEMPLATE/bug_report.md +41 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- data/.github/dependabot.yml +15 -0
- data/.github/workflows/{tests.yml → ruby-tests.yml} +3 -3
- data/.rubocop.yml +6 -10
- data/CONTRIBUTING.md +77 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +4 -3
- data/LICENSE.md +20 -0
- data/README.md +64 -41
- data/VERSION +1 -1
- data/bin/console +8 -6
- data/bin/helpers.rb +0 -0
- data/bin/publish-npm +0 -6
- data/bin/setup +2 -0
- data/bin/sync +2 -0
- data/bin/sync-disposable-emails +6 -3
- data/bin/sync-tld +15 -0
- data/data/disposable_domains.txt +70 -5
- data/data/free_email_domains.txt +1 -0
- data/data/manual/free_email_domains.txt +1 -0
- data/data/manual/private_relays.txt +1 -0
- data/data/private_relays.txt +1 -0
- data/data/slds.txt +5831 -0
- data/email_data.gemspec +20 -14
- data/lib/email_data.rb +2 -0
- data/lib/email_data/source/active_record.rb +16 -0
- data/lib/email_data/source/file_system.rb +8 -0
- data/package.json +1 -1
- metadata +18 -5
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1605671224
|
data/bin/console
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require "bundler/setup"
|
4
5
|
require "email_data"
|
@@ -6,9 +7,10 @@ require "email_data"
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
8
9
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
10
|
+
begin
|
11
|
+
require "pry"
|
12
|
+
Pry.start
|
13
|
+
rescue LoadError
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
16
|
+
end
|
data/bin/helpers.rb
CHANGED
File without changes
|
data/bin/publish-npm
CHANGED
@@ -7,12 +7,6 @@ source $HOME/.zsh/asdf.sh
|
|
7
7
|
|
8
8
|
asdf local nodejs 12.18.4
|
9
9
|
|
10
|
-
for input in $(ls -1 data/*.txt); do
|
11
|
-
name=$(basename $input)
|
12
|
-
output=data/json/"${name%.txt}.json"
|
13
|
-
jq -R -s -c 'split("\n")' < $input > $output
|
14
|
-
done
|
15
|
-
|
16
10
|
npm publish --access=public
|
17
11
|
|
18
12
|
terminal-notifier \
|
data/bin/setup
CHANGED
data/bin/sync
CHANGED
data/bin/sync-disposable-emails
CHANGED
@@ -182,6 +182,10 @@ threads.clear
|
|
182
182
|
|
183
183
|
domains = []
|
184
184
|
|
185
|
+
puts "=> Saving private relays"
|
186
|
+
private_relays = normalize_list(File.read("#{__dir__}/../data/manual/private_relays.txt").lines)
|
187
|
+
save_file("private_relays.txt", private_relays)
|
188
|
+
|
185
189
|
puts "=> Loading disposable_domains.txt"
|
186
190
|
domains += normalize_list(File.read("#{__dir__}/../data/disposable_domains.txt").lines)
|
187
191
|
|
@@ -196,9 +200,8 @@ end
|
|
196
200
|
|
197
201
|
ignore_domains = normalize_list(File.read("#{__dir__}/../data/free_email_domains.txt").lines)
|
198
202
|
.map {|domain| RootDomain.call(domain) }
|
199
|
-
ignore_domains +=
|
200
|
-
|
201
|
-
]
|
203
|
+
ignore_domains += normalize_list(File.read("#{__dir__}/../data/private_relays.txt").lines)
|
204
|
+
.map {|line| RootDomain.call(line) }
|
202
205
|
|
203
206
|
puts "=> Normalize domains (count: #{domains.size})"
|
204
207
|
domains = domains
|
data/bin/sync-tld
CHANGED
@@ -26,3 +26,18 @@ country_tlds = country_tlds
|
|
26
26
|
|
27
27
|
puts "=> Saving country_tlds.txt"
|
28
28
|
save_file("country_tlds.txt", normalize_list(country_tlds))
|
29
|
+
|
30
|
+
puts "=> Fetching sld list"
|
31
|
+
response = http_request(:get, "https://publicsuffix.org/list/public_suffix_list.dat")
|
32
|
+
content, _ = response.body.split("END ICANN DOMAINS")
|
33
|
+
|
34
|
+
slds = content
|
35
|
+
.lines
|
36
|
+
.map {|line| line.gsub(/^\*\./, "") }
|
37
|
+
.map(&:strip)
|
38
|
+
.reject(&:empty?)
|
39
|
+
.reject {|line| line.start_with?("/") }
|
40
|
+
.map {|line| line.gsub(/^([!*.]+)/, "") }
|
41
|
+
.reject {|line| line.split(".").size == 1 }
|
42
|
+
|
43
|
+
save_file("slds.txt", normalize_list(slds))
|
data/data/disposable_domains.txt
CHANGED
@@ -33,6 +33,7 @@
|
|
33
33
|
001xs.net
|
34
34
|
001xs.org
|
35
35
|
001xs.xyz
|
36
|
+
002.city
|
36
37
|
002288211.com
|
37
38
|
002r.com
|
38
39
|
002t.com
|
@@ -6988,6 +6989,7 @@
|
|
6988
6989
|
8verxcdkrfal61pfag.tk
|
6989
6990
|
8vkopg.us
|
6990
6991
|
8vnond.us
|
6992
|
+
8w903.buzz
|
6991
6993
|
8wehgc2atizw.cf
|
6992
6994
|
8wehgc2atizw.ga
|
6993
6995
|
8wehgc2atizw.gq
|
@@ -7027,6 +7029,7 @@
|
|
7027
7029
|
8xgui.com
|
7028
7030
|
8xgun.com
|
7029
7031
|
8xgve.com
|
7032
|
+
8xi.org
|
7030
7033
|
8xzr.com
|
7031
7034
|
8ycxiazai.com
|
7032
7035
|
8ycxz.com
|
@@ -7773,6 +7776,7 @@ a02sjv3e4e8jk4liat.gq
|
|
7773
7776
|
a02sjv3e4e8jk4liat.ml
|
7774
7777
|
a02sjv3e4e8jk4liat.tk
|
7775
7778
|
a0f7ukc.com
|
7779
|
+
a0fnjd.us
|
7776
7780
|
a0reklama.pl
|
7777
7781
|
a0txa.icu
|
7778
7782
|
a0ywhm.us
|
@@ -8374,6 +8378,7 @@ accumolecular.com
|
|
8374
8378
|
accur8.net
|
8375
8379
|
accuracyis.com
|
8376
8380
|
accuranker.tech
|
8381
|
+
accuratecallabs.com
|
8377
8382
|
accuratecallabs.net
|
8378
8383
|
accurateforum.info
|
8379
8384
|
accuratehealthman.xyz
|
@@ -10214,6 +10219,7 @@ alcsehar.ml
|
|
10214
10219
|
alcsehar.tk
|
10215
10220
|
alcsx.site
|
10216
10221
|
alcyonoid.info
|
10222
|
+
aldawaeya.org
|
10217
10223
|
aldealdi.shop
|
10218
10224
|
aldeaminera.info
|
10219
10225
|
aldemimea.xyz
|
@@ -10358,6 +10364,7 @@ alhadattv.com
|
|
10358
10364
|
alhalfpricelistings.com
|
10359
10365
|
alhamadealmeria.com
|
10360
10366
|
alhashareslectronics.com
|
10367
|
+
alhemyaria.news
|
10361
10368
|
alhzfw.us
|
10362
10369
|
ali-baba.info
|
10363
10370
|
aliagaberrakemlak.com
|
@@ -10431,6 +10438,7 @@ alisverisistan.net
|
|
10431
10438
|
alitaj.com
|
10432
10439
|
alittle.website
|
10433
10440
|
alivance.com
|
10441
|
+
aliveinlosangeles.com
|
10434
10442
|
alivemail.cf
|
10435
10443
|
alivemail.ga
|
10436
10444
|
alivemail.gq
|
@@ -14838,7 +14846,9 @@ bahisstar221.com
|
|
14838
14846
|
bahisstar226.com
|
14839
14847
|
bahisstar228.com
|
14840
14848
|
bahisstar229.com
|
14849
|
+
bahistek39.com
|
14841
14850
|
bahistek40.com
|
14851
|
+
bahistek86.com
|
14842
14852
|
bahisturk14.com
|
14843
14853
|
bahisturk17.com
|
14844
14854
|
bahisturk23.com
|
@@ -16999,6 +17009,7 @@ betnis87.com
|
|
16999
17009
|
betnis89.com
|
17000
17010
|
betodesa.com
|
17001
17011
|
betoffice206.com
|
17012
|
+
betoffice224.com
|
17002
17013
|
betofis.net
|
17003
17014
|
betofis10.com
|
17004
17015
|
betofis101.com
|
@@ -17941,6 +17952,7 @@ birminghamalcoholrehab.com
|
|
17941
17952
|
birminghamcocainerehab.com
|
17942
17953
|
birminghamfans.com
|
17943
17954
|
birminghamheroinrehab.com
|
17955
|
+
birminghamquote.com
|
17944
17956
|
biro.gq
|
17945
17957
|
biro.ml
|
17946
17958
|
biro.tk
|
@@ -18441,6 +18453,7 @@ blogcash.com
|
|
18441
18453
|
blogcast.blog
|
18442
18454
|
blogcast.lgbt
|
18443
18455
|
blogcast.us
|
18456
|
+
blogchannels.com
|
18444
18457
|
blogcollege.com
|
18445
18458
|
blogdad.com
|
18446
18459
|
blogdiary.live
|
@@ -19899,6 +19912,7 @@ brisbanephotobooth.com
|
|
19899
19912
|
bristlebrush.us
|
19900
19913
|
bristlebrushes.biz
|
19901
19914
|
bristlebrushes.us
|
19915
|
+
bristol-drones.com
|
19902
19916
|
britainst.com
|
19903
19917
|
britbarnmi.ga
|
19904
19918
|
britbarnmi.gq
|
@@ -20079,6 +20093,7 @@ brvbfj.shop
|
|
20079
20093
|
brxqoy.cf
|
20080
20094
|
bryanle.com
|
20081
20095
|
bryanlgx.com
|
20096
|
+
bryanslist.com
|
20082
20097
|
brymstonne.org
|
20083
20098
|
brypeterson.com
|
20084
20099
|
bryskumde.cf
|
@@ -20676,6 +20691,7 @@ buvertu.cf
|
|
20676
20691
|
buvertu.ga
|
20677
20692
|
buvertu.gq
|
20678
20693
|
buvertu.ml
|
20694
|
+
buvetti.com
|
20679
20695
|
buxap.com
|
20680
20696
|
buxl.com
|
20681
20697
|
buxod.com
|
@@ -20779,6 +20795,7 @@ buylaptopsunder300.com
|
|
20779
20795
|
buylevitra-us.com
|
20780
20796
|
buylevitra.website
|
20781
20797
|
buylikes247.com
|
20798
|
+
buylimu.biz
|
20782
20799
|
buylouisvuittonbagsjp.com
|
20783
20800
|
buymethotrexate.info
|
20784
20801
|
buymichaelkorsoutletca.ca
|
@@ -21061,6 +21078,7 @@ buyyourtoledohome.com
|
|
21061
21078
|
buyyoutubviews.com
|
21062
21079
|
buzlat.org
|
21063
21080
|
buzlin.club
|
21081
|
+
buzz.buzz
|
21064
21082
|
buzzcluby.com
|
21065
21083
|
buzzcompact.com
|
21066
21084
|
buzzdating.info
|
@@ -22361,6 +22379,7 @@ casinobit.club
|
|
22361
22379
|
casinobonusual2.com
|
22362
22380
|
casinochan2.com
|
22363
22381
|
casinocuan.club
|
22382
|
+
casinoelit47.com
|
22364
22383
|
casinoeridanmark.com
|
22365
22384
|
casinofundaily.info
|
22366
22385
|
casinogreat.club
|
@@ -23621,6 +23640,7 @@ cheapukniketrainerssale.co.uk
|
|
23621
23640
|
cheapuksalehandbagsoutletlv.co.uk
|
23622
23641
|
cheapukstraightenerssale.info
|
23623
23642
|
cheapusbspeakers.info
|
23643
|
+
cheapviagra.org
|
23624
23644
|
cheapwebtraffic.com
|
23625
23645
|
cheapweekendgetawaysforcouples.com
|
23626
23646
|
cheatautomation.com
|
@@ -24451,6 +24471,7 @@ citymdisp.ga
|
|
24451
24471
|
citymdisp.gq
|
24452
24472
|
citymdisp.ml
|
24453
24473
|
cityofnah.com
|
24474
|
+
cityquote.com
|
24454
24475
|
cityroyal.org
|
24455
24476
|
citytorate.ru
|
24456
24477
|
citytowercasino.com
|
@@ -24851,6 +24872,7 @@ clickmp.pro
|
|
24851
24872
|
clickmpnew.pro
|
24852
24873
|
clicknett.com
|
24853
24874
|
clicknowk.pro
|
24875
|
+
clickp.pro
|
24854
24876
|
clickpet.online
|
24855
24877
|
clickpm.pro
|
24856
24878
|
clickpnow.pro
|
@@ -25627,12 +25649,14 @@ coloshild.ru
|
|
25627
25649
|
coloshron.ru
|
25628
25650
|
colosjoy.ru
|
25629
25651
|
colossuscloud.us
|
25652
|
+
colourandcode.com
|
25630
25653
|
colt45forsale.tk
|
25631
25654
|
coltonattorneys.com
|
25632
25655
|
columbuscasino.design
|
25633
25656
|
columbuseldercare.com
|
25634
25657
|
columbusinfo.xyz
|
25635
25658
|
columbusnm.net
|
25659
|
+
columbusquote.com
|
25636
25660
|
com-04536875422364784521.top
|
25637
25661
|
com-101634586696.help
|
25638
25662
|
com-1024493459167.online
|
@@ -25669,6 +25693,8 @@ com-xvrv6yt51g.com
|
|
25669
25693
|
com.com
|
25670
25694
|
com.mz
|
25671
25695
|
com.ninja
|
25696
|
+
com.np
|
25697
|
+
com.ru
|
25672
25698
|
com.uk
|
25673
25699
|
com.us
|
25674
25700
|
com3b.com
|
@@ -25878,6 +25904,7 @@ computerslistnews.site
|
|
25878
25904
|
computersoftware2012.info
|
25879
25905
|
computerspeakers22.com
|
25880
25906
|
computersshop.futbol
|
25907
|
+
computingzone.org
|
25881
25908
|
compvershy.cf
|
25882
25909
|
compvershy.ga
|
25883
25910
|
compvershy.gq
|
@@ -27166,6 +27193,7 @@ crudeoildemulsifier.com
|
|
27166
27193
|
crudewag.icu
|
27167
27194
|
cruisecentraladviser.com
|
27168
27195
|
cruisefloppy.com
|
27196
|
+
cruisessale.com
|
27169
27197
|
crulle.ru
|
27170
27198
|
crumlin-grill.com
|
27171
27199
|
crunchcompass.com
|
@@ -28310,6 +28338,7 @@ dalamananadolulisesi.xyz
|
|
28310
28338
|
dalamanporttransfer.xyz
|
28311
28339
|
dalamanturkishvillas.xyz
|
28312
28340
|
dalanila.tk
|
28341
|
+
dalatrk.site
|
28313
28342
|
dalatvirginia.com
|
28314
28343
|
dalbam7.net
|
28315
28344
|
daleadershipinstitute.org
|
@@ -28828,6 +28857,7 @@ db4t5tes4.ga
|
|
28828
28857
|
db4t5tes4.gq
|
28829
28858
|
db4t5tes4.ml
|
28830
28859
|
db4t5tes4.tk
|
28860
|
+
dbadhe.com
|
28831
28861
|
dbanote.net
|
28832
28862
|
dbatalk.com
|
28833
28863
|
dbataturkioo.com
|
@@ -29712,6 +29742,7 @@ designfox.org
|
|
29712
29742
|
designfreebies.ru
|
29713
29743
|
designfuture.info
|
29714
29744
|
designingenium.com
|
29745
|
+
designingireland.com
|
29715
29746
|
designingknights.com
|
29716
29747
|
designland.info
|
29717
29748
|
designmint.site
|
@@ -36334,6 +36365,7 @@ evavbe.ml
|
|
36334
36365
|
evavbe.tk
|
36335
36366
|
evavoyance.com
|
36336
36367
|
evbank.ru
|
36368
|
+
evbholdingsllc.com
|
36337
36369
|
evcmail.com
|
36338
36370
|
evcr8twoxifpaw.cf
|
36339
36371
|
evcr8twoxifpaw.ga
|
@@ -36799,6 +36831,7 @@ extra-penis-enlargement.info
|
|
36799
36831
|
extraaaa.tk
|
36800
36832
|
extraaaa2.ga
|
36801
36833
|
extraaaa2.tk
|
36834
|
+
extraale.com
|
36802
36835
|
extraam.loan
|
36803
36836
|
extrabooks.site
|
36804
36837
|
extracccolorrfull.com
|
@@ -36831,6 +36864,7 @@ exttract.email
|
|
36831
36864
|
extureme.com
|
36832
36865
|
exwta.us
|
36833
36866
|
exxale.shop
|
36867
|
+
exxale.space
|
36834
36868
|
exxon-mobil.tk
|
36835
36869
|
exxoncars.com
|
36836
36870
|
exxx.club
|
@@ -42057,6 +42091,7 @@ gerandos.ru
|
|
42057
42091
|
gerdese.online
|
42058
42092
|
gerdimenta.ru
|
42059
42093
|
geremail.info
|
42094
|
+
gerenc.host
|
42060
42095
|
gerenciagran.com
|
42061
42096
|
gergilimembran.com
|
42062
42097
|
gerhanajitu.net
|
@@ -42315,6 +42350,7 @@ getyougadgets.com
|
|
42315
42350
|
getyourbook.site
|
42316
42351
|
getyourstudy.ru
|
42317
42352
|
getyourtantraon.com
|
42353
|
+
getzradonpros.net
|
42318
42354
|
geuur.live
|
42319
42355
|
gevemarket.site
|
42320
42356
|
gewinner-pose.com
|
@@ -44497,6 +44533,7 @@ groupe-psa.cf
|
|
44497
44533
|
groupe-psa.gq
|
44498
44534
|
groupe-psa.ml
|
44499
44535
|
groupe-psa.tk
|
44536
|
+
groupe.cd
|
44500
44537
|
groupfunds.club
|
44501
44538
|
groupkami.com
|
44502
44539
|
groupmaidat.com
|
@@ -49850,6 +49887,7 @@ ieattach.ml
|
|
49850
49887
|
iecrater.com
|
49851
49888
|
iecusa.net
|
49852
49889
|
iedindon.ml
|
49890
|
+
ieeeves.org
|
49853
49891
|
iefbcieuf.cf
|
49854
49892
|
iefbcieuf.ml
|
49855
49893
|
iefbcieuf.tk
|
@@ -50310,6 +50348,7 @@ imagictech.com
|
|
50310
50348
|
imaginegiants.com
|
50311
50349
|
imagineinvestments.com
|
50312
50350
|
imaginethelearning.com
|
50351
|
+
imagiscape.photography
|
50313
50352
|
imagiscape.photos
|
50314
50353
|
imagiscape.pictures
|
50315
50354
|
imagiscape.us
|
@@ -50824,7 +50863,6 @@ infinityangelhealingpathways.com
|
|
50824
50863
|
infinitybooksjapan.org
|
50825
50864
|
infinityclasses.info
|
50826
50865
|
infinityclippingpath.com
|
50827
|
-
infis.net.ru
|
50828
50866
|
infitter.ru
|
50829
50867
|
inflammationpills.info
|
50830
50868
|
inflatableslife.com
|
@@ -57378,6 +57416,7 @@ kuatocokjaran.gq
|
|
57378
57416
|
kuatocokjaran.ml
|
57379
57417
|
kuatocokjaran.tk
|
57380
57418
|
kuba-nedv.ru
|
57419
|
+
kubeflow.info
|
57381
57420
|
kubqs.live
|
57382
57421
|
kubzone.ru
|
57383
57422
|
kuchenmobel-berlin.ovh
|
@@ -57855,6 +57894,7 @@ labogili.ga
|
|
57855
57894
|
labontemty.com
|
57856
57895
|
laboralistascoruna.com
|
57857
57896
|
laboratortehnicadentara.ro
|
57897
|
+
laboratoryreport.win
|
57858
57898
|
labored673vl.online
|
57859
57899
|
laboriously.com
|
57860
57900
|
laborstart.org
|
@@ -59027,6 +59067,7 @@ lesabahis40.com
|
|
59027
59067
|
lesabahis48.com
|
59028
59068
|
lesabahis49.com
|
59029
59069
|
lesabahis55.com
|
59070
|
+
lesabahis90.com
|
59030
59071
|
lesastroi.ru
|
59031
59072
|
lesbugs.com
|
59032
59073
|
lesfineslamesdechicoutimi.com
|
@@ -61816,7 +61857,6 @@ lyaliume.site
|
|
61816
61857
|
lyamda.ru
|
61817
61858
|
lybaba.xyz
|
61818
61859
|
lybe.info
|
61819
|
-
lyceum-life.com.ru
|
61820
61860
|
lydia-uniform.com
|
61821
61861
|
lydias-scrubs.com
|
61822
61862
|
lydiascrubs.com
|
@@ -62042,6 +62082,7 @@ mabterssur.ml
|
|
62042
62082
|
mabterssur.tk
|
62043
62083
|
mabuklagi.ga
|
62044
62084
|
mabulareserve.com
|
62085
|
+
mabv.club
|
62045
62086
|
macaniuo235.cf
|
62046
62087
|
macankumbang.com
|
62047
62088
|
macaoguojihui.com
|
@@ -65472,6 +65513,7 @@ mft9864784.xyz
|
|
65472
65513
|
mft9867978.xyz
|
65473
65514
|
mft9876343.xyz
|
65474
65515
|
mft9883173.xyz
|
65516
|
+
mft9909394.xyz
|
65475
65517
|
mft9911897.xyz
|
65476
65518
|
mft9920868.xyz
|
65477
65519
|
mfuil.us
|
@@ -66795,6 +66837,7 @@ modetoxcenter.com
|
|
66795
66837
|
modety.online
|
66796
66838
|
modhack.net
|
66797
66839
|
modicadacademy.com
|
66840
|
+
modikulp.com
|
66798
66841
|
modish.net
|
66799
66842
|
modjunkies.com
|
66800
66843
|
modkjaj.site
|
@@ -67282,6 +67325,7 @@ mormoncoffee.com
|
|
67282
67325
|
mornayoovm.space
|
67283
67326
|
mornhfas.org.ua
|
67284
67327
|
morningstarkafe.xyz
|
67328
|
+
morningstiffnesspodcast.org
|
67285
67329
|
morningtw.com
|
67286
67330
|
mornsoft.com
|
67287
67331
|
morogamers.com
|
@@ -67645,6 +67689,7 @@ mrchinh.com
|
|
67645
67689
|
mrclipper.com
|
67646
67690
|
mrcraftyconsultant.com
|
67647
67691
|
mrctacoma.com
|
67692
|
+
mrdeeps.ml
|
67648
67693
|
mrdevilstore.com
|
67649
67694
|
mrdjg.live
|
67650
67695
|
mrdomino99.org
|
@@ -69332,7 +69377,6 @@ namste99.com
|
|
69332
69377
|
namtinh.top
|
69333
69378
|
namtovarovedam.ru
|
69334
69379
|
namtruong318.com
|
69335
|
-
namunathapa.com.np
|
69336
69380
|
namuoutlets.site
|
69337
69381
|
namushops.site
|
69338
69382
|
namuwikiusercontent.com
|
@@ -70069,6 +70113,7 @@ net-piyango.biz
|
|
70069
70113
|
net-privichkam.ru
|
70070
70114
|
net-solution.info
|
70071
70115
|
net.com
|
70116
|
+
net.ru
|
70072
70117
|
net191.com
|
70073
70118
|
net1mail.com
|
70074
70119
|
net2222.com
|
@@ -70299,6 +70344,7 @@ new-year-lucky-gifts.monster
|
|
70299
70344
|
new-year-special-gift.icu
|
70300
70345
|
new-year-special-gift.monster
|
70301
70346
|
new-york-wedding.com
|
70347
|
+
new-york.host
|
70302
70348
|
new688e.ga
|
70303
70349
|
newa.wtf
|
70304
70350
|
newage.press
|
@@ -74649,6 +74695,7 @@ osfujhtwrblkigbsqeo.ml
|
|
74649
74695
|
osfujhtwrblkigbsqeo.tk
|
74650
74696
|
osg168live.asia
|
74651
74697
|
osg168live.us
|
74698
|
+
osg777.link
|
74652
74699
|
osgame.live
|
74653
74700
|
osgame.online
|
74654
74701
|
osgpoker.us
|
@@ -75335,6 +75382,7 @@ p6udt9.us
|
|
75335
75382
|
p71ce1m.com
|
75336
75383
|
p7665.com
|
75337
75384
|
p7998.com
|
75385
|
+
p7n39rellip7.best
|
75338
75386
|
p8oan2gwrpbpvbh.cf
|
75339
75387
|
p8oan2gwrpbpvbh.ga
|
75340
75388
|
p8oan2gwrpbpvbh.gq
|
@@ -77407,6 +77455,7 @@ pidcockmarketing.com
|
|
77407
77455
|
pidemudanza.com
|
77408
77456
|
pidmail.com
|
77409
77457
|
pidoseme.online
|
77458
|
+
pidouno.com
|
77410
77459
|
pidox.org
|
77411
77460
|
piebombing.com
|
77412
77461
|
piececoun.icu
|
@@ -77586,6 +77635,7 @@ pinsonian.org
|
|
77586
77635
|
pinsup.ru
|
77587
77636
|
pintaresfacilconsapolin.com
|
77588
77637
|
pintasticapp.com
|
77638
|
+
pintech.ru
|
77589
77639
|
pintechpinball.com
|
77590
77640
|
pinterest-seo.online
|
77591
77641
|
pinterests.pro
|
@@ -79054,7 +79104,6 @@ powerhousedyno.com
|
|
79054
79104
|
powerin.site
|
79055
79105
|
powerlea.xyz
|
79056
79106
|
powerlear.xyz
|
79057
|
-
powerlink.com.np
|
79058
79107
|
powermass.site
|
79059
79108
|
powerml.racing
|
79060
79109
|
powerpages.website
|
@@ -79582,6 +79631,7 @@ prilution.info
|
|
79582
79631
|
prim1v.us
|
79583
79632
|
primabananen.net
|
79584
79633
|
primalburnkenburge.com
|
79634
|
+
primaryale.com
|
79585
79635
|
primaryvideos.com
|
79586
79636
|
primasecure.cd
|
79587
79637
|
primate.de
|
@@ -81612,6 +81662,7 @@ quanaril.cf
|
|
81612
81662
|
quanaril.com
|
81613
81663
|
quanaril.ga
|
81614
81664
|
quanaril.ml
|
81665
|
+
quandahui.com
|
81615
81666
|
quangcaoso1.net
|
81616
81667
|
quant-heyr.pro
|
81617
81668
|
quant-rr.pro
|
@@ -82302,6 +82353,7 @@ ragzwtna4ozrbf.tk
|
|
82302
82353
|
rahabionic.com
|
82303
82354
|
rahavpn.men
|
82304
82355
|
rahimis.com
|
82356
|
+
rahul.cyou
|
82305
82357
|
raiasu.cf
|
82306
82358
|
raiasu.ga
|
82307
82359
|
raiasu.gq
|
@@ -86170,6 +86222,7 @@ rvb.ro
|
|
86170
86222
|
rvbspending.com
|
86171
86223
|
rvctf.com
|
86172
86224
|
rvdogs.com
|
86225
|
+
rvemold.com
|
86173
86226
|
rviixj.us
|
86174
86227
|
rvjtudarhs.cf
|
86175
86228
|
rvjtudarhs.ga
|
@@ -87539,6 +87592,7 @@ savethechildrenactionnetwork.com
|
|
87539
87592
|
savetimeerr.fun
|
87540
87593
|
saveuhealth.com
|
87541
87594
|
savevid.ga
|
87595
|
+
saveyourgadget.com
|
87542
87596
|
savingallhomes.com
|
87543
87597
|
savingnyhomes.com
|
87544
87598
|
savingsearcher.com
|
@@ -87586,6 +87640,7 @@ saymeow.de
|
|
87586
87640
|
saymuscge.cf
|
87587
87641
|
saymuscge.ga
|
87588
87642
|
saymuscge.ml
|
87643
|
+
saynigger.com
|
87589
87644
|
saynotospams.com
|
87590
87645
|
sayonara.gq
|
87591
87646
|
sayonara.ml
|
@@ -87905,6 +87960,7 @@ screenvel.com
|
|
87905
87960
|
screwdon.recipes
|
87906
87961
|
screwdriveraction.com
|
87907
87962
|
screwthe.xyz
|
87963
|
+
scribb.eu
|
87908
87964
|
scribble.uno
|
87909
87965
|
scribeorigins.org
|
87910
87966
|
script.click
|
@@ -90097,6 +90153,7 @@ simplesport.ru
|
|
90097
90153
|
simpletextmarketing.com
|
90098
90154
|
simpleverification.com
|
90099
90155
|
simpleverni.icu
|
90156
|
+
simplexion.pm
|
90100
90157
|
simplictylegal.com
|
90101
90158
|
simplus.com.br
|
90102
90159
|
simply-email.bid
|
@@ -95963,6 +96020,7 @@ tee800.com
|
|
95963
96020
|
teebaum-oel.info
|
95964
96021
|
teecheap.store
|
95965
96022
|
teedinnan.com
|
96023
|
+
teeessential.com
|
95966
96024
|
teemia.com
|
95967
96025
|
teemo.site
|
95968
96026
|
teemoco.shop
|
@@ -96512,6 +96570,7 @@ test130.com
|
|
96512
96570
|
test324t6234w5y.ru
|
96513
96571
|
testa-lot.net
|
96514
96572
|
testadobe.ru
|
96573
|
+
testbnk.com
|
96515
96574
|
testclean.org
|
96516
96575
|
testclubs.com
|
96517
96576
|
testdom34533663.host
|
@@ -98161,6 +98220,7 @@ tintuceva.org
|
|
98161
98220
|
tintucphunu.org
|
98162
98221
|
tinviahe.top
|
98163
98222
|
tinybt.com
|
98223
|
+
tinyheight.com
|
98164
98224
|
tinymill.org
|
98165
98225
|
tinypc.reviews
|
98166
98226
|
tinypc.tech
|
@@ -101656,6 +101716,7 @@ ucq9vbhc9mhvp3bmge6.gq
|
|
101656
101716
|
ucq9vbhc9mhvp3bmge6.ml
|
101657
101717
|
ucr6pb.site
|
101658
101718
|
ucroyal09.com
|
101719
|
+
ucsoft.biz
|
101659
101720
|
uctqoj.us
|
101660
101721
|
uctwh.us
|
101661
101722
|
ucupdong.ml
|
@@ -104218,6 +104279,7 @@ vestgreensig.cf
|
|
104218
104279
|
vestgreensig.ga
|
104219
104280
|
vestgreensig.gq
|
104220
104281
|
vestgreensig.tk
|
104282
|
+
vestigeschool.com
|
104221
104283
|
vestimed.ru
|
104222
104284
|
vestnikao.ru
|
104223
104285
|
vestniktm.ru
|
@@ -104350,6 +104412,7 @@ vhntp15yadrtz0.gq
|
|
104350
104412
|
vhntp15yadrtz0.ml
|
104351
104413
|
vhntp15yadrtz0.tk
|
104352
104414
|
vhobbi.ru
|
104415
|
+
vhoff.com
|
104353
104416
|
vhpsc.us
|
104354
104417
|
vhw5ie.us
|
104355
104418
|
vhwiz8.us
|
@@ -105444,6 +105507,7 @@ volumetudo.website
|
|
105444
105507
|
volumkas.cf
|
105445
105508
|
volunteergarden.org
|
105446
105509
|
voluptuary.site
|
105510
|
+
volvefloor.com
|
105447
105511
|
volvo-ab.cf
|
105448
105512
|
volvo-ab.ga
|
105449
105513
|
volvo-ab.gq
|
@@ -110795,6 +110859,7 @@ xn--rgfest-vxa4c.com
|
|
110795
110859
|
xn--rhqt5tmrbt30afkiqpk45b.top
|
110796
110860
|
xn--ridsp-nua.se
|
110797
110861
|
xn--robotjurdico-zfb.com
|
110862
|
+
xn--rpple-tsa.com
|
110798
110863
|
xn--rrmokarejnkping-8sbic.nu
|
110799
110864
|
xn--rrmokarenorrkping-zzbm.com
|
110800
110865
|
xn--saatbahaber-4zb11d.com
|
@@ -111143,6 +111208,7 @@ xtremeventure.com
|
|
111143
111208
|
xtremewebtraffic.net
|
111144
111209
|
xtrstories.com
|
111145
111210
|
xtrstudios.com
|
111211
|
+
xtrtarget.com
|
111146
111212
|
xtrzeer.fun
|
111147
111213
|
xtubemate.site
|
111148
111214
|
xtuc.com
|
@@ -111695,7 +111761,6 @@ yachassa09.com
|
|
111695
111761
|
yachassa16.com
|
111696
111762
|
yackir.store
|
111697
111763
|
yacxrz.pl
|
111698
|
-
yadavnaresh.com.np
|
111699
111764
|
yadegarigift.icu
|
111700
111765
|
yadkincounty.org
|
111701
111766
|
yadong4.com
|