public_suffix 2.0.5 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +14 -0
- data/.rubocop_defaults.yml +54 -15
- data/.travis.yml +6 -3
- data/CHANGELOG.md +18 -9
- data/Gemfile +2 -2
- data/README.md +14 -0
- data/Rakefile +5 -3
- data/bin/console +14 -0
- data/data/list.txt +462 -82
- data/lib/public_suffix.rb +20 -16
- data/lib/public_suffix/list.rb +66 -107
- data/lib/public_suffix/rule.rb +42 -52
- data/lib/public_suffix/version.rb +1 -1
- data/public_suffix.gemspec +1 -1
- data/test/.empty +2 -0
- data/test/acceptance_test.rb +10 -2
- data/test/benchmarks/bm_find.rb +66 -0
- data/test/benchmarks/bm_find_all.rb +102 -0
- data/test/benchmarks/bm_names.rb +91 -0
- data/test/benchmarks/bm_select.rb +26 -0
- data/test/benchmarks/bm_select_incremental.rb +25 -0
- data/test/benchmarks/bm_valid.rb +101 -0
- data/test/profilers/domain_profiler.rb +12 -0
- data/test/profilers/find_profiler.rb +12 -0
- data/test/profilers/find_profiler_jp.rb +12 -0
- data/test/{initialization_profiler.rb → profilers/initialization_profiler.rb} +1 -1
- data/test/profilers/list_profsize.rb +11 -0
- data/test/profilers/object_binsize.rb +57 -0
- data/test/psl_test.rb +1 -1
- data/test/test_helper.rb +0 -8
- data/test/unit/domain_test.rb +15 -15
- data/test/unit/list_test.rb +46 -66
- data/test/unit/public_suffix_test.rb +5 -5
- data/test/unit/rule_test.rb +45 -49
- metadata +30 -12
- data/test/benchmark_helper.rb +0 -4
- data/test/execution_profiler.rb +0 -14
- data/test/performance_benchmark.rb +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cba2754580d47368f487d9d016a13684e9aa3440
|
4
|
+
data.tar.gz: 39ca3d79f2cdc62903fa79970ab207264757ba3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c84b5a8be3c0b4defbce1be5504a0ab41b2a4f9daf810cab5afbbabc0be0a1e857e73b7262027e163b107e5dfa7369c5fbcb49aa31b2fd2ac87e3165c39658e7
|
7
|
+
data.tar.gz: 90f2aaa790fd8481c1462b2ee12c48312d118dbcbf7b0d27c2be1b5cf6a372e52493f051aff48adae8f2b4ac1054da72dcbbdab5c91a1e91e52555184ec076ee
|
data/.rubocop.yml
CHANGED
@@ -10,9 +10,23 @@ AllCops:
|
|
10
10
|
- 'vendor/**/*'
|
11
11
|
# Exclude artifacts
|
12
12
|
- 'pkg/**/*'
|
13
|
+
# Other
|
14
|
+
- 'test/benchmarks/**/*'
|
15
|
+
- 'test/profilers/**/*'
|
13
16
|
|
14
17
|
Style/ClassAndModuleChildren:
|
15
18
|
Exclude:
|
16
19
|
- 'spec/**/*_spec.rb'
|
17
20
|
- 'test/**/*_test.rb'
|
18
21
|
|
22
|
+
# Dear Rubocop, I don't want to use String#strip_heredoc
|
23
|
+
Layout/IndentHeredoc:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Style/WordArray:
|
27
|
+
Enabled: false
|
28
|
+
MinSize: 3
|
29
|
+
|
30
|
+
Style/SymbolArray:
|
31
|
+
Enabled: false
|
32
|
+
MinSize: 3
|
data/.rubocop_defaults.yml
CHANGED
@@ -6,11 +6,19 @@ AllCops:
|
|
6
6
|
- 'tmp/**/*'
|
7
7
|
- 'vendor/**/*'
|
8
8
|
|
9
|
-
|
9
|
+
# [codesmell]
|
10
|
+
Metrics/AbcSize:
|
11
|
+
Enabled: false
|
12
|
+
Exclude:
|
13
|
+
- 'spec/**/*_spec.rb'
|
14
|
+
- 'test/**/*_test.rb'
|
15
|
+
|
16
|
+
# [codesmell]
|
17
|
+
Metrics/BlockLength:
|
10
18
|
Enabled: false
|
11
19
|
|
12
20
|
# [codesmell]
|
13
|
-
Metrics/
|
21
|
+
Metrics/CyclomaticComplexity:
|
14
22
|
Enabled: false
|
15
23
|
Exclude:
|
16
24
|
- 'spec/**/*_spec.rb'
|
@@ -18,24 +26,47 @@ Metrics/AbcSize:
|
|
18
26
|
|
19
27
|
# [codesmell]
|
20
28
|
Metrics/ClassLength:
|
29
|
+
Enabled: false
|
21
30
|
Exclude:
|
22
31
|
- 'spec/**/*_spec.rb'
|
23
32
|
- 'test/**/*_test.rb'
|
24
33
|
|
34
|
+
# [codesmell]
|
35
|
+
Metrics/LineLength:
|
36
|
+
Enabled: false
|
37
|
+
Exclude:
|
38
|
+
- 'spec/**/*_spec.rb'
|
39
|
+
- 'test/**/*_test.rb'
|
40
|
+
Max: 100
|
41
|
+
|
25
42
|
# [codesmell]
|
26
43
|
Metrics/MethodLength:
|
44
|
+
Enabled: false
|
27
45
|
Exclude:
|
28
46
|
- 'spec/**/*_spec.rb'
|
29
47
|
- 'test/**/*_test.rb'
|
30
|
-
Max:
|
48
|
+
Max: 10
|
31
49
|
|
32
50
|
# [codesmell]
|
33
|
-
Metrics/
|
51
|
+
Metrics/ModuleLength:
|
34
52
|
Enabled: false
|
35
53
|
Exclude:
|
36
54
|
- 'spec/**/*_spec.rb'
|
37
55
|
- 'test/**/*_test.rb'
|
38
|
-
|
56
|
+
|
57
|
+
# [codesmell]
|
58
|
+
Metrics/ParameterLists:
|
59
|
+
Enabled: false
|
60
|
+
Max: 5
|
61
|
+
|
62
|
+
# [codesmell]
|
63
|
+
Metrics/PerceivedComplexity:
|
64
|
+
Enabled: false
|
65
|
+
|
66
|
+
# [codesmell]
|
67
|
+
# I don't really get the point of this cop.
|
68
|
+
Performance/RedundantMerge:
|
69
|
+
Enabled: false
|
39
70
|
|
40
71
|
# Do not use "and" or "or" in conditionals, but for readability we can use it
|
41
72
|
# to chain executions. Just beware of operator order.
|
@@ -49,17 +80,23 @@ Style/Documentation:
|
|
49
80
|
|
50
81
|
# Double empty lines are useful to separate conceptually different methods
|
51
82
|
# in the same class or module.
|
52
|
-
|
83
|
+
Layout/EmptyLines:
|
53
84
|
Enabled: false
|
54
85
|
|
55
86
|
# In most cases, a space is nice. Sometimes, it's not.
|
56
87
|
# Just be consistent with the rest of the surrounding code.
|
57
|
-
|
88
|
+
Layout/EmptyLinesAroundClassBody:
|
58
89
|
Enabled: false
|
59
90
|
|
60
91
|
# In most cases, a space is nice. Sometimes, it's not.
|
61
92
|
# Just be consistent with the rest of the surrounding code.
|
62
|
-
|
93
|
+
Layout/EmptyLinesAroundModuleBody:
|
94
|
+
Enabled: false
|
95
|
+
|
96
|
+
# This is quite buggy, as it doesn't recognize double lines.
|
97
|
+
# Double empty lines are useful to separate conceptually different methods
|
98
|
+
# in the same class or module.
|
99
|
+
Layout/EmptyLineBetweenDefs:
|
63
100
|
Enabled: false
|
64
101
|
|
65
102
|
# I personally don't care about the format style.
|
@@ -78,16 +115,16 @@ Style/HashSyntax:
|
|
78
115
|
|
79
116
|
# Array indentation should be considered like MultilineMethodCallIndentation indentation
|
80
117
|
# and use 4 spaces instead of 2.
|
81
|
-
|
118
|
+
Layout/IndentArray:
|
82
119
|
IndentationWidth: 4
|
83
120
|
|
84
121
|
# Hash indentation should be considered like MultilineMethodCallIndentation indentation
|
85
122
|
# and use 4 spaces instead of 2.
|
86
|
-
|
123
|
+
Layout/IndentHash:
|
87
124
|
IndentationWidth: 4
|
88
125
|
|
89
126
|
# Multi-line differs from standard indentation, they are indented twice.
|
90
|
-
|
127
|
+
Layout/MultilineMethodCallIndentation:
|
91
128
|
EnforcedStyle: indented
|
92
129
|
IndentationWidth: 4
|
93
130
|
|
@@ -95,6 +132,11 @@ Style/MultilineMethodCallIndentation:
|
|
95
132
|
Style/NegatedIf:
|
96
133
|
Enabled: false
|
97
134
|
|
135
|
+
# For years, %w() has been the de-facto standard. A lot of libraries are using ().
|
136
|
+
# Switching to [] would be a nightmare.
|
137
|
+
Style/PercentLiteralDelimiters:
|
138
|
+
Enabled: false
|
139
|
+
|
98
140
|
# There are cases were the inline rescue is ok. We can either downgrade the severity,
|
99
141
|
# or rely on the developer judgement on a case-by-case basis.
|
100
142
|
Style/RescueModifier:
|
@@ -108,7 +150,7 @@ Style/RescueModifier:
|
|
108
150
|
#
|
109
151
|
# %w( foo bar )
|
110
152
|
#
|
111
|
-
|
153
|
+
Layout/SpaceInsidePercentLiteralDelimiters:
|
112
154
|
Enabled: false
|
113
155
|
|
114
156
|
# Hate It or Love It, I prefer double quotes as this is more consistent
|
@@ -130,6 +172,3 @@ Style/TrivialAccessors:
|
|
130
172
|
# end
|
131
173
|
#
|
132
174
|
IgnoreClassMethods: true
|
133
|
-
|
134
|
-
Style/WordArray:
|
135
|
-
Enabled: false
|
data/.travis.yml
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
language: ruby
|
2
2
|
|
3
3
|
rvm:
|
4
|
-
- 2.0
|
5
4
|
- 2.1
|
6
5
|
- 2.2
|
7
|
-
- 2.3.
|
8
|
-
-
|
6
|
+
- 2.3.3
|
7
|
+
- 2.4.0
|
9
8
|
- ruby-head
|
9
|
+
- jruby-9.0.5.0
|
10
|
+
- jruby-9.1.0.0
|
10
11
|
|
11
12
|
before_install:
|
13
|
+
- gem update --system
|
12
14
|
- gem install bundler
|
13
15
|
|
14
16
|
cache:
|
@@ -21,3 +23,4 @@ matrix:
|
|
21
23
|
allow_failures:
|
22
24
|
- rvm: ruby-head
|
23
25
|
- rvm: jruby-9.0.5.0
|
26
|
+
- rvm: jruby-9.1.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
|
3
|
+
|
4
|
+
#### Release 3.0.0
|
5
|
+
|
6
|
+
This new version includes a major redesign of the library internals, with the goal to drastically
|
7
|
+
improve the lookup time while reducing storage space.
|
8
|
+
|
9
|
+
For this reason, several public methods that are no longer applicable have been deprecated
|
10
|
+
and/or removed. You can find more information at GH-133.
|
4
11
|
|
5
12
|
- CHANGED: Updated definitions.
|
13
|
+
- CHANGED: Dropped support for Ruby < 2.1
|
14
|
+
- CHANGED: `PublicSuffix::List#rules` is now protected. You should not rely on it as the internal rule representation is subject to change to optimize performances.
|
15
|
+
- CHANGED: Removed `PublicSuffix::List.clear`, it was an unnecessary accessor method. Use `PublicSuffix::List.default = nil` if you **really** need to reset the default list. You shouldn't.
|
16
|
+
- CHANGED: `PublicSuffix::List#select` is now private. You should not use it, instead use `PublicSuffix::List#find`.
|
17
|
+
- CHANGED: `PublicSuffix::List` no longer implements Enumerable. Instead, use `#each` to loop over, or get an Enumerator.
|
18
|
+
- CHANGED: Redesigned internal list storage and lookup algorithm to achieve O(1) lookup time (see GH-133).
|
6
19
|
|
20
|
+
|
21
|
+
#### Release 2.0.5
|
22
|
+
|
23
|
+
- CHANGED: Updated definitions.
|
7
24
|
- CHANGED: Initialization performance improvements (GH-128). [Thanks @casperisfine]
|
8
25
|
|
9
26
|
|
@@ -32,23 +49,15 @@
|
|
32
49
|
#### Release 2.0.0
|
33
50
|
|
34
51
|
- NEW: Added PublicSuffix.domain # => sld.tld
|
35
|
-
|
36
52
|
- NEW: Added the ability to disable the use of private domains either at runtime, in addition to the ability to not load the private domains section when reading the list (`private_domains: false`). This feature also superseded the `private_domains` class-level attribute, that is no longer available.
|
37
53
|
|
38
54
|
- CHANGED: Considerable performance improvements (GH-92)
|
39
|
-
|
40
55
|
- CHANGED: Updated definitions.
|
41
|
-
|
42
56
|
- CHANGED: Removed deprecated PublicSuffix::InvalidDomain exception
|
43
|
-
|
44
57
|
- CHANGED: If the suffix is now listed, then the prevaling rule is "*" as defined by the PSL algorithm (GH-91)
|
45
|
-
|
46
58
|
- CHANGED: Input validation is performed only if you call `PublicSuffix.parse` or `PublicSuffix.list`
|
47
|
-
|
48
59
|
- CHANGED: Input with leading dot is invalid per PSL acceptance tests
|
49
|
-
|
50
60
|
- CHANGED: Removed `private_domains` class-level attribute. It is replaced by the `private_domains: false` option in the list parse method.
|
51
|
-
|
52
61
|
- CHANGED: The default list now assumes you use UTF-8 for reading the input (GH-94),
|
53
62
|
|
54
63
|
- REMOVED: Removed futile utility helpers such as `Domain#rule`, `Domain#is_a_domain?`, `Domain#is_a_subdomain?`, `Domain#valid?`. You can easily obtain the same result by having a custom method that reconstructs the logic, and/or calling `PublicSuffix.{domain|parse}(domain.to_s)`.
|
data/Gemfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
source "
|
1
|
+
source "https://rubygems.org"
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
@@ -7,4 +7,4 @@ gem "minitest"
|
|
7
7
|
gem "minitest-reporters"
|
8
8
|
gem "rubocop", require: false
|
9
9
|
|
10
|
-
gem "memory_profiler", require: false
|
10
|
+
gem "memory_profiler", require: false
|
data/README.md
CHANGED
@@ -87,8 +87,20 @@ PublicSuffix.valid?("www.google.com")
|
|
87
87
|
# Explicitly forbidden, it is listed as a private domain
|
88
88
|
PublicSuffix.valid?("blogspot.com")
|
89
89
|
# => false
|
90
|
+
|
91
|
+
# Unknown/not-listed TLD domains are valid by default
|
92
|
+
PublicSuffix.valid?("example.tldnotlisted")
|
93
|
+
# => true
|
90
94
|
```
|
91
95
|
|
96
|
+
Strict validation (without applying the default * rule):
|
97
|
+
|
98
|
+
```ruby
|
99
|
+
PublicSuffix.valid?("example.tldnotlisted", default_rule: nil)
|
100
|
+
# => false
|
101
|
+
```
|
102
|
+
|
103
|
+
|
92
104
|
## Fully Qualified Domain Names
|
93
105
|
|
94
106
|
This library automatically recognizes Fully Qualified Domain Names. A FQDN is a domain name that end with a trailing dot.
|
@@ -186,3 +198,5 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
|
|
186
198
|
## License
|
187
199
|
|
188
200
|
Copyright (c) 2009-2017 Simone Carletti. This is Free Software distributed under the MIT license.
|
201
|
+
|
202
|
+
The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
|
data/Rakefile
CHANGED
@@ -27,10 +27,12 @@ end
|
|
27
27
|
CLOBBER.include "yardoc"
|
28
28
|
|
29
29
|
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
task :benchmarks do
|
31
|
+
Dir["benchmarks/bm_*.rb"].each do |file|
|
32
|
+
sh "ruby #{file}"
|
33
|
+
end
|
33
34
|
end
|
35
|
+
task default: [:benchmarks] if ENV["BENCHMARKS"] == "1"
|
34
36
|
|
35
37
|
|
36
38
|
desc "Downloads the Public Suffix List file from the repository and stores it locally."
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "public_suffix"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/data/list.txt
CHANGED
@@ -171,7 +171,7 @@ it.ao
|
|
171
171
|
// aq : https://en.wikipedia.org/wiki/.aq
|
172
172
|
aq
|
173
173
|
|
174
|
-
// ar : https://nic.ar/normativa-vigente
|
174
|
+
// ar : https://nic.ar/nic-argentina/normativa-vigente
|
175
175
|
ar
|
176
176
|
com.ar
|
177
177
|
edu.ar
|
@@ -179,6 +179,7 @@ gob.ar
|
|
179
179
|
gov.ar
|
180
180
|
int.ar
|
181
181
|
mil.ar
|
182
|
+
musica.ar
|
182
183
|
net.ar
|
183
184
|
org.ar
|
184
185
|
tur.ar
|
@@ -406,6 +407,7 @@ arq.br
|
|
406
407
|
art.br
|
407
408
|
ato.br
|
408
409
|
b.br
|
410
|
+
belem.br
|
409
411
|
bio.br
|
410
412
|
blog.br
|
411
413
|
bmd.br
|
@@ -414,6 +416,8 @@ cng.br
|
|
414
416
|
cnt.br
|
415
417
|
com.br
|
416
418
|
coop.br
|
419
|
+
cri.br
|
420
|
+
def.br
|
417
421
|
ecn.br
|
418
422
|
eco.br
|
419
423
|
edu.br
|
@@ -424,6 +428,7 @@ etc.br
|
|
424
428
|
eti.br
|
425
429
|
far.br
|
426
430
|
flog.br
|
431
|
+
floripa.br
|
427
432
|
fm.br
|
428
433
|
fnd.br
|
429
434
|
fot.br
|
@@ -431,9 +436,38 @@ fst.br
|
|
431
436
|
g12.br
|
432
437
|
ggf.br
|
433
438
|
gov.br
|
439
|
+
// gov.br 26 states + df https://en.wikipedia.org/wiki/States_of_Brazil
|
440
|
+
ac.gov.br
|
441
|
+
al.gov.br
|
442
|
+
am.gov.br
|
443
|
+
ap.gov.br
|
444
|
+
ba.gov.br
|
445
|
+
ce.gov.br
|
446
|
+
df.gov.br
|
447
|
+
es.gov.br
|
448
|
+
go.gov.br
|
449
|
+
ma.gov.br
|
450
|
+
mg.gov.br
|
451
|
+
ms.gov.br
|
452
|
+
mt.gov.br
|
453
|
+
pa.gov.br
|
454
|
+
pb.gov.br
|
455
|
+
pe.gov.br
|
456
|
+
pi.gov.br
|
457
|
+
pr.gov.br
|
458
|
+
rj.gov.br
|
459
|
+
rn.gov.br
|
460
|
+
ro.gov.br
|
461
|
+
rr.gov.br
|
462
|
+
rs.gov.br
|
463
|
+
sc.gov.br
|
464
|
+
se.gov.br
|
465
|
+
sp.gov.br
|
466
|
+
to.gov.br
|
434
467
|
imb.br
|
435
468
|
ind.br
|
436
469
|
inf.br
|
470
|
+
jampa.br
|
437
471
|
jor.br
|
438
472
|
jus.br
|
439
473
|
leg.br
|
@@ -449,6 +483,7 @@ not.br
|
|
449
483
|
ntr.br
|
450
484
|
odo.br
|
451
485
|
org.br
|
486
|
+
poa.br
|
452
487
|
ppg.br
|
453
488
|
pro.br
|
454
489
|
psc.br
|
@@ -456,6 +491,7 @@ psi.br
|
|
456
491
|
qsl.br
|
457
492
|
radio.br
|
458
493
|
rec.br
|
494
|
+
recife.br
|
459
495
|
slg.br
|
460
496
|
srv.br
|
461
497
|
taxi.br
|
@@ -465,6 +501,7 @@ trd.br
|
|
465
501
|
tur.br
|
466
502
|
tv.br
|
467
503
|
vet.br
|
504
|
+
vix.br
|
468
505
|
vlog.br
|
469
506
|
wiki.br
|
470
507
|
zlg.br
|
@@ -4406,6 +4443,7 @@ name
|
|
4406
4443
|
// nc : http://www.cctld.nc/
|
4407
4444
|
nc
|
4408
4445
|
asso.nc
|
4446
|
+
nom.nc
|
4409
4447
|
|
4410
4448
|
// ne : https://en.wikipedia.org/wiki/.ne
|
4411
4449
|
ne
|
@@ -5280,6 +5318,9 @@ net.om
|
|
5280
5318
|
org.om
|
5281
5319
|
pro.om
|
5282
5320
|
|
5321
|
+
// onion : https://tools.ietf.org/html/rfc7686
|
5322
|
+
onion
|
5323
|
+
|
5283
5324
|
// org : https://en.wikipedia.org/wiki/.org
|
5284
5325
|
org
|
5285
5326
|
|
@@ -5861,38 +5902,6 @@ store.st
|
|
5861
5902
|
|
5862
5903
|
// su : https://en.wikipedia.org/wiki/.su
|
5863
5904
|
su
|
5864
|
-
adygeya.su
|
5865
|
-
arkhangelsk.su
|
5866
|
-
balashov.su
|
5867
|
-
bashkiria.su
|
5868
|
-
bryansk.su
|
5869
|
-
dagestan.su
|
5870
|
-
grozny.su
|
5871
|
-
ivanovo.su
|
5872
|
-
kalmykia.su
|
5873
|
-
kaluga.su
|
5874
|
-
karelia.su
|
5875
|
-
khakassia.su
|
5876
|
-
krasnodar.su
|
5877
|
-
kurgan.su
|
5878
|
-
lenug.su
|
5879
|
-
mordovia.su
|
5880
|
-
msk.su
|
5881
|
-
murmansk.su
|
5882
|
-
nalchik.su
|
5883
|
-
nov.su
|
5884
|
-
obninsk.su
|
5885
|
-
penza.su
|
5886
|
-
pokrovsk.su
|
5887
|
-
sochi.su
|
5888
|
-
spb.su
|
5889
|
-
togliatti.su
|
5890
|
-
troitsk.su
|
5891
|
-
tula.su
|
5892
|
-
tuva.su
|
5893
|
-
vladikavkaz.su
|
5894
|
-
vladimir.su
|
5895
|
-
vologda.su
|
5896
5905
|
|
5897
5906
|
// sv : http://www.svnet.org.sv/niveldos.pdf
|
5898
5907
|
sv
|
@@ -6584,6 +6593,9 @@ yt
|
|
6584
6593
|
// xn--54b7fta0cc ("Bangla", Bangla) : BD
|
6585
6594
|
বাংলা
|
6586
6595
|
|
6596
|
+
// xn--90ae ("bg", Bulgarian) : BG
|
6597
|
+
бг
|
6598
|
+
|
6587
6599
|
// xn--90ais ("bel", Belarusian/Russian Cyrillic) : BY
|
6588
6600
|
// Operated by .by registry
|
6589
6601
|
бел
|
@@ -6619,6 +6631,34 @@ yt
|
|
6619
6631
|
// https://www2.hkirc.hk/register/rules.jsp
|
6620
6632
|
香港
|
6621
6633
|
|
6634
|
+
// xn--2scrj9c ("Bharat", Kannada) : IN
|
6635
|
+
// India
|
6636
|
+
ಭಾರತ
|
6637
|
+
|
6638
|
+
// xn--3hcrj9c ("Bharat", Oriya) : IN
|
6639
|
+
// India
|
6640
|
+
ଭାରତ
|
6641
|
+
|
6642
|
+
// xn--45br5cyl ("Bharatam", Assamese) : IN
|
6643
|
+
// India
|
6644
|
+
ভাৰত
|
6645
|
+
|
6646
|
+
// xn--h2breg3eve ("Bharatam", Sanskrit) : IN
|
6647
|
+
// India
|
6648
|
+
भारतम्
|
6649
|
+
|
6650
|
+
// xn--h2brj9c8c ("Bharot", Santali) : IN
|
6651
|
+
// India
|
6652
|
+
भारोत
|
6653
|
+
|
6654
|
+
// xn--mgbgu82a ("Bharat", Sindhi) : IN
|
6655
|
+
// India
|
6656
|
+
ڀارت
|
6657
|
+
|
6658
|
+
// xn--rvc1e0am3e ("Bharatam", Malayalam) : IN
|
6659
|
+
// India
|
6660
|
+
ഭാരതം
|
6661
|
+
|
6622
6662
|
// xn--h2brj9c ("Bharat", Devanagari) : IN
|
6623
6663
|
// India
|
6624
6664
|
भारत
|
@@ -6760,6 +6800,12 @@ yt
|
|
6760
6800
|
// xn--o3cw4h ("Thai", Thai) : TH
|
6761
6801
|
// http://www.thnic.co.th
|
6762
6802
|
ไทย
|
6803
|
+
ศึกษา.ไทย
|
6804
|
+
ธุรกิจ.ไทย
|
6805
|
+
รัฐบาล.ไทย
|
6806
|
+
ทหาร.ไทย
|
6807
|
+
เน็ต.ไทย
|
6808
|
+
องค์กร.ไทย
|
6763
6809
|
|
6764
6810
|
// xn--pgbs0dh ("Tunisia", Arabic) : TN
|
6765
6811
|
// http://nic.tn
|
@@ -6822,11 +6868,16 @@ net.zm
|
|
6822
6868
|
org.zm
|
6823
6869
|
sch.zm
|
6824
6870
|
|
6825
|
-
// zw : https://
|
6826
|
-
|
6871
|
+
// zw : https://www.potraz.gov.zw/
|
6872
|
+
// Confirmed by registry <bmtengwa@potraz.gov.zw> 2017-01-25
|
6873
|
+
zw
|
6874
|
+
ac.zw
|
6875
|
+
co.zw
|
6876
|
+
gov.zw
|
6877
|
+
mil.zw
|
6878
|
+
org.zw
|
6827
6879
|
|
6828
|
-
|
6829
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2016-11-29T01:06:51Z
|
6880
|
+
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2017-02-23T00:46:09Z
|
6830
6881
|
|
6831
6882
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
6832
6883
|
aaa
|
@@ -7758,9 +7809,6 @@ dvag
|
|
7758
7809
|
// dvr : 2016-05-26 Hughes Satellite Systems Corporation
|
7759
7810
|
dvr
|
7760
7811
|
|
7761
|
-
// dwg : 2015-07-23 Autodesk, Inc.
|
7762
|
-
dwg
|
7763
|
-
|
7764
7812
|
// earth : 2014-12-04 Interlink Co., Ltd.
|
7765
7813
|
earth
|
7766
7814
|
|
@@ -8328,9 +8376,6 @@ ieee
|
|
8328
8376
|
// ifm : 2014-01-30 ifm electronic gmbh
|
8329
8377
|
ifm
|
8330
8378
|
|
8331
|
-
// iinet : 2014-07-03 Connect West Pty. Ltd.
|
8332
|
-
iinet
|
8333
|
-
|
8334
8379
|
// ikano : 2015-07-09 Ikano S.A.
|
8335
8380
|
ikano
|
8336
8381
|
|
@@ -8898,9 +8943,6 @@ mtr
|
|
8898
8943
|
// mutual : 2015-04-02 Northwestern Mutual MU TLD Registry, LLC
|
8899
8944
|
mutual
|
8900
8945
|
|
8901
|
-
// mutuelle : 2015-06-18 Fédération Nationale de la Mutualité Française
|
8902
|
-
mutuelle
|
8903
|
-
|
8904
8946
|
// nab : 2015-08-20 National Australia Bank Limited
|
8905
8947
|
nab
|
8906
8948
|
|
@@ -9072,9 +9114,6 @@ orange
|
|
9072
9114
|
// organic : 2014-03-27 Afilias Limited
|
9073
9115
|
organic
|
9074
9116
|
|
9075
|
-
// orientexpress : 2015-02-05
|
9076
|
-
orientexpress
|
9077
|
-
|
9078
9117
|
// origins : 2015-10-01 The Estée Lauder Companies Inc.
|
9079
9118
|
origins
|
9080
9119
|
|
@@ -9399,6 +9438,9 @@ room
|
|
9399
9438
|
// rsvp : 2014-05-08 Charleston Road Registry Inc.
|
9400
9439
|
rsvp
|
9401
9440
|
|
9441
|
+
// rugby : 2016-12-15 World Rugby Strategic Developments Limited
|
9442
|
+
rugby
|
9443
|
+
|
9402
9444
|
// ruhr : 2013-10-02 regiodot GmbH & Co. KG
|
9403
9445
|
ruhr
|
9404
9446
|
|
@@ -9825,9 +9867,6 @@ theater
|
|
9825
9867
|
// theatre : 2015-05-07
|
9826
9868
|
theatre
|
9827
9869
|
|
9828
|
-
// theguardian : 2015-04-30 Guardian News and Media Limited
|
9829
|
-
theguardian
|
9830
|
-
|
9831
9870
|
// tiaa : 2015-07-23 Teachers Insurance and Annuity Association of America
|
9832
9871
|
tiaa
|
9833
9872
|
|
@@ -9975,7 +10014,7 @@ ventures
|
|
9975
10014
|
// verisign : 2015-08-13 VeriSign, Inc.
|
9976
10015
|
verisign
|
9977
10016
|
|
9978
|
-
// versicherung : 2014-03-20
|
10017
|
+
// versicherung : 2014-03-20
|
9979
10018
|
versicherung
|
9980
10019
|
|
9981
10020
|
// vet : 2014-03-06
|
@@ -10200,9 +10239,6 @@ xin
|
|
10200
10239
|
// xn--4gbrim : 2013-10-04 Suhub Electronic Establishment
|
10201
10240
|
موقع
|
10202
10241
|
|
10203
|
-
// xn--4gq48lf9j : 2015-07-31 Wal-Mart Stores, Inc.
|
10204
|
-
一号店
|
10205
|
-
|
10206
10242
|
// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
|
10207
10243
|
公益
|
10208
10244
|
|
@@ -10263,7 +10299,7 @@ xin
|
|
10263
10299
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
10264
10300
|
삼성
|
10265
10301
|
|
10266
|
-
// xn--czr694b : 2014-01-16 Dot Trademark TLD Holding Company
|
10302
|
+
// xn--czr694b : 2014-01-16 Dot Trademark TLD Holding Company Limited
|
10267
10303
|
商标
|
10268
10304
|
|
10269
10305
|
// xn--czrs0t : 2013-12-19 Wild Island, LLC
|
@@ -10320,7 +10356,7 @@ xin
|
|
10320
10356
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
10321
10357
|
संगठन
|
10322
10358
|
|
10323
|
-
// xn--imr513n : 2014-12-11 Dot Trademark TLD Holding Company
|
10359
|
+
// xn--imr513n : 2014-12-11 Dot Trademark TLD Holding Company Limited
|
10324
10360
|
餐厅
|
10325
10361
|
|
10326
10362
|
// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
|
@@ -10514,6 +10550,12 @@ zuerich
|
|
10514
10550
|
// ===BEGIN PRIVATE DOMAINS===
|
10515
10551
|
// (Note: these are in alphabetical order by company name)
|
10516
10552
|
|
10553
|
+
// 1GB LLC : https://www.1gb.ua/
|
10554
|
+
// Submitted by 1GB LLC <noc@1gb.com.ua>
|
10555
|
+
cc.ua
|
10556
|
+
inf.ua
|
10557
|
+
ltd.ua
|
10558
|
+
|
10517
10559
|
// Agnat sp. z o.o. : https://domena.pl
|
10518
10560
|
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
10519
10561
|
beep.pl
|
@@ -10531,7 +10573,7 @@ beep.pl
|
|
10531
10573
|
// Submitted by Donavan Miller <donavanm@amazon.com>
|
10532
10574
|
cloudfront.net
|
10533
10575
|
|
10534
|
-
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
10576
|
+
// Amazon Elastic Compute Cloud : https://aws.amazon.com/ec2/
|
10535
10577
|
// Submitted by Luke Wells <psl-maintainers@amazon.com>
|
10536
10578
|
*.compute.amazonaws.com
|
10537
10579
|
*.compute-1.amazonaws.com
|
@@ -10550,7 +10592,7 @@ elasticbeanstalk.cn-north-1.amazonaws.com.cn
|
|
10550
10592
|
|
10551
10593
|
// Amazon S3 : https://aws.amazon.com/s3/
|
10552
10594
|
// Submitted by Luke Wells <psl-maintainers@amazon.com>
|
10553
|
-
|
10595
|
+
s3.amazonaws.com
|
10554
10596
|
s3-ap-northeast-1.amazonaws.com
|
10555
10597
|
s3-ap-northeast-2.amazonaws.com
|
10556
10598
|
s3-ap-south-1.amazonaws.com
|
@@ -10559,6 +10601,7 @@ s3-ap-southeast-2.amazonaws.com
|
|
10559
10601
|
s3-ca-central-1.amazonaws.com
|
10560
10602
|
s3-eu-central-1.amazonaws.com
|
10561
10603
|
s3-eu-west-1.amazonaws.com
|
10604
|
+
s3-eu-west-2.amazonaws.com
|
10562
10605
|
s3-external-1.amazonaws.com
|
10563
10606
|
s3-fips-us-gov-west-1.amazonaws.com
|
10564
10607
|
s3-sa-east-1.amazonaws.com
|
@@ -10571,6 +10614,7 @@ s3.ap-south-1.amazonaws.com
|
|
10571
10614
|
s3.cn-north-1.amazonaws.com.cn
|
10572
10615
|
s3.ca-central-1.amazonaws.com
|
10573
10616
|
s3.eu-central-1.amazonaws.com
|
10617
|
+
s3.eu-west-2.amazonaws.com
|
10574
10618
|
s3.us-east-2.amazonaws.com
|
10575
10619
|
s3.dualstack.ap-northeast-1.amazonaws.com
|
10576
10620
|
s3.dualstack.ap-northeast-2.amazonaws.com
|
@@ -10580,6 +10624,7 @@ s3.dualstack.ap-southeast-2.amazonaws.com
|
|
10580
10624
|
s3.dualstack.ca-central-1.amazonaws.com
|
10581
10625
|
s3.dualstack.eu-central-1.amazonaws.com
|
10582
10626
|
s3.dualstack.eu-west-1.amazonaws.com
|
10627
|
+
s3.dualstack.eu-west-2.amazonaws.com
|
10583
10628
|
s3.dualstack.sa-east-1.amazonaws.com
|
10584
10629
|
s3.dualstack.us-east-1.amazonaws.com
|
10585
10630
|
s3.dualstack.us-east-2.amazonaws.com
|
@@ -10595,6 +10640,7 @@ s3-website.ap-northeast-2.amazonaws.com
|
|
10595
10640
|
s3-website.ap-south-1.amazonaws.com
|
10596
10641
|
s3-website.ca-central-1.amazonaws.com
|
10597
10642
|
s3-website.eu-central-1.amazonaws.com
|
10643
|
+
s3-website.eu-west-2.amazonaws.com
|
10598
10644
|
s3-website.us-east-2.amazonaws.com
|
10599
10645
|
|
10600
10646
|
// Amune : https://amune.org/
|
@@ -10625,6 +10671,11 @@ myasustor.com
|
|
10625
10671
|
// Submitted by Andreas Weise <a.weise@avm.de>
|
10626
10672
|
myfritz.net
|
10627
10673
|
|
10674
|
+
// AW AdvisorWebsites.com Software Inc : https://advisorwebsites.com
|
10675
|
+
// Submitted by James Kennedy <domains@advisorwebsites.com>
|
10676
|
+
*.awdev.ca
|
10677
|
+
*.advisor.ws
|
10678
|
+
|
10628
10679
|
// backplane : https://www.backplane.io
|
10629
10680
|
// Submitted by Anthony Voutas <anthony@backplane.io>
|
10630
10681
|
backplaneapp.io
|
@@ -10637,15 +10688,28 @@ betainabox.com
|
|
10637
10688
|
// Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
|
10638
10689
|
bnr.la
|
10639
10690
|
|
10691
|
+
// Boomla : https://boomla.com
|
10692
|
+
// Submitted by Tibor Halter <thalter@boomla.com>
|
10693
|
+
boomla.net
|
10694
|
+
|
10640
10695
|
// Boxfuse : https://boxfuse.com
|
10641
10696
|
// Submitted by Axel Fontaine <axel@boxfuse.com>
|
10642
10697
|
boxfuse.io
|
10643
10698
|
|
10699
|
+
// bplaced : https://www.bplaced.net/
|
10700
|
+
// Submitted by Miroslav Bozic <security@bplaced.net>
|
10701
|
+
square7.ch
|
10702
|
+
bplaced.com
|
10703
|
+
bplaced.de
|
10704
|
+
square7.de
|
10705
|
+
bplaced.net
|
10706
|
+
square7.net
|
10707
|
+
|
10644
10708
|
// BrowserSafetyMark
|
10645
10709
|
// Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
|
10646
10710
|
browsersafetymark.io
|
10647
10711
|
|
10648
|
-
// callidomus: https://www.callidomus.com/
|
10712
|
+
// callidomus : https://www.callidomus.com/
|
10649
10713
|
// Submitted by Marcus Popp <admin@callidomus.com>
|
10650
10714
|
mycd.eu
|
10651
10715
|
|
@@ -10715,6 +10779,18 @@ xenapponazure.com
|
|
10715
10779
|
// Submitted by Leon Rowland <leon@clearvox.nl>
|
10716
10780
|
virtueeldomein.nl
|
10717
10781
|
|
10782
|
+
// Cloud66 : https://www.cloud66.com/
|
10783
|
+
// Submitted by Khash Sajadi <khash@cloud66.com>
|
10784
|
+
c66.me
|
10785
|
+
|
10786
|
+
// CloudAccess.net : https://www.cloudaccess.net/
|
10787
|
+
// Submitted by Pawel Panek <noc@cloudaccess.net>
|
10788
|
+
jdevcloud.com
|
10789
|
+
wpdevcloud.com
|
10790
|
+
cloudaccess.host
|
10791
|
+
freesite.host
|
10792
|
+
cloudaccess.net
|
10793
|
+
|
10718
10794
|
// cloudControl : https://www.cloudcontrol.com/
|
10719
10795
|
// Submitted by Tobias Wilken <tw@cloudcontrol.com>
|
10720
10796
|
cloudcontrolled.com
|
@@ -10753,11 +10829,7 @@ cloudns.us
|
|
10753
10829
|
co.nl
|
10754
10830
|
co.no
|
10755
10831
|
|
10756
|
-
//
|
10757
|
-
// Submitted by Damien Tournoud <damien@commerceguys.com>
|
10758
|
-
*.platform.sh
|
10759
|
-
|
10760
|
-
// COSIMO GmbH http://www.cosimo.de
|
10832
|
+
// COSIMO GmbH : http://www.cosimo.de
|
10761
10833
|
// Submitted by Rene Marticke <rmarticke@cosimo.de>
|
10762
10834
|
dyn.cosidns.de
|
10763
10835
|
dynamisches-dns.de
|
@@ -10789,6 +10861,7 @@ cyon.site
|
|
10789
10861
|
// Daplie, Inc : https://daplie.com
|
10790
10862
|
// Submitted by AJ ONeal <aj@daplie.com>
|
10791
10863
|
daplie.me
|
10864
|
+
localhost.daplie.me
|
10792
10865
|
|
10793
10866
|
// Dansk.net : http://www.dansk.net/
|
10794
10867
|
// Submitted by Anani Voule <digital@digital.co.dk>
|
@@ -10806,6 +10879,10 @@ dedyn.io
|
|
10806
10879
|
// Submitted by Norbert Auler <mail@dnshome.de>
|
10807
10880
|
dnshome.de
|
10808
10881
|
|
10882
|
+
// DrayTek Corp. : https://www.draytek.com/
|
10883
|
+
// Submitted by Paul Fang <mis@draytek.com>
|
10884
|
+
drayddns.com
|
10885
|
+
|
10809
10886
|
// DreamHost : http://www.dreamhost.com/
|
10810
10887
|
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com>
|
10811
10888
|
dreamhosters.com
|
@@ -11121,14 +11198,43 @@ dyn.home-webserver.de
|
|
11121
11198
|
myhome-server.de
|
11122
11199
|
ddnss.org
|
11123
11200
|
|
11201
|
+
// Definima : http://www.definima.com/
|
11202
|
+
// Submitted by Maxence Bitterli <maxence@definima.com>
|
11203
|
+
definima.net
|
11204
|
+
definima.io
|
11205
|
+
|
11206
|
+
// Dynu.com : https://www.dynu.com/
|
11207
|
+
// Submitted by Sue Ye <sue@dynu.com>
|
11208
|
+
ddnsfree.com
|
11209
|
+
ddnsgeek.com
|
11210
|
+
giize.com
|
11211
|
+
gleeze.com
|
11212
|
+
kozow.com
|
11213
|
+
loseyourip.com
|
11214
|
+
ooguy.com
|
11215
|
+
theworkpc.com
|
11216
|
+
casacam.net
|
11217
|
+
dynu.net
|
11218
|
+
accesscam.org
|
11219
|
+
camdvr.org
|
11220
|
+
freeddns.org
|
11221
|
+
mywire.org
|
11222
|
+
webredirect.org
|
11223
|
+
myddns.rocks
|
11224
|
+
blogsite.xyz
|
11225
|
+
|
11124
11226
|
// dynv6 : https://dynv6.com
|
11125
|
-
// Submitted by Dominik Menke <dom@digineo.de>
|
11227
|
+
// Submitted by Dominik Menke <dom@digineo.de>
|
11126
11228
|
dynv6.net
|
11127
11229
|
|
11128
11230
|
// E4YOU spol. s.r.o. : https://e4you.cz/
|
11129
11231
|
// Submitted by Vladimir Dudr <info@e4you.cz>
|
11130
11232
|
e4.cz
|
11131
11233
|
|
11234
|
+
// Enalean SAS: https://www.enalean.com
|
11235
|
+
// Submitted by Thomas Cottier <thomas.cottier@enalean.com>
|
11236
|
+
mytuleap.com
|
11237
|
+
|
11132
11238
|
// Enonic : http://enonic.com/
|
11133
11239
|
// Submitted by Erik Kaareng-Sunde <esu@enonic.com>
|
11134
11240
|
enonic.io
|
@@ -11197,25 +11303,127 @@ us.eu.org
|
|
11197
11303
|
// Submitted by Michal Kralik <support@evennode.com>
|
11198
11304
|
eu-1.evennode.com
|
11199
11305
|
eu-2.evennode.com
|
11306
|
+
eu-3.evennode.com
|
11307
|
+
eu-4.evennode.com
|
11200
11308
|
us-1.evennode.com
|
11201
11309
|
us-2.evennode.com
|
11310
|
+
us-3.evennode.com
|
11311
|
+
us-4.evennode.com
|
11312
|
+
|
11313
|
+
// eDirect Corp. : https://hosting.url.com.tw/
|
11314
|
+
// Submitted by C.S. chang <cschang@corp.url.com.tw>
|
11315
|
+
twmail.cc
|
11316
|
+
twmail.net
|
11317
|
+
twmail.org
|
11318
|
+
mymailer.com.tw
|
11319
|
+
url.tw
|
11202
11320
|
|
11203
11321
|
// Facebook, Inc.
|
11204
11322
|
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11205
11323
|
apps.fbsbx.com
|
11206
11324
|
|
11207
|
-
//
|
11208
|
-
// Submitted by
|
11325
|
+
// FAITID : https://faitid.org/
|
11326
|
+
// Submitted by Maxim Alzoba <tech.contact@faitid.org>
|
11327
|
+
// https://www.flexireg.net/stat_info
|
11328
|
+
ru.net
|
11329
|
+
adygeya.ru
|
11330
|
+
bashkiria.ru
|
11331
|
+
bir.ru
|
11332
|
+
cbg.ru
|
11333
|
+
com.ru
|
11334
|
+
dagestan.ru
|
11335
|
+
grozny.ru
|
11336
|
+
kalmykia.ru
|
11337
|
+
kustanai.ru
|
11338
|
+
marine.ru
|
11339
|
+
mordovia.ru
|
11340
|
+
msk.ru
|
11341
|
+
mytis.ru
|
11342
|
+
nalchik.ru
|
11343
|
+
nov.ru
|
11344
|
+
pyatigorsk.ru
|
11345
|
+
spb.ru
|
11346
|
+
vladikavkaz.ru
|
11347
|
+
vladimir.ru
|
11348
|
+
abkhazia.su
|
11349
|
+
adygeya.su
|
11350
|
+
aktyubinsk.su
|
11351
|
+
arkhangelsk.su
|
11352
|
+
armenia.su
|
11353
|
+
ashgabad.su
|
11354
|
+
azerbaijan.su
|
11355
|
+
balashov.su
|
11356
|
+
bashkiria.su
|
11357
|
+
bryansk.su
|
11358
|
+
bukhara.su
|
11359
|
+
chimkent.su
|
11360
|
+
dagestan.su
|
11361
|
+
east-kazakhstan.su
|
11362
|
+
exnet.su
|
11363
|
+
georgia.su
|
11364
|
+
grozny.su
|
11365
|
+
ivanovo.su
|
11366
|
+
jambyl.su
|
11367
|
+
kalmykia.su
|
11368
|
+
kaluga.su
|
11369
|
+
karacol.su
|
11370
|
+
karaganda.su
|
11371
|
+
karelia.su
|
11372
|
+
khakassia.su
|
11373
|
+
krasnodar.su
|
11374
|
+
kurgan.su
|
11375
|
+
kustanai.su
|
11376
|
+
lenug.su
|
11377
|
+
mangyshlak.su
|
11378
|
+
mordovia.su
|
11379
|
+
msk.su
|
11380
|
+
murmansk.su
|
11381
|
+
nalchik.su
|
11382
|
+
navoi.su
|
11383
|
+
north-kazakhstan.su
|
11384
|
+
nov.su
|
11385
|
+
obninsk.su
|
11386
|
+
penza.su
|
11387
|
+
pokrovsk.su
|
11388
|
+
sochi.su
|
11389
|
+
spb.su
|
11390
|
+
tashkent.su
|
11391
|
+
termez.su
|
11392
|
+
togliatti.su
|
11393
|
+
troitsk.su
|
11394
|
+
tselinograd.su
|
11395
|
+
tula.su
|
11396
|
+
tuva.su
|
11397
|
+
vladikavkaz.su
|
11398
|
+
vladimir.su
|
11399
|
+
vologda.su
|
11400
|
+
|
11401
|
+
// Fastly Inc. : http://www.fastly.com/
|
11402
|
+
// Submitted by Fastly Security <security@fastly.com>
|
11403
|
+
fastlylb.net
|
11404
|
+
map.fastlylb.net
|
11405
|
+
freetls.fastly.net
|
11406
|
+
map.fastly.net
|
11407
|
+
a.prod.fastly.net
|
11408
|
+
global.prod.fastly.net
|
11209
11409
|
a.ssl.fastly.net
|
11210
11410
|
b.ssl.fastly.net
|
11211
11411
|
global.ssl.fastly.net
|
11212
|
-
a.prod.fastly.net
|
11213
|
-
global.prod.fastly.net
|
11214
11412
|
|
11215
11413
|
// Featherhead : https://featherhead.xyz/
|
11216
11414
|
// Submitted by Simon Menke <simon@featherhead.xyz>
|
11217
11415
|
fhapp.xyz
|
11218
11416
|
|
11417
|
+
// Fedora : https://fedoraproject.org/
|
11418
|
+
// submitted by Patrick Uiterwijk <puiterwijk@fedoraproject.org>
|
11419
|
+
fedorainfracloud.org
|
11420
|
+
fedorapeople.org
|
11421
|
+
cloud.fedoraproject.org
|
11422
|
+
|
11423
|
+
// Filegear Inc. : https://www.filegear.com
|
11424
|
+
// Submitted by Jason Zhu <jason@owtware.com>
|
11425
|
+
filegear.me
|
11426
|
+
|
11219
11427
|
// Firebase, Inc.
|
11220
11428
|
// Submitted by Chris Raynor <chris@firebase.com>
|
11221
11429
|
firebaseapp.com
|
@@ -11223,6 +11431,7 @@ firebaseapp.com
|
|
11223
11431
|
// Flynn : https://flynn.io
|
11224
11432
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11225
11433
|
flynnhub.com
|
11434
|
+
flynnhosting.net
|
11226
11435
|
|
11227
11436
|
// Freebox : http://www.freebox.fr
|
11228
11437
|
// Submitted by Romain Fliedel <rfliedel@freebox.fr>
|
@@ -11253,11 +11462,6 @@ service.gov.uk
|
|
11253
11462
|
// Submitted by Patrick Toomey <security@github.com>
|
11254
11463
|
github.io
|
11255
11464
|
githubusercontent.com
|
11256
|
-
githubcloud.com
|
11257
|
-
*.api.githubcloud.com
|
11258
|
-
*.ext.githubcloud.com
|
11259
|
-
gist.githubcloud.com
|
11260
|
-
*.githubcloudusercontent.com
|
11261
11465
|
|
11262
11466
|
// GitLab, Inc.
|
11263
11467
|
// Submitted by Alex Hanselka <alex@gitlab.com>
|
@@ -11355,6 +11559,7 @@ blogspot.tw
|
|
11355
11559
|
blogspot.ug
|
11356
11560
|
blogspot.vn
|
11357
11561
|
cloudfunctions.net
|
11562
|
+
cloud.goog
|
11358
11563
|
codespot.com
|
11359
11564
|
googleapis.com
|
11360
11565
|
googlecode.com
|
@@ -11379,6 +11584,10 @@ hepforge.org
|
|
11379
11584
|
herokuapp.com
|
11380
11585
|
herokussl.com
|
11381
11586
|
|
11587
|
+
// Ici la Lune : http://www.icilalune.com/
|
11588
|
+
// Submitted by Simon Morvan <simon@icilalune.com>
|
11589
|
+
moonscale.net
|
11590
|
+
|
11382
11591
|
// iki.fi
|
11383
11592
|
// Submitted by Hannu Aronsson <haa@iki.fi>
|
11384
11593
|
iki.fi
|
@@ -11387,6 +11596,10 @@ iki.fi
|
|
11387
11596
|
biz.at
|
11388
11597
|
info.at
|
11389
11598
|
|
11599
|
+
// info.cx : http://info.cx
|
11600
|
+
// Submitted by Jacob Slater <whois@igloo.to>
|
11601
|
+
info.cx
|
11602
|
+
|
11390
11603
|
// Interlegis : http://www.interlegis.leg.br
|
11391
11604
|
// Submitted by Gabriel Ferreira <registrobr@interlegis.leg.br>
|
11392
11605
|
ac.leg.br
|
@@ -11417,6 +11630,10 @@ se.leg.br
|
|
11417
11630
|
sp.leg.br
|
11418
11631
|
to.leg.br
|
11419
11632
|
|
11633
|
+
// IPiFony Systems, Inc. : https://www.ipifony.com/
|
11634
|
+
// Submitted by Matthew Hardeman <mhardeman@ipifony.com>
|
11635
|
+
ipifony.net
|
11636
|
+
|
11420
11637
|
// Joyent : https://www.joyent.com/
|
11421
11638
|
// Submitted by Brian Bennett <brian.bennett@joyent.com>
|
11422
11639
|
*.triton.zone
|
@@ -11438,10 +11655,40 @@ knightpoint.systems
|
|
11438
11655
|
co.krd
|
11439
11656
|
edu.krd
|
11440
11657
|
|
11658
|
+
// LCube - Professional hosting e.K. : https://www.lcube-webhosting.de
|
11659
|
+
// Submitted by Lars Laehn <info@lcube.de>
|
11660
|
+
git-repos.de
|
11661
|
+
lcube-server.de
|
11662
|
+
svn-repos.de
|
11663
|
+
|
11664
|
+
// LiquidNet Ltd : http://www.liquidnetlimited.com/
|
11665
|
+
// Submitted by Victor Velchev <admin@liquidnetlimited.com>
|
11666
|
+
we.bs
|
11667
|
+
|
11668
|
+
// Lukanet Ltd : https://lukanet.com
|
11669
|
+
// Submitted by Anton Avramov <register@lukanet.com>
|
11670
|
+
barsy.bg
|
11671
|
+
barsyonline.com
|
11672
|
+
barsy.de
|
11673
|
+
barsy.eu
|
11674
|
+
barsy.in
|
11675
|
+
barsy.net
|
11676
|
+
barsy.online
|
11677
|
+
barsy.support
|
11678
|
+
|
11441
11679
|
// Magento Commerce
|
11442
11680
|
// Submitted by Damien Tournoud <dtournoud@magento.cloud>
|
11443
11681
|
*.magentosite.cloud
|
11444
11682
|
|
11683
|
+
// Mail.Ru Group : https://hb.cldmail.ru
|
11684
|
+
// Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
|
11685
|
+
hb.cldmail.ru
|
11686
|
+
|
11687
|
+
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
11688
|
+
// Submitted by Zdeněk Šustr <zdenek.sustr@cesnet.cz>
|
11689
|
+
cloud.metacentrum.cz
|
11690
|
+
custom.metacentrum.cz
|
11691
|
+
|
11445
11692
|
// Meteor Development Group : https://www.meteor.com/hosting
|
11446
11693
|
// Submitted by Pierre Carrier <pierre@meteor.com>
|
11447
11694
|
meteorapp.com
|
@@ -11460,6 +11707,17 @@ cloudapp.net
|
|
11460
11707
|
// Submitted by glob <glob@mozilla.com>
|
11461
11708
|
bmoattachments.org
|
11462
11709
|
|
11710
|
+
// MSK-IX : https://www.msk-ix.ru/
|
11711
|
+
// Submitted by Khannanov Roman <r.khannanov@msk-ix.ru>
|
11712
|
+
net.ru
|
11713
|
+
org.ru
|
11714
|
+
pp.ru
|
11715
|
+
|
11716
|
+
// Netlify : https://www.netlify.com
|
11717
|
+
// Submitted by Jessica Parsons <jessica@netlify.com>
|
11718
|
+
bitballoon.com
|
11719
|
+
netlify.com
|
11720
|
+
|
11463
11721
|
// Neustar Inc.
|
11464
11722
|
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
11465
11723
|
4u.com
|
@@ -11565,10 +11823,63 @@ sytes.net
|
|
11565
11823
|
webhop.me
|
11566
11824
|
zapto.org
|
11567
11825
|
|
11826
|
+
// NodeArt : https://nodeart.io
|
11827
|
+
// Submitted by Konstantin Nosov <Nosov@nodeart.io>
|
11828
|
+
stage.nodeart.io
|
11829
|
+
|
11830
|
+
// Nodum B.V. : https://nodum.io/
|
11831
|
+
// Submitted by Wietse Wind <hello+publicsuffixlist@nodum.io>
|
11832
|
+
nodum.co
|
11833
|
+
nodum.io
|
11834
|
+
|
11568
11835
|
// NYC.mn : http://www.information.nyc.mn
|
11569
11836
|
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
11570
11837
|
nyc.mn
|
11571
11838
|
|
11839
|
+
// NymNom : https://nymnom.com/
|
11840
|
+
// Submitted by Dave McCormack <dave.mccormack@nymnom.com>
|
11841
|
+
nom.ae
|
11842
|
+
nom.ai
|
11843
|
+
nom.al
|
11844
|
+
nym.by
|
11845
|
+
nym.bz
|
11846
|
+
nom.cl
|
11847
|
+
nom.gd
|
11848
|
+
nom.gl
|
11849
|
+
nym.gr
|
11850
|
+
nom.gt
|
11851
|
+
nom.hn
|
11852
|
+
nom.im
|
11853
|
+
nym.kz
|
11854
|
+
nym.la
|
11855
|
+
nom.li
|
11856
|
+
nym.li
|
11857
|
+
nym.lt
|
11858
|
+
nym.lu
|
11859
|
+
nym.me
|
11860
|
+
nom.mk
|
11861
|
+
nym.mx
|
11862
|
+
nom.nu
|
11863
|
+
nym.nz
|
11864
|
+
nym.pe
|
11865
|
+
nym.pt
|
11866
|
+
nom.pw
|
11867
|
+
nom.qa
|
11868
|
+
nom.rs
|
11869
|
+
nom.si
|
11870
|
+
nym.sk
|
11871
|
+
nym.su
|
11872
|
+
nym.sx
|
11873
|
+
nym.tw
|
11874
|
+
nom.ug
|
11875
|
+
nom.uy
|
11876
|
+
nom.vc
|
11877
|
+
nom.vg
|
11878
|
+
|
11879
|
+
// Octopodal Solutions, LLC. : https://ulterius.io/
|
11880
|
+
// Submitted by Andrew Sampson <andrew@ulterius.io>
|
11881
|
+
cya.gg
|
11882
|
+
|
11572
11883
|
// One Fold Media : http://www.onefoldmedia.com/
|
11573
11884
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
11574
11885
|
nid.io
|
@@ -11622,6 +11933,11 @@ mypep.link
|
|
11622
11933
|
// Submitted by Frédéric VANNIÈRE <f.vanniere@planet-work.com>
|
11623
11934
|
on-web.fr
|
11624
11935
|
|
11936
|
+
// Platform.sh : https://platform.sh
|
11937
|
+
// Submitted by Nikola Kotur <nikola@platform.sh>
|
11938
|
+
*.platform.sh
|
11939
|
+
*.platformsh.site
|
11940
|
+
|
11625
11941
|
// prgmr.com : https://prgmr.com/
|
11626
11942
|
// Submitted by Sarah Newman <owner@prgmr.com>
|
11627
11943
|
xen.prgmr.com
|
@@ -11648,6 +11964,15 @@ dev-myqnapcloud.com
|
|
11648
11964
|
alpha-myqnapcloud.com
|
11649
11965
|
myqnapcloud.com
|
11650
11966
|
|
11967
|
+
// Quip : https://quip.com
|
11968
|
+
// Submitted by Patrick Linehan <plinehan@quip.com>
|
11969
|
+
*.quipelements.com
|
11970
|
+
|
11971
|
+
// Qutheory LLC : http://qutheory.io
|
11972
|
+
// Submitted by Jonas Schwartz <jonas@qutheory.io>
|
11973
|
+
vapor.cloud
|
11974
|
+
vaporcloud.io
|
11975
|
+
|
11651
11976
|
// Rackmaze LLC : https://www.rackmaze.com
|
11652
11977
|
// Submitted by Kirill Pertsev <kika@rackmaze.com>
|
11653
11978
|
rackmaze.com
|
@@ -11689,6 +12014,10 @@ my-firewall.org
|
|
11689
12014
|
myfirewall.org
|
11690
12015
|
spdns.org
|
11691
12016
|
|
12017
|
+
// SensioLabs, SAS : https://sensiolabs.com/
|
12018
|
+
// Submitted by Fabien Potencier <fabien.potencier@sensiolabs.com>
|
12019
|
+
*.sensiosite.cloud
|
12020
|
+
|
11692
12021
|
// Service Online LLC : http://drs.ua/
|
11693
12022
|
// Submitted by Serhii Bulakh <support@drs.ua>
|
11694
12023
|
biz.ua
|
@@ -11736,6 +12065,14 @@ spacekit.io
|
|
11736
12065
|
// Submitted by Lina He <info@stackspace.io>
|
11737
12066
|
stackspace.space
|
11738
12067
|
|
12068
|
+
// Storj Labs Inc. : https://storj.io/
|
12069
|
+
// Submitted by Philip Hutchins <hostmaster@storj.io>
|
12070
|
+
storj.farm
|
12071
|
+
|
12072
|
+
// Sub 6 Limited: http://www.sub6.com
|
12073
|
+
// Submitted by Dan Miller <dm@sub6.com>
|
12074
|
+
temp-dns.com
|
12075
|
+
|
11739
12076
|
// Synology, Inc. : https://www.synology.com/
|
11740
12077
|
// Submitted by Rony Weng <ronyweng@synology.com>
|
11741
12078
|
diskstation.me
|
@@ -11751,6 +12088,7 @@ familyds.org
|
|
11751
12088
|
i234.me
|
11752
12089
|
myds.me
|
11753
12090
|
synology.me
|
12091
|
+
vpnplus.to
|
11754
12092
|
|
11755
12093
|
// TAIFUN Software AG : http://taifun-software.de
|
11756
12094
|
// Submitted by Bjoern Henke <dev-server@taifun-software.de>
|
@@ -11763,11 +12101,40 @@ gdynia.pl
|
|
11763
12101
|
med.pl
|
11764
12102
|
sopot.pl
|
11765
12103
|
|
12104
|
+
// Thingdust AG : https://thingdust.com/
|
12105
|
+
// Submitted by Adrian Imboden <adi@thingdust.com>
|
12106
|
+
cust.dev.thingdust.io
|
12107
|
+
cust.disrec.thingdust.io
|
12108
|
+
cust.prod.thingdust.io
|
12109
|
+
cust.testing.thingdust.io
|
12110
|
+
|
11766
12111
|
// TownNews.com : http://www.townnews.com
|
11767
12112
|
// Submitted by Dustin Ward <dward@townnews.com>
|
11768
12113
|
bloxcms.com
|
11769
12114
|
townnews-staging.com
|
11770
12115
|
|
12116
|
+
// TrafficPlex GmbH : https://www.trafficplex.de/
|
12117
|
+
// Submitted by Phillipp Röll <phillipp.roell@trafficplex.de>
|
12118
|
+
12hp.at
|
12119
|
+
2ix.at
|
12120
|
+
4lima.at
|
12121
|
+
lima-city.at
|
12122
|
+
12hp.ch
|
12123
|
+
2ix.ch
|
12124
|
+
4lima.ch
|
12125
|
+
lima-city.ch
|
12126
|
+
trafficplex.cloud
|
12127
|
+
de.cool
|
12128
|
+
12hp.de
|
12129
|
+
2ix.de
|
12130
|
+
4lima.de
|
12131
|
+
lima-city.de
|
12132
|
+
1337.pictures
|
12133
|
+
clan.rip
|
12134
|
+
lima-city.rocks
|
12135
|
+
webspace.rocks
|
12136
|
+
lima.zone
|
12137
|
+
|
11771
12138
|
// TransIP : htts://www.transip.nl
|
11772
12139
|
// Submitted by Rory Breuk <rbreuk@transip.nl>
|
11773
12140
|
*.transurl.be
|
@@ -11794,6 +12161,10 @@ syno-ds.de
|
|
11794
12161
|
synology-diskstation.de
|
11795
12162
|
synology-ds.de
|
11796
12163
|
|
12164
|
+
// Uberspace : https://uberspace.de
|
12165
|
+
// Submitted by Moritz Werner <mwerner@jonaspasche.com>
|
12166
|
+
uber.space
|
12167
|
+
|
11797
12168
|
// UDR Limited : http://www.udr.hk.com
|
11798
12169
|
// Submitted by registry <hostmaster@udr.hk.com>
|
11799
12170
|
hk.com
|
@@ -11809,10 +12180,25 @@ lib.de.us
|
|
11809
12180
|
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
11810
12181
|
router.management
|
11811
12182
|
|
12183
|
+
// WeDeploy by Liferay, Inc. : https://www.wedeploy.com
|
12184
|
+
// Submitted by Henrique Vicente <security@wedeploy.com>
|
12185
|
+
wedeploy.io
|
12186
|
+
wedeploy.me
|
12187
|
+
|
12188
|
+
// Western Digital Technologies, Inc : https://www.wdc.com
|
12189
|
+
// Submitted by Jung Jin <jungseok.jin@wdc.com>
|
12190
|
+
remotewd.com
|
12191
|
+
|
11812
12192
|
// Wikimedia Labs : https://wikitech.wikimedia.org
|
11813
12193
|
// Submitted by Yuvi Panda <yuvipanda@wikimedia.org>
|
11814
12194
|
wmflabs.org
|
11815
12195
|
|
12196
|
+
// XS4ALL Internet bv : https://www.xs4all.nl/
|
12197
|
+
// Submitted by Daniel Mostertman <unixbeheer+publicsuffix@xs4all.net>
|
12198
|
+
cistron.nl
|
12199
|
+
demon.nl
|
12200
|
+
xs4all.space
|
12201
|
+
|
11816
12202
|
// Yola : https://www.yola.com/
|
11817
12203
|
// Submitted by Stefano Rivera <stefano@yola.com>
|
11818
12204
|
yolasite.com
|
@@ -11836,10 +12222,4 @@ za.org
|
|
11836
12222
|
// Submitted by Olli Vanhoja <olli@zeit.co>
|
11837
12223
|
now.sh
|
11838
12224
|
|
11839
|
-
// 1GB LLC : https://www.1gb.ua/
|
11840
|
-
// Submitted by 1GB LLC <noc@1gb.com.ua>
|
11841
|
-
cc.ua
|
11842
|
-
inf.ua
|
11843
|
-
ltd.ua
|
11844
|
-
|
11845
12225
|
// ===END PRIVATE DOMAINS===
|