ryo 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +52 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.md +127 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/ryo +8 -0
- data/lib/ryo.rb +27 -0
- data/lib/ryo/aux/tlds.txt +1564 -0
- data/lib/ryo/cli.rb +43 -0
- data/lib/ryo/client.rb +16 -0
- data/lib/ryo/error.rb +3 -0
- data/lib/ryo/plugin.rb +6 -0
- data/lib/ryo/plugin/aux/paths.txt +6040 -0
- data/lib/ryo/plugin/dir.rb +41 -0
- data/lib/ryo/plugin/subdomain.rb +18 -0
- data/lib/ryo/plugin/subdomain/base.rb +39 -0
- data/lib/ryo/plugin/subdomain/dnsdumpster.rb +34 -0
- data/lib/ryo/plugin/subdomain/find_subdomains.rb +24 -0
- data/lib/ryo/plugin/tech.rb +20 -0
- data/lib/ryo/plugin/whois.rb +64 -0
- data/lib/ryo/target.rb +45 -0
- data/lib/ryo/version.rb +5 -0
- data/ryo.gemspec +40 -0
- metadata +240 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4c6e686163512bdc977ead5d3bde88c47c2e47ea9bd02f684ab69f107e893c34
|
4
|
+
data.tar.gz: 409e2e38a7947c735e680063f53e26037e5ca6c858d8e32c57bcd7ad18c87261
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b818d253ad5cdf6e3ba88033b05d2a1965bb4e3bffdc09c54005dba46161c53807a44c195899f032f43f8f5eeb01fac1f1ab3c79f883f5a406e5937c9b1fe5a2
|
7
|
+
data.tar.gz: f5f0fff304908fee9e77d3bd0921dc6247085f7d87cdfe0b727bff436390b5149df6b35de847363bbad68a2b590fbf743dac5a61a28b02ae23e2a4fef4c32d7e
|
data/.gitignore
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
.env
|
15
|
+
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
Gemfile.lock
|
46
|
+
.ruby-version
|
47
|
+
.ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|
51
|
+
|
52
|
+
.rspec_status
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Manabu Niseki
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
# Ryo
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/ninoseki/ryo.svg?branch=master)](https://travis-ci.org/ninoseki/ryo)
|
4
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/7e5f124034cd51768567/maintainability)](https://codeclimate.com/github/ninoseki/ryo/maintainability)
|
5
|
+
[![Coverage Status](https://coveralls.io/repos/github/ninoseki/ryo/badge.svg)](https://coveralls.io/github/ninoseki/ryo)
|
6
|
+
|
7
|
+
Ryo is a yet another website recon tool powered by Ruby.
|
8
|
+
|
9
|
+
*Note*: I'm working on this just because for fun and study purposes.
|
10
|
+
|
11
|
+
## Concept
|
12
|
+
|
13
|
+
- JSON all the way.
|
14
|
+
- No pretty output / report, just a JSON.
|
15
|
+
|
16
|
+
## Features & ToDo list
|
17
|
+
|
18
|
+
- [x] Directory & File brute force
|
19
|
+
- [x] Subdomain discovery
|
20
|
+
- By using [DNSDumpster](https://dnsdumpster.com/) and [FindSubdomains](https://findsubdomains.com/)
|
21
|
+
- [x] Website's technology detection
|
22
|
+
- By using [SimpleWhatWeb](https://github.com/ninoseki/SimpleWhatWeb)
|
23
|
+
- [x] Whois
|
24
|
+
- By using [DomainBigData](https://domainbigdata.com/)
|
25
|
+
- [x] Threading support
|
26
|
+
- [ ] Port scanning
|
27
|
+
|
28
|
+
## Installation
|
29
|
+
|
30
|
+
```sh
|
31
|
+
$ gem install ryo
|
32
|
+
```
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
```sh
|
37
|
+
$ ryo
|
38
|
+
Commands:
|
39
|
+
ryo all URL # Run all discovery plugins against a given URL
|
40
|
+
ryo dir URL # Discover directories and files belong to a given URL
|
41
|
+
ryo help [COMMAND] # Describe available commands or one specific command
|
42
|
+
ryo subdomain URL # Discover subdomains of a given URL
|
43
|
+
ryo tech URL # Discover used technolgies of a given URL
|
44
|
+
ryo whois URL # Discover whois information of a given URL
|
45
|
+
```
|
46
|
+
|
47
|
+
```sh
|
48
|
+
# start Webrick HTTP server
|
49
|
+
# $ ruby -rwebrick -e 'WEBrick::HTTPServer.new(:DocumentRoot => "./", :Port => 8000).start'
|
50
|
+
$ ryo all http://localhost:8000 | jq .
|
51
|
+
{
|
52
|
+
"dir": [
|
53
|
+
"http://localhost:8000/.git/",
|
54
|
+
"http://localhost:8000/.git/branches/",
|
55
|
+
"http://localhost:8000/.git/COMMIT_EDITMSG",
|
56
|
+
"http://localhost:8000/.git/config",
|
57
|
+
"http://localhost:8000/.git/description",
|
58
|
+
"http://localhost:8000/.git/FETCH_HEAD",
|
59
|
+
"http://localhost:8000/.git/HEAD",
|
60
|
+
"http://localhost:8000/.git/hooks/",
|
61
|
+
"http://localhost:8000/.git/index",
|
62
|
+
"http://localhost:8000/.git/info/",
|
63
|
+
"http://localhost:8000/.git/info/exclude",
|
64
|
+
"http://localhost:8000/.git/logs/",
|
65
|
+
"http://localhost:8000/.git/logs/HEAD",
|
66
|
+
"http://localhost:8000/.git/logs/refs/heads/master",
|
67
|
+
"http://localhost:8000/.git/logs/refs/remotes/origin/HEAD",
|
68
|
+
"http://localhost:8000/.git/objects/",
|
69
|
+
"http://localhost:8000/.git/packed-refs",
|
70
|
+
"http://localhost:8000/.git/refs/",
|
71
|
+
"http://localhost:8000/.git/refs/heads/master",
|
72
|
+
"http://localhost:8000/.git/refs/remotes/origin/HEAD",
|
73
|
+
"http://localhost:8000/.gitignore",
|
74
|
+
"http://localhost:8000/.gitignore/",
|
75
|
+
"http://localhost:8000/.travis.yml",
|
76
|
+
"http://localhost:8000/Bin/",
|
77
|
+
"http://localhost:8000/bin/",
|
78
|
+
"http://localhost:8000/Gemfile",
|
79
|
+
"http://localhost:8000/Gemfile.lock",
|
80
|
+
"http://localhost:8000/LICENSE",
|
81
|
+
"http://localhost:8000/Rakefile",
|
82
|
+
"http://localhost:8000/README.md",
|
83
|
+
"http://localhost:8000/readme.md"
|
84
|
+
],
|
85
|
+
"subdomain": [],
|
86
|
+
"tech": {
|
87
|
+
"HTTPServer": [
|
88
|
+
{
|
89
|
+
"name": "server string",
|
90
|
+
"string": "WEBrick/1.4.2 (Ruby/2.5.1/2018-03-29)",
|
91
|
+
"certainty": 100
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"Ruby": [
|
95
|
+
{
|
96
|
+
"regexp": [
|
97
|
+
"Ruby"
|
98
|
+
],
|
99
|
+
"search": "headers[server]",
|
100
|
+
"certainty": 100
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"regexp": [
|
104
|
+
"WEBrick"
|
105
|
+
],
|
106
|
+
"search": "headers[server]",
|
107
|
+
"certainty": 100
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"Title": [
|
111
|
+
{
|
112
|
+
"name": "page title",
|
113
|
+
"string": "Index of /",
|
114
|
+
"certainty": 100
|
115
|
+
}
|
116
|
+
]
|
117
|
+
},
|
118
|
+
"whois": {
|
119
|
+
"globa_stats": {},
|
120
|
+
"registrant": {}
|
121
|
+
}
|
122
|
+
}
|
123
|
+
```
|
124
|
+
|
125
|
+
## License
|
126
|
+
|
127
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "ryo"
|
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(__FILE__)
|
data/bin/setup
ADDED
data/exe/ryo
ADDED
data/lib/ryo.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "uri"
|
4
|
+
require "oga"
|
5
|
+
|
6
|
+
require "ryo/error"
|
7
|
+
|
8
|
+
require "ryo/client"
|
9
|
+
require "ryo/target"
|
10
|
+
require "ryo/plugin"
|
11
|
+
|
12
|
+
require "ryo/cli"
|
13
|
+
|
14
|
+
require "ryo/version"
|
15
|
+
|
16
|
+
module Ryo
|
17
|
+
def self.discover(uri, options)
|
18
|
+
target = Target.new(uri)
|
19
|
+
|
20
|
+
h = {}
|
21
|
+
h[:dir] = Plugin::Dir.discover(target.uri) if options[:dir] || options[:all]
|
22
|
+
h[:subdomain] = Plugin::Subdomain.discover(target.fld) if options[:subdomain] || options[:all]
|
23
|
+
h[:tech] = Plugin::Tech.discover(target.uri) if options[:tech] || options[:all]
|
24
|
+
h[:whois] = Plugin::Whois.discover(target.domain) if options[:whois] || options[:all]
|
25
|
+
h
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,1564 @@
|
|
1
|
+
ac
|
2
|
+
com.ac
|
3
|
+
edu.ac
|
4
|
+
gov.ac
|
5
|
+
net.ac
|
6
|
+
mil.ac
|
7
|
+
org.ac
|
8
|
+
ad
|
9
|
+
nom.ad
|
10
|
+
ae
|
11
|
+
net.ae
|
12
|
+
gov.ae
|
13
|
+
org.ae
|
14
|
+
mil.ae
|
15
|
+
sch.ae
|
16
|
+
ac.ae
|
17
|
+
pro.ae
|
18
|
+
name.ae
|
19
|
+
aero
|
20
|
+
af
|
21
|
+
gov.af
|
22
|
+
edu.af
|
23
|
+
net.af
|
24
|
+
com.af
|
25
|
+
ag
|
26
|
+
com.ag
|
27
|
+
org.ag
|
28
|
+
net.ag
|
29
|
+
co.ag
|
30
|
+
nom.ag
|
31
|
+
ai
|
32
|
+
off.ai
|
33
|
+
com.ai
|
34
|
+
net.ai
|
35
|
+
org.ai
|
36
|
+
al
|
37
|
+
gov.al
|
38
|
+
edu.al
|
39
|
+
org.al
|
40
|
+
com.al
|
41
|
+
net.al
|
42
|
+
uniti.al
|
43
|
+
tirana.al
|
44
|
+
soros.al
|
45
|
+
upt.al
|
46
|
+
inima.al
|
47
|
+
am
|
48
|
+
an
|
49
|
+
com.an
|
50
|
+
net.an
|
51
|
+
org.an
|
52
|
+
edu.an
|
53
|
+
ao
|
54
|
+
co.ao
|
55
|
+
ed.ao
|
56
|
+
gv.ao
|
57
|
+
it.ao
|
58
|
+
og.ao
|
59
|
+
pb.ao
|
60
|
+
aq
|
61
|
+
ar
|
62
|
+
com.ar
|
63
|
+
gov.ar
|
64
|
+
int.ar
|
65
|
+
mil.ar
|
66
|
+
net.ar
|
67
|
+
org.ar
|
68
|
+
arpa
|
69
|
+
e164.arpa
|
70
|
+
in-addr.arpa
|
71
|
+
iris.arpa
|
72
|
+
ip6.arpa
|
73
|
+
uri.arpa
|
74
|
+
urn.arpa
|
75
|
+
as
|
76
|
+
at
|
77
|
+
gv.at
|
78
|
+
ac.at
|
79
|
+
co.at
|
80
|
+
or.at
|
81
|
+
priv.at
|
82
|
+
au
|
83
|
+
asn.au
|
84
|
+
com.au
|
85
|
+
net.au
|
86
|
+
id.au
|
87
|
+
org.au
|
88
|
+
csiro.au
|
89
|
+
oz.au
|
90
|
+
info.au
|
91
|
+
conf.au
|
92
|
+
act.au
|
93
|
+
nsw.au
|
94
|
+
nt.au
|
95
|
+
qld.au
|
96
|
+
sa.au
|
97
|
+
tas.au
|
98
|
+
vic.au
|
99
|
+
wa.auFor
|
100
|
+
gov.au
|
101
|
+
and
|
102
|
+
edu.au:
|
103
|
+
act
|
104
|
+
nsw
|
105
|
+
nt
|
106
|
+
qld
|
107
|
+
sa
|
108
|
+
tas
|
109
|
+
vic
|
110
|
+
wa
|
111
|
+
aw
|
112
|
+
com.aw
|
113
|
+
ax
|
114
|
+
az
|
115
|
+
com.az
|
116
|
+
net.az
|
117
|
+
int.az
|
118
|
+
gov.az
|
119
|
+
biz.az
|
120
|
+
org.az
|
121
|
+
edu.az
|
122
|
+
mil.az
|
123
|
+
pp.az
|
124
|
+
name.az
|
125
|
+
info.az
|
126
|
+
ba
|
127
|
+
bb
|
128
|
+
com.bb
|
129
|
+
edu.bb
|
130
|
+
gov.bb
|
131
|
+
net.bb
|
132
|
+
org.bb
|
133
|
+
bd
|
134
|
+
com.bd
|
135
|
+
edu.bd
|
136
|
+
net.bd
|
137
|
+
gov.bd
|
138
|
+
org.bd
|
139
|
+
mil.bd
|
140
|
+
be
|
141
|
+
ac.be
|
142
|
+
bf
|
143
|
+
gov.bf
|
144
|
+
bg
|
145
|
+
bh
|
146
|
+
bi
|
147
|
+
biz
|
148
|
+
bj
|
149
|
+
bm
|
150
|
+
possibly
|
151
|
+
com.bm
|
152
|
+
edu.bm
|
153
|
+
org.bm
|
154
|
+
gov.bm
|
155
|
+
net.bm
|
156
|
+
bn
|
157
|
+
com.bn
|
158
|
+
edu.bn
|
159
|
+
org.bn
|
160
|
+
net.bn
|
161
|
+
bo
|
162
|
+
com.bo
|
163
|
+
org.bo
|
164
|
+
net.bo
|
165
|
+
gov.bo
|
166
|
+
gob.bo
|
167
|
+
edu.bo
|
168
|
+
tv.bo
|
169
|
+
mil.bo
|
170
|
+
int.bo
|
171
|
+
br
|
172
|
+
agr.br
|
173
|
+
am.br
|
174
|
+
art.br
|
175
|
+
edu.br
|
176
|
+
com.br
|
177
|
+
coop.br
|
178
|
+
esp.br
|
179
|
+
far.br
|
180
|
+
fm.br
|
181
|
+
g12.br
|
182
|
+
gov.br
|
183
|
+
imb.br
|
184
|
+
ind.br
|
185
|
+
inf.br
|
186
|
+
mil.br
|
187
|
+
net.br
|
188
|
+
org.br
|
189
|
+
psi.br
|
190
|
+
rec.br
|
191
|
+
srv.br
|
192
|
+
tmp.br
|
193
|
+
tur.br
|
194
|
+
tv.br
|
195
|
+
etc.br
|
196
|
+
adm.br
|
197
|
+
adv.br
|
198
|
+
arq.br
|
199
|
+
ato.br
|
200
|
+
bio.br
|
201
|
+
bmd.br
|
202
|
+
cim.br
|
203
|
+
cng.br
|
204
|
+
cnt.br
|
205
|
+
ecn.br
|
206
|
+
eng.br
|
207
|
+
eti.br
|
208
|
+
fnd.br
|
209
|
+
fot.br
|
210
|
+
fst.br
|
211
|
+
ggf.br
|
212
|
+
jor.br
|
213
|
+
lel.br
|
214
|
+
mat.br
|
215
|
+
med.br
|
216
|
+
mus.br
|
217
|
+
not.br
|
218
|
+
ntr.br
|
219
|
+
odo.br
|
220
|
+
ppg.br
|
221
|
+
pro.br
|
222
|
+
psc.br
|
223
|
+
qsl.br
|
224
|
+
slg.br
|
225
|
+
trd.br
|
226
|
+
vet.br
|
227
|
+
zlg.br
|
228
|
+
dpn.br
|
229
|
+
nom.br
|
230
|
+
bs
|
231
|
+
com.bs
|
232
|
+
net.bs
|
233
|
+
org.bs
|
234
|
+
bt
|
235
|
+
com.bt
|
236
|
+
edu.bt
|
237
|
+
gov.bt
|
238
|
+
net.bt
|
239
|
+
org.bt
|
240
|
+
bv
|
241
|
+
bw
|
242
|
+
co.bw
|
243
|
+
org.bw
|
244
|
+
by
|
245
|
+
gov.by
|
246
|
+
mil.by
|
247
|
+
bz
|
248
|
+
ca
|
249
|
+
ab.ca
|
250
|
+
bc.ca
|
251
|
+
mb.ca
|
252
|
+
nb.ca
|
253
|
+
nf.ca
|
254
|
+
nl.ca
|
255
|
+
ns.ca
|
256
|
+
nt.ca
|
257
|
+
nu.ca
|
258
|
+
on.ca
|
259
|
+
pe.ca
|
260
|
+
qc.ca
|
261
|
+
sk.ca
|
262
|
+
yk.ca
|
263
|
+
cat
|
264
|
+
cc
|
265
|
+
co.cc
|
266
|
+
cd
|
267
|
+
com.cd
|
268
|
+
net.cd
|
269
|
+
org.cd
|
270
|
+
cf
|
271
|
+
cg
|
272
|
+
ch
|
273
|
+
com.ch
|
274
|
+
net.ch
|
275
|
+
org.ch
|
276
|
+
gov.ch
|
277
|
+
ci
|
278
|
+
ck
|
279
|
+
co.ck
|
280
|
+
cl
|
281
|
+
cm
|
282
|
+
cn
|
283
|
+
ac.cn
|
284
|
+
com.cn
|
285
|
+
edu.cn
|
286
|
+
gov.cn
|
287
|
+
net.cn
|
288
|
+
org.cn
|
289
|
+
ah.cn
|
290
|
+
bj.cn
|
291
|
+
cq.cn
|
292
|
+
fj.cn
|
293
|
+
gd.cn
|
294
|
+
gs.cn
|
295
|
+
gz.cn
|
296
|
+
gx.cn
|
297
|
+
ha.cn
|
298
|
+
hb.cn
|
299
|
+
he.cn
|
300
|
+
hi.cn
|
301
|
+
hl.cn
|
302
|
+
hn.cn
|
303
|
+
jl.cn
|
304
|
+
js.cn
|
305
|
+
jx.cn
|
306
|
+
ln.cn
|
307
|
+
nm.cn
|
308
|
+
nx.cn
|
309
|
+
qh.cn
|
310
|
+
sc.cn
|
311
|
+
sd.cn
|
312
|
+
sh.cn
|
313
|
+
sn.cn
|
314
|
+
sx.cn
|
315
|
+
tj.cn
|
316
|
+
xj.cn
|
317
|
+
xz.cn
|
318
|
+
yn.cn
|
319
|
+
zj.cn
|
320
|
+
co
|
321
|
+
com.co
|
322
|
+
edu.co
|
323
|
+
org.co
|
324
|
+
gov.co
|
325
|
+
mil.co
|
326
|
+
net.co
|
327
|
+
nom.co
|
328
|
+
com
|
329
|
+
us.com
|
330
|
+
coop
|
331
|
+
cr
|
332
|
+
ac.cr
|
333
|
+
co.cr
|
334
|
+
ed.cr
|
335
|
+
fi.cr
|
336
|
+
go.cr
|
337
|
+
or.cr
|
338
|
+
sa.cr
|
339
|
+
cu
|
340
|
+
com.cu
|
341
|
+
edu.cu
|
342
|
+
org.cu
|
343
|
+
net.cu
|
344
|
+
gov.cu
|
345
|
+
inf.cu
|
346
|
+
cv
|
347
|
+
cx
|
348
|
+
gov.cx
|
349
|
+
cy
|
350
|
+
com.cy
|
351
|
+
biz.cy
|
352
|
+
info.cy
|
353
|
+
ltd.cy
|
354
|
+
pro.cy
|
355
|
+
net.cy
|
356
|
+
org.cy
|
357
|
+
name.cy
|
358
|
+
tm.cy
|
359
|
+
ac.cy
|
360
|
+
ekloges.cy
|
361
|
+
press.cy
|
362
|
+
parliament.cy
|
363
|
+
cz
|
364
|
+
de
|
365
|
+
dj
|
366
|
+
dk
|
367
|
+
dm
|
368
|
+
com.dm
|
369
|
+
net.dm
|
370
|
+
org.dm
|
371
|
+
edu.dm
|
372
|
+
gov.dm
|
373
|
+
do
|
374
|
+
edu.do
|
375
|
+
gov.do
|
376
|
+
gob.do
|
377
|
+
com.do
|
378
|
+
org.do
|
379
|
+
sld.do
|
380
|
+
web.do
|
381
|
+
net.do
|
382
|
+
mil.do
|
383
|
+
art.do
|
384
|
+
dz
|
385
|
+
com.dz
|
386
|
+
org.dz
|
387
|
+
net.dz
|
388
|
+
gov.dz
|
389
|
+
edu.dz
|
390
|
+
asso.dz
|
391
|
+
pol.dz
|
392
|
+
art.dz
|
393
|
+
ec
|
394
|
+
com.ec
|
395
|
+
info.ec
|
396
|
+
net.ec
|
397
|
+
fin.ec
|
398
|
+
med.ec
|
399
|
+
pro.ec
|
400
|
+
org.ec
|
401
|
+
edu.ec
|
402
|
+
gov.ec
|
403
|
+
mil.ec
|
404
|
+
edu
|
405
|
+
ee
|
406
|
+
com.ee
|
407
|
+
org.ee
|
408
|
+
fie.ee
|
409
|
+
pri.ee
|
410
|
+
eg
|
411
|
+
eun.eg
|
412
|
+
edu.eg
|
413
|
+
sci.eg
|
414
|
+
gov.eg
|
415
|
+
com.eg
|
416
|
+
org.eg
|
417
|
+
net.eg
|
418
|
+
mil.eg
|
419
|
+
er
|
420
|
+
es
|
421
|
+
com.es
|
422
|
+
nom.es
|
423
|
+
org.es
|
424
|
+
gob.es
|
425
|
+
edu.es
|
426
|
+
et
|
427
|
+
com.et
|
428
|
+
gov.et
|
429
|
+
org.et
|
430
|
+
edu.et
|
431
|
+
net.et
|
432
|
+
biz.et
|
433
|
+
name.et
|
434
|
+
info.et
|
435
|
+
eu
|
436
|
+
fi
|
437
|
+
aland.fi
|
438
|
+
fj
|
439
|
+
biz.fj
|
440
|
+
com.fj
|
441
|
+
info.fj
|
442
|
+
name.fj
|
443
|
+
net.fj
|
444
|
+
org.fj
|
445
|
+
pro.fj
|
446
|
+
ac.fj
|
447
|
+
gov.fj
|
448
|
+
mil.fj
|
449
|
+
school.fj
|
450
|
+
fk
|
451
|
+
co.fk
|
452
|
+
org.fk
|
453
|
+
gov.fk
|
454
|
+
ac.fk
|
455
|
+
nom.fk
|
456
|
+
net.fk
|
457
|
+
fm
|
458
|
+
fo
|
459
|
+
fr
|
460
|
+
tm.fr
|
461
|
+
asso.fr
|
462
|
+
nom.fr
|
463
|
+
prd.fr
|
464
|
+
presse.fr
|
465
|
+
com.fr
|
466
|
+
gouv.fr
|
467
|
+
ga
|
468
|
+
gb
|
469
|
+
gd
|
470
|
+
ge
|
471
|
+
com.ge
|
472
|
+
edu.ge
|
473
|
+
gov.ge
|
474
|
+
org.ge
|
475
|
+
mil.ge
|
476
|
+
net.ge
|
477
|
+
pvt.ge
|
478
|
+
gf
|
479
|
+
gg
|
480
|
+
co.gg
|
481
|
+
net.gg
|
482
|
+
org.gg
|
483
|
+
gh
|
484
|
+
com.gh
|
485
|
+
edu.gh
|
486
|
+
gov.gh
|
487
|
+
org.gh
|
488
|
+
mil.gh
|
489
|
+
gi
|
490
|
+
com.gi
|
491
|
+
ltd.gi
|
492
|
+
gov.gi
|
493
|
+
mod.gi
|
494
|
+
edu.gi
|
495
|
+
org.gi
|
496
|
+
gl
|
497
|
+
gm
|
498
|
+
gn
|
499
|
+
com.gn
|
500
|
+
ac.gn
|
501
|
+
gov.gn
|
502
|
+
org.gn
|
503
|
+
net.gn
|
504
|
+
gov
|
505
|
+
gp
|
506
|
+
com.gp,
|
507
|
+
net.gp,
|
508
|
+
edu.gp,
|
509
|
+
asso.gp,
|
510
|
+
or
|
511
|
+
org.gp
|
512
|
+
gq
|
513
|
+
gr
|
514
|
+
com.gr
|
515
|
+
edu.gr
|
516
|
+
net.gr
|
517
|
+
org.gr
|
518
|
+
gov.gr
|
519
|
+
gs
|
520
|
+
gt
|
521
|
+
gu
|
522
|
+
gw
|
523
|
+
gy
|
524
|
+
hk
|
525
|
+
com.hk
|
526
|
+
edu.hk
|
527
|
+
gov.hk
|
528
|
+
idv.hk
|
529
|
+
net.hk
|
530
|
+
org.hk
|
531
|
+
hm
|
532
|
+
hn
|
533
|
+
com.hn
|
534
|
+
edu.hn
|
535
|
+
org.hn
|
536
|
+
net.hn
|
537
|
+
mil.hn
|
538
|
+
gob.hn
|
539
|
+
hr
|
540
|
+
iz.hr
|
541
|
+
from.hr
|
542
|
+
name.hr
|
543
|
+
com.hr
|
544
|
+
ht
|
545
|
+
com.ht
|
546
|
+
net.ht
|
547
|
+
firm.ht
|
548
|
+
shop.ht
|
549
|
+
info.ht
|
550
|
+
pro.ht
|
551
|
+
adult.ht
|
552
|
+
org.ht
|
553
|
+
art.ht
|
554
|
+
pol.ht
|
555
|
+
rel.ht
|
556
|
+
asso.ht
|
557
|
+
perso.ht
|
558
|
+
coop.ht
|
559
|
+
med.ht
|
560
|
+
edu.ht
|
561
|
+
gouv.ht
|
562
|
+
hu
|
563
|
+
co.hu
|
564
|
+
info.hu
|
565
|
+
org.hu
|
566
|
+
priv.hu
|
567
|
+
sport.hu
|
568
|
+
tm.hu
|
569
|
+
2000.hu
|
570
|
+
agrar.hu
|
571
|
+
bolt.hu
|
572
|
+
casino.hu
|
573
|
+
city.hu
|
574
|
+
erotica.hu
|
575
|
+
erotika.hu
|
576
|
+
film.hu
|
577
|
+
forum.hu
|
578
|
+
games.hu
|
579
|
+
hotel.hu
|
580
|
+
ingatlan.hu
|
581
|
+
jogasz.hu
|
582
|
+
konyvelo.hu
|
583
|
+
lakas.hu
|
584
|
+
media.hu
|
585
|
+
news.hu
|
586
|
+
reklam.hu
|
587
|
+
sex.hu
|
588
|
+
shop.hu
|
589
|
+
suli.hu
|
590
|
+
szex.hu
|
591
|
+
tozsde.hu
|
592
|
+
utazas.hu
|
593
|
+
video.hu
|
594
|
+
id
|
595
|
+
ac.id
|
596
|
+
co.id
|
597
|
+
or.id
|
598
|
+
go.id
|
599
|
+
ie
|
600
|
+
gov.ie
|
601
|
+
il
|
602
|
+
ac.il
|
603
|
+
co.il
|
604
|
+
org.il
|
605
|
+
net.il
|
606
|
+
k12.il
|
607
|
+
gov.il
|
608
|
+
muni.il
|
609
|
+
idf.il
|
610
|
+
im
|
611
|
+
co.im
|
612
|
+
ltd.co.im
|
613
|
+
plc.co.im
|
614
|
+
net.im
|
615
|
+
gov.im
|
616
|
+
org.im
|
617
|
+
nic.im
|
618
|
+
ac.im
|
619
|
+
in
|
620
|
+
co.in
|
621
|
+
firm.in
|
622
|
+
net.in
|
623
|
+
org.in
|
624
|
+
gen.in
|
625
|
+
ind.in
|
626
|
+
nic.in
|
627
|
+
ac.in
|
628
|
+
edu.in
|
629
|
+
res.in
|
630
|
+
gov.in
|
631
|
+
mil.in
|
632
|
+
info
|
633
|
+
int
|
634
|
+
io
|
635
|
+
iq
|
636
|
+
ir
|
637
|
+
ac.ir
|
638
|
+
co.ir
|
639
|
+
gov.ir
|
640
|
+
net.ir
|
641
|
+
org.ir
|
642
|
+
sch.ir
|
643
|
+
is
|
644
|
+
it
|
645
|
+
gov.it
|
646
|
+
..
|
647
|
+
je
|
648
|
+
co.je
|
649
|
+
net.je
|
650
|
+
org.je
|
651
|
+
jm
|
652
|
+
edu.jm
|
653
|
+
gov.jm
|
654
|
+
com.jm
|
655
|
+
net.jm
|
656
|
+
org.jm
|
657
|
+
jo
|
658
|
+
com.jo
|
659
|
+
org.jo
|
660
|
+
net.jo
|
661
|
+
edu.jo
|
662
|
+
gov.jo
|
663
|
+
mil.jo
|
664
|
+
jobs
|
665
|
+
jp
|
666
|
+
ac.jp
|
667
|
+
ad.jp
|
668
|
+
co.jp
|
669
|
+
ed.jp
|
670
|
+
go.jp
|
671
|
+
gr.jp
|
672
|
+
lg.jp
|
673
|
+
ne.jp
|
674
|
+
or.jpGeo-names:
|
675
|
+
hokkaido.jp
|
676
|
+
aomori.jp
|
677
|
+
iwate.jp
|
678
|
+
miyagi.jp
|
679
|
+
akita.jp
|
680
|
+
yamagata.jp
|
681
|
+
fukushima.jp
|
682
|
+
ibaraki.jp
|
683
|
+
tochigi.jp
|
684
|
+
gunma.jp
|
685
|
+
saitama.jp
|
686
|
+
chiba.jp
|
687
|
+
tokyo.jp
|
688
|
+
kanagawa.jp
|
689
|
+
niigata.jp
|
690
|
+
toyama.jp
|
691
|
+
ishikawa.jp
|
692
|
+
fukui.jp
|
693
|
+
yamanashi.jp
|
694
|
+
nagano.jp
|
695
|
+
gifu.jp
|
696
|
+
shizuoka.jp
|
697
|
+
aichi.jp
|
698
|
+
mie.jp
|
699
|
+
shiga.jp
|
700
|
+
kyoto.jp
|
701
|
+
osaka.jp
|
702
|
+
hyogo.jp
|
703
|
+
nara.jp
|
704
|
+
wakayama.jp
|
705
|
+
tottori.jp
|
706
|
+
shimane.jp
|
707
|
+
okayama.jp
|
708
|
+
hiroshima.jp
|
709
|
+
yamaguchi.jp
|
710
|
+
tokushima.jp
|
711
|
+
kagawa.jp
|
712
|
+
ehime.jp
|
713
|
+
kochi.jp
|
714
|
+
fukuoka.jp
|
715
|
+
saga.jp
|
716
|
+
nagasaki.jp
|
717
|
+
kumamoto.jp
|
718
|
+
oita.jp
|
719
|
+
miyazaki.jp
|
720
|
+
kagoshima.jp
|
721
|
+
okinawa.jp
|
722
|
+
sapporo.jp
|
723
|
+
sendai.jp
|
724
|
+
yokohama.jp
|
725
|
+
kawasaki.jp
|
726
|
+
nagoya.jp
|
727
|
+
kobe.jp
|
728
|
+
kitakyushu.jp
|
729
|
+
ke
|
730
|
+
kg
|
731
|
+
kh
|
732
|
+
per.kh
|
733
|
+
com.kh
|
734
|
+
edu.kh
|
735
|
+
gov.kh
|
736
|
+
mil.kh
|
737
|
+
net.kh
|
738
|
+
org.kh
|
739
|
+
ki
|
740
|
+
km
|
741
|
+
kn
|
742
|
+
kr
|
743
|
+
co.kr
|
744
|
+
or.kr
|
745
|
+
kw
|
746
|
+
com.kw
|
747
|
+
edu.kw
|
748
|
+
gov.kw
|
749
|
+
net.kw
|
750
|
+
org.kw
|
751
|
+
mil.kw
|
752
|
+
ky
|
753
|
+
edu.ky
|
754
|
+
gov.ky
|
755
|
+
com.ky
|
756
|
+
org.ky
|
757
|
+
net.ky
|
758
|
+
kz
|
759
|
+
org.kz
|
760
|
+
edu.kz
|
761
|
+
net.kz
|
762
|
+
gov.kz
|
763
|
+
mil.kz
|
764
|
+
com.kz
|
765
|
+
la
|
766
|
+
lb
|
767
|
+
net.lb
|
768
|
+
org.lb
|
769
|
+
gov.lb
|
770
|
+
edu.lb
|
771
|
+
com.lb
|
772
|
+
lc
|
773
|
+
com.lc
|
774
|
+
org.lc
|
775
|
+
edu.lc
|
776
|
+
gov.lc
|
777
|
+
li
|
778
|
+
com.li
|
779
|
+
net.li
|
780
|
+
org.li
|
781
|
+
gov.li
|
782
|
+
lk
|
783
|
+
gov.lk
|
784
|
+
sch.lk
|
785
|
+
net.lk
|
786
|
+
int.lk
|
787
|
+
com.lk
|
788
|
+
org.lk
|
789
|
+
edu.lk
|
790
|
+
ngo.lk
|
791
|
+
soc.lk
|
792
|
+
web.lk
|
793
|
+
ltd.lk
|
794
|
+
assn.lk
|
795
|
+
grp.lk
|
796
|
+
hotel.lk
|
797
|
+
lr
|
798
|
+
com.lr
|
799
|
+
edu.lr
|
800
|
+
gov.lr
|
801
|
+
org.lr
|
802
|
+
net.lr
|
803
|
+
ls
|
804
|
+
org.ls
|
805
|
+
co.ls
|
806
|
+
lt
|
807
|
+
gov.lt
|
808
|
+
mil.lt
|
809
|
+
lu
|
810
|
+
gov.lu
|
811
|
+
mil.lu
|
812
|
+
org.lu
|
813
|
+
net.lu
|
814
|
+
lv
|
815
|
+
com.lv
|
816
|
+
edu.lv
|
817
|
+
gov.lv
|
818
|
+
org.lv
|
819
|
+
mil.lv
|
820
|
+
id.lv
|
821
|
+
net.lv
|
822
|
+
asn.lv
|
823
|
+
conf.lv
|
824
|
+
ly
|
825
|
+
com.ly
|
826
|
+
net.ly
|
827
|
+
gov.ly
|
828
|
+
plc.ly
|
829
|
+
edu.ly
|
830
|
+
sch.ly
|
831
|
+
med.ly
|
832
|
+
org.ly
|
833
|
+
id.ly
|
834
|
+
ma
|
835
|
+
co.ma
|
836
|
+
net.ma
|
837
|
+
gov.ma
|
838
|
+
org.ma
|
839
|
+
mc
|
840
|
+
tm.mc
|
841
|
+
asso.mc
|
842
|
+
md
|
843
|
+
mg
|
844
|
+
org.mg
|
845
|
+
nom.mg
|
846
|
+
gov.mg
|
847
|
+
prd.mg
|
848
|
+
tm.mg
|
849
|
+
com.mg
|
850
|
+
edu.mg
|
851
|
+
mil.mg
|
852
|
+
mh
|
853
|
+
mil
|
854
|
+
army.mil
|
855
|
+
navy.mil
|
856
|
+
mk
|
857
|
+
com.mk
|
858
|
+
org.mk
|
859
|
+
ml
|
860
|
+
mm
|
861
|
+
mn
|
862
|
+
mo
|
863
|
+
com.mo
|
864
|
+
net.mo
|
865
|
+
org.mo
|
866
|
+
edu.mo
|
867
|
+
gov.mo
|
868
|
+
mobi
|
869
|
+
weather.mobi
|
870
|
+
music.mobi
|
871
|
+
mp
|
872
|
+
mq
|
873
|
+
mr
|
874
|
+
ms
|
875
|
+
mt
|
876
|
+
org.mt
|
877
|
+
com.mt
|
878
|
+
gov.mt
|
879
|
+
edu.mt
|
880
|
+
net.mt
|
881
|
+
mu
|
882
|
+
com.mu
|
883
|
+
co.mu
|
884
|
+
museum
|
885
|
+
mv
|
886
|
+
aero.mv
|
887
|
+
biz.mv
|
888
|
+
com.mv
|
889
|
+
coop.mv
|
890
|
+
edu.mv
|
891
|
+
gov.mv
|
892
|
+
info.mv
|
893
|
+
int.mv
|
894
|
+
mil.mv
|
895
|
+
museum.mv
|
896
|
+
name.mv
|
897
|
+
net.mv
|
898
|
+
org.mv
|
899
|
+
pro.mv
|
900
|
+
mw
|
901
|
+
ac.mw
|
902
|
+
co.mw
|
903
|
+
com.mw
|
904
|
+
coop.mw
|
905
|
+
edu.mw
|
906
|
+
gov.mw
|
907
|
+
int.mw
|
908
|
+
museum.mw
|
909
|
+
net.mw
|
910
|
+
org.mw
|
911
|
+
mx
|
912
|
+
com.mx
|
913
|
+
net.mx
|
914
|
+
org.mx
|
915
|
+
edu.mx
|
916
|
+
gob.mx
|
917
|
+
my
|
918
|
+
com.my
|
919
|
+
net.my
|
920
|
+
org.my
|
921
|
+
gov.my
|
922
|
+
edu.my
|
923
|
+
mil.my
|
924
|
+
name.my
|
925
|
+
mz
|
926
|
+
na
|
927
|
+
name
|
928
|
+
nc
|
929
|
+
ne
|
930
|
+
net
|
931
|
+
nf
|
932
|
+
ng
|
933
|
+
edu.ng
|
934
|
+
com.ng
|
935
|
+
gov.ng
|
936
|
+
org.ng
|
937
|
+
net.ng
|
938
|
+
ni
|
939
|
+
gob.ni
|
940
|
+
com.ni
|
941
|
+
edu.ni
|
942
|
+
org.ni
|
943
|
+
nom.ni
|
944
|
+
net.ni
|
945
|
+
nl
|
946
|
+
000.nl/.999.nl
|
947
|
+
no
|
948
|
+
mil.no
|
949
|
+
stat.no
|
950
|
+
kommune.no
|
951
|
+
herad.no
|
952
|
+
priv.no
|
953
|
+
vgs.no
|
954
|
+
fhs.no
|
955
|
+
museum.no
|
956
|
+
fylkesbibl.no
|
957
|
+
folkebibl.no
|
958
|
+
idrett.no
|
959
|
+
[geo].no
|
960
|
+
gs.[county].no
|
961
|
+
np
|
962
|
+
com.np
|
963
|
+
org.np
|
964
|
+
edu.np
|
965
|
+
net.np
|
966
|
+
gov.np
|
967
|
+
mil.np
|
968
|
+
nr
|
969
|
+
gov.nr
|
970
|
+
edu.nr
|
971
|
+
biz.nr
|
972
|
+
info.nr
|
973
|
+
org.nr
|
974
|
+
com.nr
|
975
|
+
net.nr
|
976
|
+
nu
|
977
|
+
nz
|
978
|
+
ac.nz
|
979
|
+
co.nz
|
980
|
+
cri.nz
|
981
|
+
gen.nz
|
982
|
+
geek.nz
|
983
|
+
govt.nz
|
984
|
+
iwi.nz
|
985
|
+
maori.nz
|
986
|
+
mil.nz
|
987
|
+
net.nz
|
988
|
+
org.nz
|
989
|
+
school.nz
|
990
|
+
om
|
991
|
+
com.om
|
992
|
+
co.om
|
993
|
+
edu.om
|
994
|
+
ac.com
|
995
|
+
sch.om
|
996
|
+
gov.om
|
997
|
+
net.om
|
998
|
+
org.om
|
999
|
+
mil.om
|
1000
|
+
museum.om
|
1001
|
+
biz.om
|
1002
|
+
pro.om
|
1003
|
+
med.om
|
1004
|
+
org
|
1005
|
+
pa
|
1006
|
+
com.pa
|
1007
|
+
ac.pa
|
1008
|
+
sld.pa
|
1009
|
+
gob.pa
|
1010
|
+
edu.pa
|
1011
|
+
org.pa
|
1012
|
+
net.pa
|
1013
|
+
abo.pa
|
1014
|
+
ing.pa
|
1015
|
+
med.pa
|
1016
|
+
nom.pa
|
1017
|
+
pe
|
1018
|
+
com.pe
|
1019
|
+
org.pe
|
1020
|
+
net.pe
|
1021
|
+
edu.pe
|
1022
|
+
mil.pe
|
1023
|
+
gob.pe
|
1024
|
+
nom.pe
|
1025
|
+
pf
|
1026
|
+
com.pf
|
1027
|
+
org.pf
|
1028
|
+
edu.pf
|
1029
|
+
pg
|
1030
|
+
com.pg
|
1031
|
+
net.pg
|
1032
|
+
ph
|
1033
|
+
com.ph
|
1034
|
+
gov.ph
|
1035
|
+
pk
|
1036
|
+
com.pk
|
1037
|
+
net.pk
|
1038
|
+
edu.pk
|
1039
|
+
org.pk
|
1040
|
+
fam.pk
|
1041
|
+
biz.pk
|
1042
|
+
web.pk
|
1043
|
+
gov.pk
|
1044
|
+
gob.pk
|
1045
|
+
gok.pk
|
1046
|
+
gon.pk
|
1047
|
+
gop.pk
|
1048
|
+
gos.pk
|
1049
|
+
pl
|
1050
|
+
com.pl
|
1051
|
+
biz.pl
|
1052
|
+
net.pl
|
1053
|
+
art.pl
|
1054
|
+
edu.pl
|
1055
|
+
org.pl
|
1056
|
+
ngo.pl
|
1057
|
+
gov.pl
|
1058
|
+
info.pl
|
1059
|
+
mil.pl
|
1060
|
+
Geographic:
|
1061
|
+
waw.pl
|
1062
|
+
warszawa.pl
|
1063
|
+
wroc.pl
|
1064
|
+
wroclaw.pl
|
1065
|
+
krakow.pl
|
1066
|
+
poznan.pl
|
1067
|
+
lodz.pl
|
1068
|
+
gda.pl
|
1069
|
+
gdansk.pl
|
1070
|
+
slupsk.pl
|
1071
|
+
szczecin.pl
|
1072
|
+
lublin.pl
|
1073
|
+
bialystok.pl
|
1074
|
+
olsztyn.pl.torun.pl
|
1075
|
+
more...
|
1076
|
+
pm
|
1077
|
+
pn
|
1078
|
+
pr
|
1079
|
+
biz.pr
|
1080
|
+
com.pr
|
1081
|
+
edu.pr
|
1082
|
+
gov.pr
|
1083
|
+
info.pr
|
1084
|
+
isla.pr
|
1085
|
+
name.pr
|
1086
|
+
net.pr
|
1087
|
+
org.pr
|
1088
|
+
pro.pr
|
1089
|
+
pro
|
1090
|
+
law.pro
|
1091
|
+
med.pro
|
1092
|
+
cpa.pro
|
1093
|
+
ps
|
1094
|
+
edu.ps
|
1095
|
+
gov.ps
|
1096
|
+
sec.ps
|
1097
|
+
plo.ps
|
1098
|
+
com.ps
|
1099
|
+
org.ps
|
1100
|
+
net.ps
|
1101
|
+
pt
|
1102
|
+
com.pt
|
1103
|
+
edu.pt
|
1104
|
+
gov.pt
|
1105
|
+
int.pt
|
1106
|
+
net.pt
|
1107
|
+
nome.pt
|
1108
|
+
org.pt
|
1109
|
+
publ.pt
|
1110
|
+
pw
|
1111
|
+
py
|
1112
|
+
net.py
|
1113
|
+
org.py
|
1114
|
+
gov.py
|
1115
|
+
edu.py
|
1116
|
+
com.py
|
1117
|
+
qa
|
1118
|
+
re
|
1119
|
+
ro
|
1120
|
+
com.ro
|
1121
|
+
org.ro
|
1122
|
+
tm.ro
|
1123
|
+
nt.ro
|
1124
|
+
nom.ro
|
1125
|
+
info.ro
|
1126
|
+
rec.ro
|
1127
|
+
arts.ro
|
1128
|
+
firm.ro
|
1129
|
+
store.ro
|
1130
|
+
www.ro
|
1131
|
+
ru
|
1132
|
+
com.ru
|
1133
|
+
net.ru
|
1134
|
+
org.ru
|
1135
|
+
pp.ru
|
1136
|
+
msk.ru
|
1137
|
+
int.ru
|
1138
|
+
ac.ru
|
1139
|
+
rw
|
1140
|
+
gov.rw
|
1141
|
+
net.rw
|
1142
|
+
edu.rw
|
1143
|
+
ac.rw
|
1144
|
+
com.rw
|
1145
|
+
co.rw
|
1146
|
+
int.rw
|
1147
|
+
mil.rw
|
1148
|
+
gouv.rw
|
1149
|
+
com.sa
|
1150
|
+
edu.sa
|
1151
|
+
sch.sa
|
1152
|
+
med.sa
|
1153
|
+
gov.sa
|
1154
|
+
net.sa
|
1155
|
+
org.sa
|
1156
|
+
pub.sa
|
1157
|
+
sb
|
1158
|
+
com.sb
|
1159
|
+
gov.sb
|
1160
|
+
net.sb
|
1161
|
+
edu.sb
|
1162
|
+
sc
|
1163
|
+
com.sc
|
1164
|
+
gov.sc
|
1165
|
+
net.sc
|
1166
|
+
org.sc
|
1167
|
+
edu.sc
|
1168
|
+
sd
|
1169
|
+
com.sd
|
1170
|
+
net.sd
|
1171
|
+
org.sd
|
1172
|
+
edu.sd
|
1173
|
+
med.sd
|
1174
|
+
tv.sd
|
1175
|
+
gov.sd
|
1176
|
+
info.sd
|
1177
|
+
se
|
1178
|
+
org.se
|
1179
|
+
pp.se
|
1180
|
+
tm.se
|
1181
|
+
brand.se
|
1182
|
+
parti.se
|
1183
|
+
press.se
|
1184
|
+
komforb.se
|
1185
|
+
kommunalforbund.se
|
1186
|
+
komvux.se
|
1187
|
+
lanarb.se
|
1188
|
+
lanbib.se
|
1189
|
+
naturbruksgymn.se
|
1190
|
+
sshn.se
|
1191
|
+
fhv.se
|
1192
|
+
fhsk.se
|
1193
|
+
fh.se
|
1194
|
+
mil.seGeographical:
|
1195
|
+
ab.se
|
1196
|
+
c.se
|
1197
|
+
d.se
|
1198
|
+
e.se
|
1199
|
+
f.se
|
1200
|
+
g.se
|
1201
|
+
h.se
|
1202
|
+
i.se
|
1203
|
+
k.se
|
1204
|
+
m.se
|
1205
|
+
n.se
|
1206
|
+
o.se
|
1207
|
+
s.se
|
1208
|
+
t.se
|
1209
|
+
u.se
|
1210
|
+
w.se
|
1211
|
+
x.se
|
1212
|
+
y.se
|
1213
|
+
z.se
|
1214
|
+
ac.se
|
1215
|
+
bd.se
|
1216
|
+
sg
|
1217
|
+
com.sg
|
1218
|
+
net.sg
|
1219
|
+
org.sg
|
1220
|
+
gov.sg
|
1221
|
+
edu.sg
|
1222
|
+
per.sg
|
1223
|
+
idn.sg
|
1224
|
+
sh
|
1225
|
+
si
|
1226
|
+
sj
|
1227
|
+
sk
|
1228
|
+
sl
|
1229
|
+
sm
|
1230
|
+
sn
|
1231
|
+
so
|
1232
|
+
sr
|
1233
|
+
st
|
1234
|
+
su
|
1235
|
+
sv
|
1236
|
+
edu.sv
|
1237
|
+
com.sv
|
1238
|
+
gob.sv
|
1239
|
+
org.sv
|
1240
|
+
red.sv
|
1241
|
+
sy
|
1242
|
+
gov.sy
|
1243
|
+
com.sy
|
1244
|
+
net.sy
|
1245
|
+
sz
|
1246
|
+
tc
|
1247
|
+
td
|
1248
|
+
tf
|
1249
|
+
tg
|
1250
|
+
th
|
1251
|
+
ac.th
|
1252
|
+
co.th
|
1253
|
+
in.th
|
1254
|
+
go.th
|
1255
|
+
mi.th
|
1256
|
+
or.th
|
1257
|
+
net.th
|
1258
|
+
tj
|
1259
|
+
ac.tj
|
1260
|
+
biz.tj
|
1261
|
+
com.tj
|
1262
|
+
co.tj
|
1263
|
+
edu.tj
|
1264
|
+
int.tj
|
1265
|
+
name.tj
|
1266
|
+
net.tj
|
1267
|
+
org.tj
|
1268
|
+
web.tj
|
1269
|
+
gov.tj
|
1270
|
+
go.tj
|
1271
|
+
mil.tj
|
1272
|
+
tk
|
1273
|
+
tl
|
1274
|
+
tm
|
1275
|
+
tn
|
1276
|
+
com.tn
|
1277
|
+
intl.tn
|
1278
|
+
gov.tn
|
1279
|
+
org.tn
|
1280
|
+
ind.tn
|
1281
|
+
nat.tn
|
1282
|
+
tourism.tn
|
1283
|
+
info.tn
|
1284
|
+
ens.tn
|
1285
|
+
fin.tn
|
1286
|
+
net.tn
|
1287
|
+
to
|
1288
|
+
gov.to
|
1289
|
+
tp
|
1290
|
+
gov.tp
|
1291
|
+
tr
|
1292
|
+
com.tr
|
1293
|
+
info.tr
|
1294
|
+
biz.tr
|
1295
|
+
net.tr
|
1296
|
+
org.tr
|
1297
|
+
web.tr
|
1298
|
+
gen.tr
|
1299
|
+
av.tr
|
1300
|
+
dr.tr
|
1301
|
+
bbs.tr
|
1302
|
+
name.tr
|
1303
|
+
tel.tr
|
1304
|
+
gov.tr
|
1305
|
+
bel.tr
|
1306
|
+
pol.tr
|
1307
|
+
mil.tr
|
1308
|
+
k12.tr
|
1309
|
+
edu.tr
|
1310
|
+
travel
|
1311
|
+
tt
|
1312
|
+
co.tt
|
1313
|
+
com.tt
|
1314
|
+
org.tt
|
1315
|
+
net.tt
|
1316
|
+
biz.tt
|
1317
|
+
info.tt
|
1318
|
+
pro.tt
|
1319
|
+
name.tt
|
1320
|
+
edu.tt
|
1321
|
+
gov.tt
|
1322
|
+
tv
|
1323
|
+
gov.tv
|
1324
|
+
tw
|
1325
|
+
edu.tw
|
1326
|
+
gov.tw
|
1327
|
+
mil.tw
|
1328
|
+
com.tw
|
1329
|
+
net.tw
|
1330
|
+
org.tw
|
1331
|
+
idv.tw
|
1332
|
+
game.tw
|
1333
|
+
ebiz.tw
|
1334
|
+
club.tw
|
1335
|
+
網路.tw
|
1336
|
+
組織.tw
|
1337
|
+
商業.tw
|
1338
|
+
tz
|
1339
|
+
co.tz
|
1340
|
+
ac.tz
|
1341
|
+
go.tz
|
1342
|
+
or.tz
|
1343
|
+
ne.tz
|
1344
|
+
ua
|
1345
|
+
com.ua
|
1346
|
+
gov.ua
|
1347
|
+
net.ua
|
1348
|
+
edu.ua
|
1349
|
+
org.uaGeographical
|
1350
|
+
names:
|
1351
|
+
cherkassy.ua
|
1352
|
+
ck.ua
|
1353
|
+
chernigov.ua
|
1354
|
+
cn.ua
|
1355
|
+
chernovtsy.ua
|
1356
|
+
cv.ua
|
1357
|
+
crimea.ua
|
1358
|
+
dnepropetrovsk.ua
|
1359
|
+
dp.ua
|
1360
|
+
donetsk.ua
|
1361
|
+
dn.ua
|
1362
|
+
ivano-frankivsk.ua
|
1363
|
+
if.ua
|
1364
|
+
kharkov.ua
|
1365
|
+
kh.ua
|
1366
|
+
kherson.ua
|
1367
|
+
ks.ua
|
1368
|
+
khmelnitskiy.ua
|
1369
|
+
km.ua
|
1370
|
+
kiev.ua
|
1371
|
+
kv.ua
|
1372
|
+
kirovograd.ua
|
1373
|
+
kr.ua
|
1374
|
+
lugansk.ua
|
1375
|
+
lg.ua
|
1376
|
+
lutsk.ua
|
1377
|
+
lviv.ua
|
1378
|
+
nikolaev.ua
|
1379
|
+
mk.ua
|
1380
|
+
odessa.ua
|
1381
|
+
od.ua
|
1382
|
+
poltava.ua
|
1383
|
+
pl.ua
|
1384
|
+
rovno.ua
|
1385
|
+
rv.ua
|
1386
|
+
sebastopol.ua
|
1387
|
+
sumy.ua
|
1388
|
+
ternopil.ua
|
1389
|
+
te.ua
|
1390
|
+
uzhgorod.ua
|
1391
|
+
vinnica.ua
|
1392
|
+
vn.ua
|
1393
|
+
zaporizhzhe.ua
|
1394
|
+
zp.ua
|
1395
|
+
zhitomir.ua
|
1396
|
+
zt.ua
|
1397
|
+
ug
|
1398
|
+
co.ug
|
1399
|
+
ac.ug
|
1400
|
+
sc.ug
|
1401
|
+
go.ug
|
1402
|
+
ne.ug
|
1403
|
+
or.ug
|
1404
|
+
uk
|
1405
|
+
ac.uk
|
1406
|
+
co.uk
|
1407
|
+
gov.uk
|
1408
|
+
ltd.uk
|
1409
|
+
me.uk
|
1410
|
+
mil.uk
|
1411
|
+
mod.uk
|
1412
|
+
net.uk
|
1413
|
+
nic.uk
|
1414
|
+
nhs.uk
|
1415
|
+
org.uk
|
1416
|
+
plc.uk
|
1417
|
+
police.uk
|
1418
|
+
sch.uk||exceptions:
|
1419
|
+
bl.uk
|
1420
|
+
british-library.uk
|
1421
|
+
icnet.uk
|
1422
|
+
jet.uk
|
1423
|
+
nel.uk
|
1424
|
+
nls.uk
|
1425
|
+
national-library-scotland.uk
|
1426
|
+
parliament.uk.sch.uk
|
1427
|
+
uses
|
1428
|
+
4th
|
1429
|
+
level
|
1430
|
+
domains
|
1431
|
+
um
|
1432
|
+
us
|
1433
|
+
ak.us
|
1434
|
+
al.us
|
1435
|
+
ar.us
|
1436
|
+
az.us
|
1437
|
+
ca.us
|
1438
|
+
co.us
|
1439
|
+
ct.us
|
1440
|
+
dc.us
|
1441
|
+
de.us
|
1442
|
+
dni.us
|
1443
|
+
fed.us
|
1444
|
+
fl.us
|
1445
|
+
ga.us
|
1446
|
+
hi.us
|
1447
|
+
ia.us
|
1448
|
+
id.us
|
1449
|
+
il.us
|
1450
|
+
in.us
|
1451
|
+
isa.us
|
1452
|
+
kids.us
|
1453
|
+
ks.us
|
1454
|
+
ky.us
|
1455
|
+
la.us
|
1456
|
+
ma.us
|
1457
|
+
md.us
|
1458
|
+
me.us
|
1459
|
+
mi.us
|
1460
|
+
mn.us
|
1461
|
+
mo.us
|
1462
|
+
ms.us
|
1463
|
+
mt.us
|
1464
|
+
nc.us
|
1465
|
+
nd.us
|
1466
|
+
ne.us
|
1467
|
+
nh.us
|
1468
|
+
nj.us
|
1469
|
+
nm.us
|
1470
|
+
nsn.us
|
1471
|
+
nv.us
|
1472
|
+
ny.us
|
1473
|
+
oh.us
|
1474
|
+
ok.us
|
1475
|
+
or.us
|
1476
|
+
pa.us
|
1477
|
+
ri.us
|
1478
|
+
sc.us
|
1479
|
+
sd.us
|
1480
|
+
tn.us
|
1481
|
+
tx.us
|
1482
|
+
ut.us
|
1483
|
+
vt.us
|
1484
|
+
va.us
|
1485
|
+
wa.us
|
1486
|
+
wi.us
|
1487
|
+
wv.us
|
1488
|
+
wy.us
|
1489
|
+
uy
|
1490
|
+
edu.uy
|
1491
|
+
gub.uy
|
1492
|
+
org.uy
|
1493
|
+
com.uy
|
1494
|
+
net.uy
|
1495
|
+
mil.uy
|
1496
|
+
uz
|
1497
|
+
va
|
1498
|
+
vatican.va
|
1499
|
+
vc
|
1500
|
+
ve
|
1501
|
+
com.ve
|
1502
|
+
net.ve
|
1503
|
+
org.ve
|
1504
|
+
info.ve
|
1505
|
+
co.ve
|
1506
|
+
web.ve
|
1507
|
+
vg
|
1508
|
+
vi
|
1509
|
+
com.vi
|
1510
|
+
org.vi
|
1511
|
+
edu.vi
|
1512
|
+
gov.vi
|
1513
|
+
vn
|
1514
|
+
com.vn
|
1515
|
+
net.vn
|
1516
|
+
org.vn
|
1517
|
+
edu.vn
|
1518
|
+
gov.vn
|
1519
|
+
int.vn
|
1520
|
+
ac.vn
|
1521
|
+
biz.vn
|
1522
|
+
info.vn
|
1523
|
+
name.vn
|
1524
|
+
pro.vn
|
1525
|
+
health.vn
|
1526
|
+
vu
|
1527
|
+
wf
|
1528
|
+
ws
|
1529
|
+
ye
|
1530
|
+
com.ye
|
1531
|
+
net.ye
|
1532
|
+
yt
|
1533
|
+
yu
|
1534
|
+
ac.yu
|
1535
|
+
co.yu
|
1536
|
+
org.yu
|
1537
|
+
edu.yu
|
1538
|
+
za
|
1539
|
+
ac.za
|
1540
|
+
city.za
|
1541
|
+
co.za
|
1542
|
+
edu.za
|
1543
|
+
gov.za
|
1544
|
+
law.za
|
1545
|
+
mil.za
|
1546
|
+
nom.za
|
1547
|
+
org.za
|
1548
|
+
school.za
|
1549
|
+
alt.za
|
1550
|
+
net.za
|
1551
|
+
ngo.za
|
1552
|
+
tm.za
|
1553
|
+
web.za
|
1554
|
+
zm
|
1555
|
+
co.zm
|
1556
|
+
org.zm
|
1557
|
+
gov.zm
|
1558
|
+
sch.zm
|
1559
|
+
ac.zm
|
1560
|
+
zw
|
1561
|
+
co.zw
|
1562
|
+
org.zw
|
1563
|
+
gov.zw
|
1564
|
+
ac.zw
|