whois 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +161 -21
- data/LICENSE.rdoc +1 -1
- data/Manifest +184 -13
- data/README.rdoc +24 -31
- data/Rakefile +7 -7
- data/bin/ruby-whois +9 -3
- data/data/ip_del_list +2 -0
- data/data/make_servers_charset.pl +21 -0
- data/data/make_tld_serv.pl +8 -7
- data/data/servers_charset_list +37 -0
- data/data/tld_serv_list +32 -30
- data/lib/whois.rb +0 -1
- data/lib/whois/answer.rb +24 -13
- data/lib/whois/answer/parser.rb +27 -16
- data/lib/whois/answer/parser/NOTES.txt +3 -0
- data/lib/whois/answer/parser/base.rb +140 -101
- data/lib/whois/answer/parser/jobswhois.verisign-grs.com.rb +99 -0
- data/lib/whois/answer/parser/whois.adamsnames.tc.rb +64 -0
- data/lib/whois/answer/parser/whois.aeda.net.ae.rb +65 -0
- data/lib/whois/answer/parser/whois.aero.rb +6 -6
- data/lib/whois/answer/parser/whois.afilias-grs.info.rb +6 -6
- data/lib/whois/answer/parser/whois.afilias.info.rb +12 -12
- data/lib/whois/answer/parser/whois.biz.rb +72 -0
- data/lib/whois/answer/parser/whois.cat.rb +74 -0
- data/lib/whois/answer/parser/whois.cira.ca.rb +77 -0
- data/lib/whois/answer/parser/whois.crsnic.net.rb +16 -13
- data/lib/whois/answer/parser/whois.denic.de.rb +14 -18
- data/lib/whois/answer/parser/whois.dk-hostmaster.dk.rb +75 -0
- data/lib/whois/answer/parser/whois.domain-registry.nl.rb +72 -0
- data/lib/whois/answer/parser/whois.domainregistry.ie.rb +7 -13
- data/lib/whois/answer/parser/whois.dotmobiregistry.net.rb +72 -0
- data/lib/whois/answer/parser/whois.educause.edu.rb +8 -8
- data/lib/whois/answer/parser/whois.eu.org.rb +8 -17
- data/lib/whois/answer/parser/whois.eu.rb +64 -0
- data/lib/whois/answer/parser/whois.iana.org.rb +6 -9
- data/lib/whois/answer/parser/whois.isnic.is.rb +72 -0
- data/lib/whois/answer/parser/whois.meregistry.net.rb +72 -0
- data/lib/whois/answer/parser/whois.museum.rb +76 -0
- data/lib/whois/answer/parser/whois.nic-se.se.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.ac.rb +92 -0
- data/lib/whois/answer/parser/whois.nic.asia.rb +12 -12
- data/lib/whois/answer/parser/whois.nic.cc.rb +99 -0
- data/lib/whois/answer/parser/whois.nic.cd.rb +68 -0
- data/lib/whois/answer/parser/whois.nic.ch.rb +64 -0
- data/lib/whois/answer/parser/whois.nic.coop.rb +74 -0
- data/lib/whois/answer/parser/whois.nic.fr.rb +8 -11
- data/lib/whois/answer/parser/whois.nic.gl.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.gov.rb +8 -17
- data/lib/whois/answer/parser/whois.nic.hu.rb +21 -19
- data/lib/whois/answer/parser/whois.nic.im.rb +68 -0
- data/lib/whois/answer/parser/whois.nic.io.rb +64 -0
- data/lib/whois/answer/parser/whois.nic.it.rb +16 -16
- data/lib/whois/answer/parser/whois.nic.ly.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.mu.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.name.rb +8 -17
- data/lib/whois/answer/parser/whois.nic.nu.rb +84 -0
- data/lib/whois/answer/parser/whois.nic.tel.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.tl.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.travel.rb +72 -0
- data/lib/whois/answer/parser/whois.nic.tv.rb +16 -13
- data/lib/whois/answer/parser/whois.nic.uk.rb +82 -0
- data/lib/whois/answer/parser/whois.nic.us.rb +72 -0
- data/lib/whois/answer/parser/whois.norid.no.rb +72 -0
- data/lib/whois/answer/parser/whois.publicinterestregistry.net.rb +16 -16
- data/lib/whois/answer/parser/whois.register.bg.rb +74 -0
- data/lib/whois/answer/parser/whois.registro.br.rb +64 -0
- data/lib/whois/answer/parser/whois.registrypro.pro.rb +77 -0
- data/lib/whois/answer/parser/whois.ripe.net.rb +64 -0
- data/lib/whois/answer/parser/whois.ripn.net.rb +72 -0
- data/lib/whois/answer/parser/whois.rotld.ro.rb +64 -0
- data/lib/whois/answer/parser/whois.samoanic.ws.rb +76 -0
- data/lib/whois/answer/parser/whois.za.net.rb +8 -11
- data/lib/whois/answer/parser/whois.za.org.rb +7 -10
- data/lib/whois/answer/super_struct.rb +1 -1
- data/lib/whois/client.rb +4 -4
- data/lib/whois/definitions/NOTES.txt +12 -0
- data/lib/whois/definitions/ipv4.rb +2 -0
- data/lib/whois/definitions/tlds.rb +27 -27
- data/lib/whois/errors.rb +11 -1
- data/lib/whois/server.rb +1 -0
- data/lib/whois/server/adapters/web.rb +1 -2
- data/lib/whois/version.rb +4 -4
- data/test/answer/parser/base_test.rb +16 -29
- data/test/answer/parser/jobswhois.verisign-grs.com_test.rb +122 -0
- data/test/answer/parser/whois.adamsnames.tc_test.rb +122 -0
- data/test/answer/parser/whois.aeda.net.ae_test.rb +63 -0
- data/test/answer/parser/whois.afilias-grs.info_test.rb +274 -13
- data/test/answer/parser/whois.afilias.info_test.rb +1 -1
- data/test/answer/parser/whois.biz_test.rb +51 -0
- data/test/answer/parser/whois.cat_test.rb +51 -0
- data/test/answer/parser/whois.cira.ca_test.rb +51 -0
- data/test/answer/parser/whois.crsnic.net_test.rb +8 -3
- data/test/answer/parser/whois.denic.de_test.rb +11 -18
- data/test/answer/parser/whois.dk-hostmaster.dk_test.rb +57 -0
- data/test/answer/parser/whois.domain-registry.nl_test.rb +49 -0
- data/test/answer/parser/whois.domainregistry.ie_test.rb +7 -11
- data/test/answer/parser/whois.dotmobiregistry.net_test.rb +51 -0
- data/test/answer/parser/whois.educause.edu_test.rb +3 -3
- data/test/answer/parser/whois.eu.org_test.rb +6 -12
- data/test/answer/parser/whois.eu_test.rb +45 -0
- data/test/answer/parser/whois.iana.org_test.rb +2 -4
- data/test/answer/parser/whois.isnic.is_test.rb +49 -0
- data/test/answer/parser/whois.meregistry.net_test.rb +51 -0
- data/test/answer/parser/whois.museum_test.rb +51 -0
- data/test/answer/parser/whois.nic-se.se_test.rb +58 -0
- data/test/answer/parser/whois.nic.ac_test.rb +126 -0
- data/test/answer/parser/whois.nic.asia_test.rb +1 -1
- data/test/answer/parser/whois.nic.cc_test.rb +122 -0
- data/test/answer/parser/whois.nic.cd_test.rb +49 -0
- data/test/answer/parser/whois.nic.ch_test.rb +45 -0
- data/test/answer/parser/whois.nic.coop_test.rb +51 -0
- data/test/answer/parser/whois.nic.fr_test.rb +178 -13
- data/test/answer/parser/whois.nic.gl_test.rb +51 -0
- data/test/answer/parser/whois.nic.gov_test.rb +6 -12
- data/test/answer/parser/whois.nic.hu_test.rb +9 -7
- data/test/answer/parser/whois.nic.im_test.rb +47 -0
- data/test/answer/parser/whois.nic.io_test.rb +45 -0
- data/test/answer/parser/whois.nic.it_test.rb +6 -3
- data/test/answer/parser/whois.nic.ly_test.rb +51 -0
- data/test/answer/parser/whois.nic.mu_test.rb +97 -0
- data/test/answer/parser/whois.nic.name_test.rb +6 -12
- data/test/answer/parser/whois.nic.nu_test.rb +59 -0
- data/test/answer/parser/whois.nic.tel_test.rb +51 -0
- data/test/answer/parser/whois.nic.tl_test.rb +51 -0
- data/test/answer/parser/whois.nic.travel_test.rb +51 -0
- data/test/answer/parser/whois.nic.tv_test.rb +9 -5
- data/test/answer/parser/whois.nic.uk_test.rb +63 -0
- data/test/answer/parser/whois.nic.us_test.rb +51 -0
- data/test/answer/parser/whois.norid.no_test.rb +49 -0
- data/test/answer/parser/whois.register.bg_test.rb +49 -0
- data/test/answer/parser/whois.registro.br_test.rb +45 -0
- data/test/answer/parser/whois.registrypro.pro_test.rb +84 -0
- data/test/answer/parser/whois.ripe.net_test.rb +203 -0
- data/test/answer/parser/whois.ripn.net_test.rb +94 -0
- data/test/answer/parser/whois.rotld.ro_test.rb +45 -0
- data/test/answer/parser/whois.samoanic.ws_test.rb +51 -0
- data/test/answer/parser/whois.za.net_test.rb +2 -4
- data/test/answer/parser/whois.za.org_test.rb +2 -4
- data/test/answer/parser_test.rb +71 -48
- data/test/answer_test.rb +57 -21
- data/test/client_test.rb +5 -2
- data/test/errors_test.rb +23 -0
- data/test/list_tld +74 -76
- data/test/testcases/responses/jobswhois.verisign-grs.com/available.txt +44 -0
- data/test/testcases/responses/jobswhois.verisign-grs.com/registered.txt +54 -0
- data/test/testcases/responses/super_struct_test.rb +3 -4
- data/test/testcases/responses/whois.adamsnames.tc/gd/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/gd/registered.txt +26 -0
- data/test/testcases/responses/whois.adamsnames.tc/tc/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/tc/registered.txt +28 -0
- data/test/testcases/responses/whois.adamsnames.tc/vg/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/vg/registered.txt +28 -0
- data/test/testcases/responses/whois.aeda.net.ae/available.txt +1 -0
- data/test/testcases/responses/whois.aeda.net.ae/registered.txt +15 -0
- data/test/testcases/responses/whois.biz/available.txt +25 -0
- data/test/testcases/responses/whois.biz/registered.txt +89 -0
- data/test/testcases/responses/whois.cat/available.txt +18 -0
- data/test/testcases/responses/whois.cat/registered.txt +83 -0
- data/test/testcases/responses/whois.cira.ca/available.txt +9 -0
- data/test/testcases/responses/whois.cira.ca/registered.txt +47 -0
- data/test/testcases/responses/whois.dk-hostmaster.dk/available.txt +15 -0
- data/test/testcases/responses/whois.dk-hostmaster.dk/registered.txt +47 -0
- data/test/testcases/responses/whois.domain-registry.nl/available.txt +21 -0
- data/test/testcases/responses/whois.domain-registry.nl/registered.txt +67 -0
- data/test/testcases/responses/whois.dotmobiregistry.net/available.txt +25 -0
- data/test/testcases/responses/whois.dotmobiregistry.net/registered.txt +81 -0
- data/test/testcases/responses/whois.eu/available.txt +47 -0
- data/test/testcases/responses/whois.eu/registered.txt +63 -0
- data/test/testcases/responses/whois.isnic.is/available.txt +7 -0
- data/test/testcases/responses/whois.isnic.is/registered.txt +57 -0
- data/test/testcases/responses/{whois.afilias-grs.info → whois.meregistry.net}/available.txt +0 -0
- data/test/testcases/responses/whois.meregistry.net/registered.txt +94 -0
- data/test/testcases/responses/whois.museum/available.txt +18 -0
- data/test/testcases/responses/whois.museum/registered.txt +92 -0
- data/test/testcases/responses/whois.nic-se.se/available.txt +21 -0
- data/test/testcases/responses/whois.nic-se.se/registered.txt +37 -0
- data/test/testcases/responses/whois.nic.ac/available.txt +2 -0
- data/test/testcases/responses/whois.nic.ac/registered.txt +2 -0
- data/test/testcases/responses/whois.nic.cc/available.txt +44 -0
- data/test/testcases/responses/whois.nic.cc/registered.txt +58 -0
- data/test/testcases/responses/whois.nic.cd/available.txt +1 -0
- data/test/testcases/responses/whois.nic.cd/registered.txt +85 -0
- data/test/testcases/responses/whois.nic.ch/available.txt +2 -0
- data/test/testcases/responses/whois.nic.ch/registered.txt +28 -0
- data/test/testcases/responses/whois.nic.coop/available.txt +33 -0
- data/test/testcases/responses/whois.nic.coop/registered.txt +123 -0
- data/test/testcases/responses/whois.nic.fr/{available.txt → fr/available.txt} +0 -0
- data/test/testcases/responses/whois.nic.fr/{registered.txt → fr/registered.txt} +0 -0
- data/test/testcases/responses/whois.nic.fr/pm/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/pm/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.fr/re/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/re/registered.txt +83 -0
- data/test/testcases/responses/whois.nic.fr/wf/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/wf/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.fr/yt/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/yt/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.gl/available.txt +23 -0
- data/test/testcases/responses/whois.nic.gl/registered.txt +40 -0
- data/test/testcases/responses/whois.nic.hu/available.txt +5 -5
- data/test/testcases/responses/whois.nic.hu/in_progress.txt +5 -5
- data/test/testcases/responses/whois.nic.hu/registered.txt +6 -6
- data/test/testcases/responses/whois.nic.im/available.txt +2 -0
- data/test/testcases/responses/whois.nic.im/registered.txt +45 -0
- data/test/testcases/responses/whois.nic.io/available.txt +2 -0
- data/test/testcases/responses/whois.nic.io/registered.txt +2 -0
- data/test/testcases/responses/whois.nic.ly/available.txt +1 -0
- data/test/testcases/responses/whois.nic.ly/registered.txt +65 -0
- data/test/testcases/responses/whois.nic.mu/ki/available.txt +20 -0
- data/test/testcases/responses/whois.nic.mu/ki/registered.txt +30 -0
- data/test/testcases/responses/whois.nic.mu/mu/available.txt +9 -0
- data/test/testcases/responses/whois.nic.mu/mu/registered.txt +22 -0
- data/test/testcases/responses/whois.nic.nu/available.txt +19 -0
- data/test/testcases/responses/whois.nic.nu/registered.txt +35 -0
- data/test/testcases/responses/whois.nic.tel/available.txt +59 -0
- data/test/testcases/responses/whois.nic.tel/registered.txt +111 -0
- data/test/testcases/responses/whois.nic.tl/available.txt +21 -0
- data/test/testcases/responses/whois.nic.tl/registered.txt +29 -0
- data/test/testcases/responses/whois.nic.travel/available.txt +25 -0
- data/test/testcases/responses/whois.nic.travel/registered.txt +75 -0
- data/test/testcases/responses/whois.nic.uk/available.txt +20 -0
- data/test/testcases/responses/whois.nic.uk/invalid.txt +22 -0
- data/test/testcases/responses/whois.nic.uk/registered.txt +50 -0
- data/test/testcases/responses/whois.nic.us/available.txt +29 -0
- data/test/testcases/responses/whois.nic.us/registered.txt +99 -0
- data/test/testcases/responses/whois.norid.no/available.txt +5 -0
- data/test/testcases/responses/whois.norid.no/registered.txt +34 -0
- data/test/testcases/responses/whois.register.bg/available.txt +1 -0
- data/test/testcases/responses/whois.register.bg/registered.txt +44 -0
- data/test/testcases/responses/whois.registro.br/available.txt +22 -0
- data/test/testcases/responses/whois.registro.br/registered.txt +23 -0
- data/test/testcases/responses/whois.registrypro.pro/available.txt +20 -0
- data/test/testcases/responses/whois.registrypro.pro/registered.txt +62 -0
- data/test/testcases/responses/whois.ripe.net/fo/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/fo/registered.txt +45 -0
- data/test/testcases/responses/whois.ripe.net/gm/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/gm/registered.txt +37 -0
- data/test/testcases/responses/whois.ripe.net/mc/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/mc/registered.txt +36 -0
- data/test/testcases/responses/whois.ripe.net/sm/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/sm/registered.txt +60 -0
- data/test/testcases/responses/whois.ripe.net/va/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/va/registered.txt +48 -0
- data/test/testcases/responses/whois.ripn.net/ru/available.txt +9 -0
- data/test/testcases/responses/whois.ripn.net/ru/registered.txt +24 -0
- data/test/testcases/responses/whois.ripn.net/su/available.txt +9 -0
- data/test/testcases/responses/whois.ripn.net/su/registered.txt +20 -0
- data/test/testcases/responses/whois.rotld.ro/available.txt +16 -0
- data/test/testcases/responses/whois.rotld.ro/registered.txt +27 -0
- data/test/testcases/responses/whois.samoanic.ws/available.txt +12 -0
- data/test/testcases/responses/whois.samoanic.ws/registered.txt +34 -0
- data/whois.gemspec +19 -19
- metadata +274 -31
- data/lib/whois/answer/parser/README.rdoc +0 -21
- data/lib/whois/definitions/ipv4.txt +0 -214
- data/lib/whois/definitions/ipv6.txt +0 -32
- data/lib/whois/definitions/tld.notes.txt +0 -1
- data/lib/whois/definitions/tlds.txt +0 -354
- data/lib/whois/whois.rb +0 -185
- data/test/testcases/responses/whois.afilias-grs.info/registered.txt +0 -122
- data/test/testcases/responses/whois.nic.fr/MULTIPLE.txt +0 -4
- data/test/whois_test.rb +0 -32
- data/utils/tlds.txt +0 -318
@@ -0,0 +1,29 @@
|
|
1
|
+
Not found: u34jedzcq.us
|
2
|
+
|
3
|
+
>>>> Whois database was last updated on: Wed Dec 23 14:00:09 GMT 2009 <<<<
|
4
|
+
|
5
|
+
NeuStar, Inc., the Registry Administrator for .US, has collected this
|
6
|
+
information for the WHOIS database through a .US-Accredited Registrar.
|
7
|
+
This information is provided to you for informational purposes only and is
|
8
|
+
designed to assist persons in determining contents of a domain name
|
9
|
+
registration record in the NeuStar registry database. NeuStar makes this
|
10
|
+
information available to you "as is" and does not guarantee its accuracy.
|
11
|
+
By submitting a WHOIS query, you agree that you will use this data only for
|
12
|
+
lawful purposes and that, under no circumstances will you use this data:
|
13
|
+
(1) to allow, enable, or otherwise support the transmission of mass
|
14
|
+
unsolicited, commercial advertising or solicitations via direct mail,
|
15
|
+
electronic mail, or by telephone; (2) in contravention of any applicable
|
16
|
+
data and privacy protection laws; or (3) to enable high volume, automated,
|
17
|
+
electronic processes that apply to the registry (or its systems). Compilation,
|
18
|
+
repackaging, dissemination, or other use of the WHOIS database in its
|
19
|
+
entirety, or of a substantial portion thereof, is not allowed without
|
20
|
+
NeuStar's prior written permission. NeuStar reserves the right to modify or
|
21
|
+
change these conditions at any time without prior or subsequent notification
|
22
|
+
of any kind. By executing this query, in any manner whatsoever, you agree to
|
23
|
+
abide by these terms.
|
24
|
+
|
25
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
26
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
27
|
+
|
28
|
+
All domain names are subject to certain additional domain name registration
|
29
|
+
rules. For details, please visit our site at www.whois.us.
|
@@ -0,0 +1,99 @@
|
|
1
|
+
Domain Name: GOOGLE.US
|
2
|
+
Domain ID: D775573-US
|
3
|
+
Sponsoring Registrar: MARKMONITOR, INC.
|
4
|
+
Registrar URL (registration services): whois.markmonitor.com
|
5
|
+
Domain Status: clientDeleteProhibited
|
6
|
+
Domain Status: clientTransferProhibited
|
7
|
+
Domain Status: clientUpdateProhibited
|
8
|
+
Registrant ID: MMR-32103
|
9
|
+
Registrant Name: DNS Admin
|
10
|
+
Registrant Organization: Google Inc.
|
11
|
+
Registrant Address1: 2400 E. Bayshore Pkwy
|
12
|
+
Registrant City: Mountain View
|
13
|
+
Registrant State/Province: CA
|
14
|
+
Registrant Postal Code: 94043
|
15
|
+
Registrant Country: United States
|
16
|
+
Registrant Country Code: US
|
17
|
+
Registrant Phone Number: +1.6503300100
|
18
|
+
Registrant Facsimile Number: +1.6506181499
|
19
|
+
Registrant Email: dns-admin@GOOGLE.COM
|
20
|
+
Registrant Application Purpose: P1
|
21
|
+
Registrant Nexus Category: C11
|
22
|
+
Administrative Contact ID: MMR-32104
|
23
|
+
Administrative Contact Name: DNS Admin
|
24
|
+
Administrative Contact Organization: Google Inc.
|
25
|
+
Administrative Contact Address1: 2400 E. Bayshore Pkwy
|
26
|
+
Administrative Contact City: Mountain View
|
27
|
+
Administrative Contact State/Province: CA
|
28
|
+
Administrative Contact Postal Code: 94043
|
29
|
+
Administrative Contact Country: United States
|
30
|
+
Administrative Contact Country Code: US
|
31
|
+
Administrative Contact Phone Number: +1.6503300100
|
32
|
+
Administrative Contact Facsimile Number: +1.6506181499
|
33
|
+
Administrative Contact Email: dns-admin@GOOGLE.COM
|
34
|
+
Billing Contact ID: MMR-32106
|
35
|
+
Billing Contact Name: DNS Admin
|
36
|
+
Billing Contact Organization: Google Inc.
|
37
|
+
Billing Contact Address1: 2400 E. Bayshore Pkwy
|
38
|
+
Billing Contact City: Mountain View
|
39
|
+
Billing Contact State/Province: CA
|
40
|
+
Billing Contact Postal Code: 94043
|
41
|
+
Billing Contact Country: United States
|
42
|
+
Billing Contact Country Code: US
|
43
|
+
Billing Contact Phone Number: +1.6503300100
|
44
|
+
Billing Contact Facsimile Number: +1.6506181499
|
45
|
+
Billing Contact Email: dns-admin@GOOGLE.COM
|
46
|
+
Billing Application Purpose: P3
|
47
|
+
Billing Nexus Category: C11
|
48
|
+
Technical Contact ID: MMR-32105
|
49
|
+
Technical Contact Name: DNS Admin
|
50
|
+
Technical Contact Organization: Google Inc.
|
51
|
+
Technical Contact Address1: 2400 E. Bayshore Pkwy
|
52
|
+
Technical Contact City: Mountain View
|
53
|
+
Technical Contact State/Province: CA
|
54
|
+
Technical Contact Postal Code: 94043
|
55
|
+
Technical Contact Country: United States
|
56
|
+
Technical Contact Country Code: US
|
57
|
+
Technical Contact Phone Number: +1.6503300100
|
58
|
+
Technical Contact Facsimile Number: +1.6506181499
|
59
|
+
Technical Contact Email: dns-admin@google.com
|
60
|
+
Technical Application Purpose: P3
|
61
|
+
Technical Nexus Category: C11
|
62
|
+
Name Server: NS1.GOOGLE.COM
|
63
|
+
Name Server: NS2.GOOGLE.COM
|
64
|
+
Name Server: NS3.GOOGLE.COM
|
65
|
+
Name Server: NS4.GOOGLE.COM
|
66
|
+
Created by Registrar: BULKREGISTER.COM, INC.
|
67
|
+
Last Updated by Registrar: MARKMONITOR, INC.
|
68
|
+
Last Transferred Date: Fri Jul 22 18:37:41 GMT 2005
|
69
|
+
Domain Registration Date: Fri Apr 19 23:15:57 GMT 2002
|
70
|
+
Domain Expiration Date: Sun Apr 18 23:59:59 GMT 2010
|
71
|
+
Domain Last Updated Date: Tue Mar 17 09:40:30 GMT 2009
|
72
|
+
|
73
|
+
>>>> Whois database was last updated on: Wed Dec 23 14:00:09 GMT 2009 <<<<
|
74
|
+
|
75
|
+
NeuStar, Inc., the Registry Administrator for .US, has collected this
|
76
|
+
information for the WHOIS database through a .US-Accredited Registrar.
|
77
|
+
This information is provided to you for informational purposes only and is
|
78
|
+
designed to assist persons in determining contents of a domain name
|
79
|
+
registration record in the NeuStar registry database. NeuStar makes this
|
80
|
+
information available to you "as is" and does not guarantee its accuracy.
|
81
|
+
By submitting a WHOIS query, you agree that you will use this data only for
|
82
|
+
lawful purposes and that, under no circumstances will you use this data:
|
83
|
+
(1) to allow, enable, or otherwise support the transmission of mass
|
84
|
+
unsolicited, commercial advertising or solicitations via direct mail,
|
85
|
+
electronic mail, or by telephone; (2) in contravention of any applicable
|
86
|
+
data and privacy protection laws; or (3) to enable high volume, automated,
|
87
|
+
electronic processes that apply to the registry (or its systems). Compilation,
|
88
|
+
repackaging, dissemination, or other use of the WHOIS database in its
|
89
|
+
entirety, or of a substantial portion thereof, is not allowed without
|
90
|
+
NeuStar's prior written permission. NeuStar reserves the right to modify or
|
91
|
+
change these conditions at any time without prior or subsequent notification
|
92
|
+
of any kind. By executing this query, in any manner whatsoever, you agree to
|
93
|
+
abide by these terms.
|
94
|
+
|
95
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
96
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
97
|
+
|
98
|
+
All domain names are subject to certain additional domain name registration
|
99
|
+
rules. For details, please visit our site at www.whois.us.
|
@@ -0,0 +1,34 @@
|
|
1
|
+
% Kopibeskyttet, se http://www.norid.no/domenenavnbaser/whois/kopirett.html
|
2
|
+
% Rights restricted by copyright. See http://www.norid.no/domenenavnbaser/whois/kopirett.en.html
|
3
|
+
|
4
|
+
Domain Information
|
5
|
+
|
6
|
+
Domain Name................: google.no
|
7
|
+
Organization Handle........: GNA78O-NORID
|
8
|
+
Registrar Handle...........: REG466-NORID
|
9
|
+
Legal-c Handle.............: RH1355P-NORID
|
10
|
+
Tech-c Handle..............: JM722P-NORID
|
11
|
+
Zone-c Handle..............: JM722P-NORID
|
12
|
+
Nameserver Handle..........: NS3569H-NORID
|
13
|
+
Nameserver Handle..........: NS3570H-NORID
|
14
|
+
Nameserver Handle..........: NS3568H-NORID
|
15
|
+
Nameserver Handle..........: NS3571H-NORID
|
16
|
+
|
17
|
+
Additional information:
|
18
|
+
Created: 2001-02-26
|
19
|
+
Last updated: 2006-12-07
|
20
|
+
|
21
|
+
NORID Handle...............: GNA78O-NORID
|
22
|
+
Organization Name..........: Google Norway AS
|
23
|
+
Organization Number........: 988588261
|
24
|
+
Post Address...............: Beddingen 10
|
25
|
+
Postal Code................: N-7014
|
26
|
+
Postal Area................: Trondheim
|
27
|
+
Country....................: Norway
|
28
|
+
Phone Number...............: +47 23 89 40 00
|
29
|
+
Fax Number.................: +47 23 89 40 01
|
30
|
+
Email Address..............: Dns-admin@google.com
|
31
|
+
|
32
|
+
Additional information:
|
33
|
+
Last update: 2005-11-09
|
34
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
Domain name u34jedzcq.bg does not exist in database!
|
@@ -0,0 +1,44 @@
|
|
1
|
+
|
2
|
+
DOMAIN NAME: google.bg
|
3
|
+
requested on: 13/03/2003 00:00:00 EET
|
4
|
+
processed from: 13/03/2003 00:00:00 EET
|
5
|
+
activated on: 30/06/2003 00:00:00 EEST
|
6
|
+
expires at: 30/06/2010 00:00:00 EEST
|
7
|
+
registration status: Registered
|
8
|
+
|
9
|
+
REGISTRANT:
|
10
|
+
Google Inc.
|
11
|
+
N/A, 1000
|
12
|
+
BULGARIA
|
13
|
+
|
14
|
+
ADMINISTRATIVE CONTACT:
|
15
|
+
Todor Stoyanov
|
16
|
+
tonisto@mbox.digsys.bg
|
17
|
+
Tonisto Patent Agency
|
18
|
+
7 Radko Dimitriev str., Varna
|
19
|
+
VARNA, N/A
|
20
|
+
BULGARIA
|
21
|
+
tel: +359 52 630803
|
22
|
+
fax: +359 52 699014
|
23
|
+
NIC handle: TS18-BGNIC
|
24
|
+
|
25
|
+
TECHNICAL CONTACT(S):
|
26
|
+
|
27
|
+
DNS Admin
|
28
|
+
dns-admin@google.com
|
29
|
+
Google Inc.
|
30
|
+
1600 Amphitheatre Parkway, Mountain View CA 94043 US
|
31
|
+
N/A,
|
32
|
+
.
|
33
|
+
tel: +1 6503300100
|
34
|
+
fax: +1 6506181499
|
35
|
+
NIC handle: DNS11-BGNIC
|
36
|
+
|
37
|
+
NAME SERVER INFORMATION:
|
38
|
+
ns4.google.com
|
39
|
+
ns1.google.com
|
40
|
+
ns3.google.com
|
41
|
+
ns2.google.com
|
42
|
+
|
43
|
+
DNSSEC: Inactive
|
44
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
% Copyright (c) Nic.br
|
3
|
+
% The use of the data below is only permitted as described in
|
4
|
+
% full by the terms of use (http://registro.br/termo/en.html),
|
5
|
+
% being prohibited its distribution, comercialization or
|
6
|
+
% reproduction, in particular, to use it for advertising or
|
7
|
+
% any similar purpose.
|
8
|
+
% 2009-12-25 20:11:55 (BRST -02:00)
|
9
|
+
|
10
|
+
% Query rate limit exceeded. Reduced information.
|
11
|
+
% Use https://registro.br/cgi-bin/avail/ for domain availability.
|
12
|
+
|
13
|
+
% No match for domain "u34jedzcq.br"
|
14
|
+
|
15
|
+
% Security and mail abuse issues should also be addressed to
|
16
|
+
% cert.br, http://www.cert.br/, respectivelly to cert@cert.br
|
17
|
+
% and mail-abuse@cert.br
|
18
|
+
%
|
19
|
+
% whois.registro.br accepts only direct match queries. Types
|
20
|
+
% of queries are: domain (.br), ticket, provider, ID, CIDR
|
21
|
+
% block, IP and ASN.
|
22
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
% Copyright (c) Nic.br
|
3
|
+
% The use of the data below is only permitted as described in
|
4
|
+
% full by the terms of use (http://registro.br/termo/en.html),
|
5
|
+
% being prohibited its distribution, comercialization or
|
6
|
+
% reproduction, in particular, to use it for advertising or
|
7
|
+
% any similar purpose.
|
8
|
+
% 2009-12-25 20:11:54 (BRST -02:00)
|
9
|
+
|
10
|
+
% Query rate limit exceeded. Reduced information.
|
11
|
+
% Use https://registro.br/cgi-bin/avail/ for domain availability.
|
12
|
+
|
13
|
+
domain: registro.br
|
14
|
+
owner: Núcleo de Informação e Coordenação do Ponto BR (662379)
|
15
|
+
|
16
|
+
% Security and mail abuse issues should also be addressed to
|
17
|
+
% cert.br, http://www.cert.br/, respectivelly to cert@cert.br
|
18
|
+
% and mail-abuse@cert.br
|
19
|
+
%
|
20
|
+
% whois.registro.br accepts only direct match queries. Types
|
21
|
+
% of queries are: domain (.br), ticket, provider, ID, CIDR
|
22
|
+
% block, IP and ASN.
|
23
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
RegistryPro Whois Terms of Use
|
2
|
+
|
3
|
+
Access to RegistryPro's Whois query database and the data contained therein
|
4
|
+
is strictly limited to information purposes only and RegistryPro does not
|
5
|
+
guarantee the accuracy of such data. You agree that you may use this data
|
6
|
+
only for lawful purposes and that under no circumstances will you use this
|
7
|
+
data to: (a) allow, enable, or otherwise support the transmission by email,
|
8
|
+
telephone, or facsimile of mass, unsolicited, commercial advertising or
|
9
|
+
solicitations to entities other than the data recipient's own existing
|
10
|
+
customer; or (b) enable high volume, automated, electronic processes that
|
11
|
+
send queries or data to the systems of RegistryPro or any other Registry
|
12
|
+
Operator or any ICANN-accredited Registrar, except as reasonably necessary
|
13
|
+
to register domain names or modify existing registrations. RegistryPro
|
14
|
+
reserves the right to modify these terms of use at any time at its sole
|
15
|
+
discretion. Failure to adhere to these terms of use will be cause for
|
16
|
+
restriction or termination of your access to RegistryPro's Whois database.
|
17
|
+
By submitting this query, you are agreeing to abide by these terms of use.
|
18
|
+
All rights reserved. RegistryPro.
|
19
|
+
|
20
|
+
No match
|
@@ -0,0 +1,62 @@
|
|
1
|
+
RegistryPro Whois Terms of Use
|
2
|
+
|
3
|
+
Access to RegistryPro's Whois query database and the data contained therein
|
4
|
+
is strictly limited to information purposes only and RegistryPro does not
|
5
|
+
guarantee the accuracy of such data. You agree that you may use this data
|
6
|
+
only for lawful purposes and that under no circumstances will you use this
|
7
|
+
data to: (a) allow, enable, or otherwise support the transmission by email,
|
8
|
+
telephone, or facsimile of mass, unsolicited, commercial advertising or
|
9
|
+
solicitations to entities other than the data recipient's own existing
|
10
|
+
customer; or (b) enable high volume, automated, electronic processes that
|
11
|
+
send queries or data to the systems of RegistryPro or any other Registry
|
12
|
+
Operator or any ICANN-accredited Registrar, except as reasonably necessary
|
13
|
+
to register domain names or modify existing registrations. RegistryPro
|
14
|
+
reserves the right to modify these terms of use at any time at its sole
|
15
|
+
discretion. Failure to adhere to these terms of use will be cause for
|
16
|
+
restriction or termination of your access to RegistryPro's Whois database.
|
17
|
+
By submitting this query, you are agreeing to abide by these terms of use.
|
18
|
+
All rights reserved. RegistryPro.
|
19
|
+
|
20
|
+
Domain ID:DN2191-RSC
|
21
|
+
Domain Name:REGISTRY.PRO
|
22
|
+
Created On:18-Aug-2004 06:20:14 UTC
|
23
|
+
Last Updated On:20-Jan-2009 16:51:04 UTC
|
24
|
+
Expiration Date:26-Jan-2017 06:00:00 UTC
|
25
|
+
Sponsoring Registrar:internal
|
26
|
+
Registration Type:SecondLevelResolving
|
27
|
+
Status:serverDeleteProhibited
|
28
|
+
Registrant ID:RSC-1
|
29
|
+
Registrant Name:RegistryPro
|
30
|
+
Registrant Organization:RegistryPro
|
31
|
+
Registrant Street1:425 West Randolph, 8th Floor
|
32
|
+
Registrant City:Chicago
|
33
|
+
Registrant State/Province:IL
|
34
|
+
Registrant Postal Code:60606
|
35
|
+
Registrant Country:US
|
36
|
+
Registrant Phone:+1.3129947652
|
37
|
+
Registrant Email:support@registrypro.pro
|
38
|
+
Admin ID:RSC-1
|
39
|
+
Admin Name:RegistryPro
|
40
|
+
Admin Organization:RegistryPro
|
41
|
+
Admin Street1:425 West Randolph, 8th Floor
|
42
|
+
Admin City:Chicago
|
43
|
+
Admin State/Province:IL
|
44
|
+
Admin Postal Code:60606
|
45
|
+
Admin Country:US
|
46
|
+
Admin Phone:+1.3129947652
|
47
|
+
Admin Email:support@registrypro.pro
|
48
|
+
Tech ID:RSC-1
|
49
|
+
Tech Name:RegistryPro
|
50
|
+
Tech Organization:RegistryPro
|
51
|
+
Tech Street1:425 West Randolph, 8th Floor
|
52
|
+
Tech City:Chicago
|
53
|
+
Tech State/Province:IL
|
54
|
+
Tech Postal Code:60606
|
55
|
+
Tech Country:US
|
56
|
+
Tech Phone:+1.3129947652
|
57
|
+
Tech Email:support@registrypro.pro
|
58
|
+
Name Server:A.GTLD.PRO
|
59
|
+
Name Server:B.GTLD.PRO
|
60
|
+
Name Server:C.GTLD.PRO
|
61
|
+
Name Server:D.GTLD.PRO
|
62
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
% This is the RIPE Database query service.
|
2
|
+
% The objects are in RPSL format.
|
3
|
+
%
|
4
|
+
% The RIPE Database is subject to Terms and Conditions.
|
5
|
+
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
|
6
|
+
|
7
|
+
%ERROR:101: no entries found
|
8
|
+
%
|
9
|
+
% No entries found in the selected source(s).
|
10
|
+
|
11
|
+
|
@@ -0,0 +1,45 @@
|
|
1
|
+
% This is the RIPE Database query service.
|
2
|
+
% The objects are in RPSL format.
|
3
|
+
%
|
4
|
+
% The RIPE Database is subject to Terms and Conditions.
|
5
|
+
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
|
6
|
+
|
7
|
+
% Note: This output has been filtered.
|
8
|
+
% To receive output for a database update, use the "-B" flag.
|
9
|
+
|
10
|
+
% Information related to 'NIC.FO'
|
11
|
+
|
12
|
+
domain: NIC.FO
|
13
|
+
descr: FAROE ISLAND NIC
|
14
|
+
admin-c: FU46-RIPE
|
15
|
+
tech-c: FU46-RIPE
|
16
|
+
zone-c: DZ62-RIPE
|
17
|
+
nserver: NS3.ZONEEDIT.COM
|
18
|
+
nserver: NS4.ZONEEDIT.COM
|
19
|
+
mnt-by: FO-DOMREG
|
20
|
+
source: RIPE # Filtered
|
21
|
+
|
22
|
+
person: FO UMSITINGIN
|
23
|
+
address: FO-UMSITINGIN
|
24
|
+
address: TINGHUSVEGUR 9
|
25
|
+
address: FO-100 TORSHAVN
|
26
|
+
address: FAROE ISLANDS
|
27
|
+
phone: +298 322400
|
28
|
+
fax-no: +298 322401
|
29
|
+
e-mail: nic@nic.fo
|
30
|
+
nic-hdl: FU46-RIPE
|
31
|
+
mnt-by: FO-DOMREG
|
32
|
+
source: RIPE # Filtered
|
33
|
+
|
34
|
+
person: DNS MANAGER
|
35
|
+
address: ZENIT SPF
|
36
|
+
address: POSTSMOGA 1078, STIDJAGOETA 5
|
37
|
+
address: FO-110 TORSHAVN
|
38
|
+
address: FAROE ISLANDS
|
39
|
+
phone: +298 322000
|
40
|
+
fax-no: +298 320232
|
41
|
+
nic-hdl: DZ62-RIPE
|
42
|
+
mnt-by: FO-DOMREG
|
43
|
+
source: RIPE # Filtered
|
44
|
+
|
45
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
% This is the RIPE Database query service.
|
2
|
+
% The objects are in RPSL format.
|
3
|
+
%
|
4
|
+
% The RIPE Database is subject to Terms and Conditions.
|
5
|
+
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
|
6
|
+
|
7
|
+
%ERROR:101: no entries found
|
8
|
+
%
|
9
|
+
% No entries found in the selected source(s).
|
10
|
+
|
11
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
% This is the RIPE Database query service.
|
2
|
+
% The objects are in RPSL format.
|
3
|
+
%
|
4
|
+
% The RIPE Database is subject to Terms and Conditions.
|
5
|
+
% See http://www.ripe.net/db/support/db-terms-conditions.pdf
|
6
|
+
|
7
|
+
% Note: This output has been filtered.
|
8
|
+
% To receive output for a database update, use the "-B" flag.
|
9
|
+
|
10
|
+
% Information related to 'nic.gm'
|
11
|
+
|
12
|
+
domain: nic.gm
|
13
|
+
descr: Network Info Centre in The Gambia domain
|
14
|
+
admin-c: JG716-RIPE
|
15
|
+
tech-c: JG716-RIPE
|
16
|
+
zone-c: JG716-RIPE
|
17
|
+
nserver: ns1.commit.gm
|
18
|
+
nserver: ns1.sol.no
|
19
|
+
mnt-by: GM-TLD-MNT
|
20
|
+
remarks: Unmaintained sub domain object.
|
21
|
+
remarks: Parent TLD object maintainer added by RIPE NCC.
|
22
|
+
remarks: For more information see:
|
23
|
+
remarks: http://www.ripe.net/db/support/security/domain/syntax.html
|
24
|
+
source: RIPE # Filtered
|
25
|
+
|
26
|
+
person: Jorn Grotnes
|
27
|
+
address: Nextsite Systems
|
28
|
+
address: Gjerdrumsgata 50B
|
29
|
+
address: 2000 LILLESTROM
|
30
|
+
address: NORWAY
|
31
|
+
phone: + 47 93007731
|
32
|
+
fax-no: + 47 94740047
|
33
|
+
e-mail: jgr@nextsite.com
|
34
|
+
nic-hdl: JG716-RIPE
|
35
|
+
source: RIPE # Filtered
|
36
|
+
|
37
|
+
|