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
File without changes
|
@@ -0,0 +1,94 @@
|
|
1
|
+
WHOIS TERMS & CONDITIONS: Access to .ME WHOIS information is provided to
|
2
|
+
assist persons in determining the contents of a domain name registration
|
3
|
+
record in the .ME registry database. The data in this record is provided by
|
4
|
+
.ME Registry for informational purposes only, and .ME Registry does not
|
5
|
+
guarantee its accuracy. This service is intended only for query-based
|
6
|
+
access. You agree that you will use this data only for lawful purposes
|
7
|
+
and that, under no circumstances will you use this data to: (a) allow,
|
8
|
+
enable, or otherwise support the transmission by e-mail, telephone,
|
9
|
+
facsimile, or other electronic processes of mass unsolicited, commercial
|
10
|
+
advertising or solicitations to entities other than the data recipient's own
|
11
|
+
existing customers; or (b) enable high volume, automated, electronic
|
12
|
+
processes that send queries or data to the systems of Registry Operator,
|
13
|
+
except as reasonably necessary to register domain names or modify existing
|
14
|
+
registrations. All rights reserved. .ME Registry reserves the right to modify
|
15
|
+
these terms at any time. By submitting this query, you agree to abide by this
|
16
|
+
policy.
|
17
|
+
|
18
|
+
Domain ID:D11599-ME
|
19
|
+
Domain Name:GOOGLE.ME
|
20
|
+
Domain Create Date:13-Jun-2008 17:17:40 UTC
|
21
|
+
Domain Last Updated Date:10-Jun-2009 11:00:13 UTC
|
22
|
+
Domain Expiration Date:13-Jun-2013 17:17:40 UTC
|
23
|
+
Last Transferred Date:
|
24
|
+
Trademark Name:google
|
25
|
+
Trademark Country:BX
|
26
|
+
Trademark Number:Benelux-0694499
|
27
|
+
Date Trademark Applied For:2001-09-10
|
28
|
+
Date Trademark Registered:2002-01-01
|
29
|
+
Sponsoring Registrar:MarkMonitor Inc R45-ME
|
30
|
+
Created by:MarkMonitor Inc R45-ME
|
31
|
+
Last Updated by Registrar:MarkMonitor Inc R45-ME
|
32
|
+
Domain Status:CLIENT DELETE PROHIBITED
|
33
|
+
Domain Status:CLIENT TRANSFER PROHIBITED
|
34
|
+
Domain Status:CLIENT UPDATE PROHIBITED
|
35
|
+
Registrant ID:mmr-32097
|
36
|
+
Registrant Name:DNS Admin
|
37
|
+
Registrant Organization:Google Inc.
|
38
|
+
Registrant Address:1600 Amphitheatre Parkway
|
39
|
+
Registrant Address2:
|
40
|
+
Registrant Address3:
|
41
|
+
Registrant City:Mountain View
|
42
|
+
Registrant State/Province:CA
|
43
|
+
Registrant Country/Economy:US
|
44
|
+
Registrant Postal Code:94043
|
45
|
+
Registrant Phone:+1.6506234000
|
46
|
+
Registrant Phone Ext.:
|
47
|
+
Registrant FAX:+1.6506188571
|
48
|
+
Registrant FAX Ext.:
|
49
|
+
Registrant E-mail:dotme@markmonitor.com
|
50
|
+
Admin ID:mmr-32097
|
51
|
+
Admin Name:DNS Admin
|
52
|
+
Admin Organization:Google Inc.
|
53
|
+
Admin Address:1600 Amphitheatre Parkway
|
54
|
+
Admin Address2:
|
55
|
+
Admin Address3:
|
56
|
+
Admin City:Mountain View
|
57
|
+
Admin State/Province:CA
|
58
|
+
Admin Country/Economy:US
|
59
|
+
Admin Postal Code:94043
|
60
|
+
Admin Phone:+1.6506234000
|
61
|
+
Admin Phone Ext.:
|
62
|
+
Admin FAX:+1.6506188571
|
63
|
+
Admin FAX Ext.:
|
64
|
+
Admin E-mail:dotme@markmonitor.com
|
65
|
+
Tech ID:mmr-32097
|
66
|
+
Tech Name:DNS Admin
|
67
|
+
Tech Organization:Google Inc.
|
68
|
+
Tech Address:1600 Amphitheatre Parkway
|
69
|
+
Tech Address2:
|
70
|
+
Tech Address3:
|
71
|
+
Tech City:Mountain View
|
72
|
+
Tech State/Province:CA
|
73
|
+
Tech Country/Economy:US
|
74
|
+
Tech Postal Code:94043
|
75
|
+
Tech Phone:+1.6506234000
|
76
|
+
Tech Phone Ext.:
|
77
|
+
Tech FAX:+1.6506188571
|
78
|
+
Tech FAX Ext.:
|
79
|
+
Tech E-mail:dotme@markmonitor.com
|
80
|
+
Nameservers:NS2.GOOGLE.COM
|
81
|
+
Nameservers:NS1.GOOGLE.COM
|
82
|
+
Nameservers:NS4.GOOGLE.COM
|
83
|
+
Nameservers:NS3.GOOGLE.COM
|
84
|
+
Nameservers:
|
85
|
+
Nameservers:
|
86
|
+
Nameservers:
|
87
|
+
Nameservers:
|
88
|
+
Nameservers:
|
89
|
+
Nameservers:
|
90
|
+
Nameservers:
|
91
|
+
Nameservers:
|
92
|
+
Nameservers:
|
93
|
+
|
94
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
% Musedoma Whois Server Copyright (C) 2007 Museum Domain Management Association
|
2
|
+
%
|
3
|
+
% NOTICE: Access to Musedoma Whois information is provided to assist in
|
4
|
+
% determining the contents of an object name registration record in the
|
5
|
+
% Musedoma database. The data in this record is provided by Musedoma for
|
6
|
+
% informational purposes only, and Musedoma does not guarantee its
|
7
|
+
% accuracy. This service is intended only for query-based access. You
|
8
|
+
% agree that you will use this data only for lawful purposes and that,
|
9
|
+
% under no circumstances will you use this data to: (a) allow, enable,
|
10
|
+
% or otherwise support the transmission by e-mail, telephone or
|
11
|
+
% facsimile of unsolicited, commercial advertising or solicitations; or
|
12
|
+
% (b) enable automated, electronic processes that send queries or data
|
13
|
+
% to the systems of Musedoma or registry operators, except as reasonably
|
14
|
+
% necessary to register object names or modify existing registrations.
|
15
|
+
% All rights reserved. Musedoma reserves the right to modify these terms at
|
16
|
+
% any time. By submitting this query, you agree to abide by this policy.
|
17
|
+
%
|
18
|
+
% Object "u34jedzcq.museum" NOT FOUND.
|
@@ -0,0 +1,92 @@
|
|
1
|
+
% Musedoma Whois Server Copyright (C) 2007 Museum Domain Management Association
|
2
|
+
%
|
3
|
+
% NOTICE: Access to Musedoma Whois information is provided to assist in
|
4
|
+
% determining the contents of an object name registration record in the
|
5
|
+
% Musedoma database. The data in this record is provided by Musedoma for
|
6
|
+
% informational purposes only, and Musedoma does not guarantee its
|
7
|
+
% accuracy. This service is intended only for query-based access. You
|
8
|
+
% agree that you will use this data only for lawful purposes and that,
|
9
|
+
% under no circumstances will you use this data to: (a) allow, enable,
|
10
|
+
% or otherwise support the transmission by e-mail, telephone or
|
11
|
+
% facsimile of unsolicited, commercial advertising or solicitations; or
|
12
|
+
% (b) enable automated, electronic processes that send queries or data
|
13
|
+
% to the systems of Musedoma or registry operators, except as reasonably
|
14
|
+
% necessary to register object names or modify existing registrations.
|
15
|
+
% All rights reserved. Musedoma reserves the right to modify these terms at
|
16
|
+
% any time. By submitting this query, you agree to abide by this policy.
|
17
|
+
%
|
18
|
+
% WARNING: THIS RESPONSE IS NOT AUTHENTIC
|
19
|
+
%
|
20
|
+
% The selected character encoding "US-ASCII" is not able to represent all
|
21
|
+
% characters in this output. Those characters that could not be represented
|
22
|
+
% have been replaced with the unaccented ASCII equivalents. Please
|
23
|
+
% resubmit your query with a suitable character encoding in order to receive
|
24
|
+
% an authentic response.
|
25
|
+
%
|
26
|
+
Domain ID: D778-MUSEUM
|
27
|
+
Domain Name: musedoma.museum
|
28
|
+
Domain Name ACE: musedoma.museum
|
29
|
+
Domain Language:
|
30
|
+
Registrar ID: CORE-904 (Musedoma)
|
31
|
+
Created On: 2001-11-10 15:23:42 GMT
|
32
|
+
Last Updated On: 2002-04-04 17:48:43 GMT
|
33
|
+
Expiration Date: 2003-07-31 11:00:00 GMT
|
34
|
+
Maintainer:
|
35
|
+
Status: ok
|
36
|
+
Registrant ID: AC727-MUSEUM
|
37
|
+
Registrant Name: n/a
|
38
|
+
Registrant Organization: Museum Domain Management Association
|
39
|
+
Registrant Street: Frescativaegen 40
|
40
|
+
Registrant City: Stockholm
|
41
|
+
Registrant State/Province:
|
42
|
+
Registrant Postal Code: 104 05
|
43
|
+
Registrant Country: SE
|
44
|
+
Registrant Phone:
|
45
|
+
Registrant Phone Ext:
|
46
|
+
Registrant Fax:
|
47
|
+
Registrant Fax Ext:
|
48
|
+
Registrant Email: ck@nrm.se
|
49
|
+
Admin ID: C728-MUSEUM
|
50
|
+
Admin Name: Cary Karp
|
51
|
+
Admin Organization: Museum Domain Management Association
|
52
|
+
Admin Street: Frescativaegen 40
|
53
|
+
Admin City: Stockholm
|
54
|
+
Admin State/Province:
|
55
|
+
Admin Postal Code: 104 05
|
56
|
+
Admin Country: SE
|
57
|
+
Admin Phone:
|
58
|
+
Admin Phone Ext:
|
59
|
+
Admin Fax:
|
60
|
+
Admin Fax Ext:
|
61
|
+
Admin Email: ck@nic.museum
|
62
|
+
Tech ID: C728-MUSEUM
|
63
|
+
Tech Name: Cary Karp
|
64
|
+
Tech Organization: Museum Domain Management Association
|
65
|
+
Tech Street: Frescativaegen 40
|
66
|
+
Tech City: Stockholm
|
67
|
+
Tech State/Province:
|
68
|
+
Tech Postal Code: 104 05
|
69
|
+
Tech Country: SE
|
70
|
+
Tech Phone:
|
71
|
+
Tech Phone Ext:
|
72
|
+
Tech Fax:
|
73
|
+
Tech Fax Ext:
|
74
|
+
Tech Email: ck@nic.museum
|
75
|
+
Billing ID: C728-MUSEUM
|
76
|
+
Billing Name: Cary Karp
|
77
|
+
Billing Organization: Museum Domain Management Association
|
78
|
+
Billing Street: Frescativaegen 40
|
79
|
+
Billing City: Stockholm
|
80
|
+
Billing State/Province:
|
81
|
+
Billing Postal Code: 104 05
|
82
|
+
Billing Country: SE
|
83
|
+
Billing Phone:
|
84
|
+
Billing Phone Ext:
|
85
|
+
Billing Fax:
|
86
|
+
Billing Fax Ext:
|
87
|
+
Billing Email: ck@nic.museum
|
88
|
+
Name Server: nic.frd.se
|
89
|
+
Name Server ACE: nic.frd.se
|
90
|
+
Name Server: nic.museum 130.242.24.5
|
91
|
+
Name Server ACE: nic.museum 130.242.24.5
|
92
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Copyright (c) 1997- .SE (The Internet Infrastructure Foundation).
|
2
|
+
# All rights reserved.
|
3
|
+
|
4
|
+
# The information obtained through searches, or otherwise, is protected
|
5
|
+
# by the Swedish Copyright Act (1960:729) and international conventions.
|
6
|
+
# It is also subject to database protection according to the Swedish
|
7
|
+
# Copyright Act.
|
8
|
+
|
9
|
+
# Any use of this material to target advertising or
|
10
|
+
# similar activities is forbidden and will be prosecuted.
|
11
|
+
# If any of the information below is transferred to a third
|
12
|
+
# party, it must be done in its entirety. This server must
|
13
|
+
# not be used as a backend for a search engine.
|
14
|
+
|
15
|
+
# Result of search for registered domain names under
|
16
|
+
# the .SE top level domain.
|
17
|
+
|
18
|
+
# The data is in the UTF-8 character set and the result is
|
19
|
+
# printed with eight bits.
|
20
|
+
|
21
|
+
"u34jedzcq.se" not found.
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Copyright (c) 1997- .SE (The Internet Infrastructure Foundation).
|
2
|
+
# All rights reserved.
|
3
|
+
|
4
|
+
# The information obtained through searches, or otherwise, is protected
|
5
|
+
# by the Swedish Copyright Act (1960:729) and international conventions.
|
6
|
+
# It is also subject to database protection according to the Swedish
|
7
|
+
# Copyright Act.
|
8
|
+
|
9
|
+
# Any use of this material to target advertising or
|
10
|
+
# similar activities is forbidden and will be prosecuted.
|
11
|
+
# If any of the information below is transferred to a third
|
12
|
+
# party, it must be done in its entirety. This server must
|
13
|
+
# not be used as a backend for a search engine.
|
14
|
+
|
15
|
+
# Result of search for registered domain names under
|
16
|
+
# the .SE top level domain.
|
17
|
+
|
18
|
+
# The data is in the UTF-8 character set and the result is
|
19
|
+
# printed with eight bits.
|
20
|
+
|
21
|
+
state: active
|
22
|
+
domain: google.se
|
23
|
+
holder: googoo5855-00001
|
24
|
+
admin-c: -
|
25
|
+
tech-c: -
|
26
|
+
billing-c: -
|
27
|
+
created: 2008-10-20
|
28
|
+
modified: 2009-08-01
|
29
|
+
expires: 2010-10-20
|
30
|
+
transferred: 2009-03-06
|
31
|
+
nserver: ns1.google.com
|
32
|
+
nserver: ns2.google.com
|
33
|
+
nserver: ns3.google.com
|
34
|
+
nserver: ns4.google.com
|
35
|
+
dnssec: unsigned delegation
|
36
|
+
status: ok
|
37
|
+
registrar: MarkMonitor Inc
|
@@ -0,0 +1,44 @@
|
|
1
|
+
|
2
|
+
Whois Server Version 1.0
|
3
|
+
|
4
|
+
Domain names can now be registered with many different competing registrars.
|
5
|
+
Go to http://registrar.verisign-grs.com/whois/ for detailed information.
|
6
|
+
|
7
|
+
No match for "U34JEDZCQ.CC".
|
8
|
+
|
9
|
+
>>> Last update of whois database: Wed, 23 Dec 2009 08:03:00 EST <<<
|
10
|
+
|
11
|
+
NOTICE: The expiration date displayed in this record is the date the
|
12
|
+
registrar's sponsorship of the domain name registration in the registry is
|
13
|
+
currently set to expire. This date does not necessarily reflect the
|
14
|
+
expiration date of the domain name registrant's agreement with the
|
15
|
+
sponsoring registrar. Users may consult the sponsoring registrar's
|
16
|
+
Whois database to view the registrar's reported date of expiration
|
17
|
+
for this registration.
|
18
|
+
|
19
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
20
|
+
database through the use of electronic processes that are high-volume and
|
21
|
+
automated except as reasonably necessary to register domain names or
|
22
|
+
modify existing registrations; the Data in VeriSign's ("VeriSign") Whois
|
23
|
+
database is provided by VeriSign for information purposes only, and to
|
24
|
+
assist persons in obtaining information about or related to a domain name
|
25
|
+
registration record. VeriSign does not guarantee its accuracy.
|
26
|
+
By submitting a Whois query, you agree to abide by the following terms of
|
27
|
+
use: You agree that you may use this Data only for lawful purposes and that
|
28
|
+
under no circumstances will you use this Data to: (1) allow, enable, or
|
29
|
+
otherwise support the transmission of mass unsolicited, commercial
|
30
|
+
advertising or solicitations via e-mail, telephone, or facsimile; or
|
31
|
+
(2) enable high volume, automated, electronic processes that apply to
|
32
|
+
VeriSign (or its computer systems). The compilation, repackaging,
|
33
|
+
dissemination or other use of this Data is expressly prohibited without
|
34
|
+
the prior written consent of VeriSign. You agree not to use electronic
|
35
|
+
processes that are automated and high-volume to access or query the
|
36
|
+
Whois database except as reasonably necessary to register domain names
|
37
|
+
or modify existing registrations. VeriSign reserves the right to restrict
|
38
|
+
your access to the Whois database in its sole discretion to ensure
|
39
|
+
operational stability. VeriSign may restrict or terminate your access to the
|
40
|
+
Whois database for failure to abide by these terms of use. VeriSign
|
41
|
+
reserves the right to modify these terms at any time.
|
42
|
+
|
43
|
+
The Registry database contains ONLY .cc, .tv, and .jobs domains
|
44
|
+
and Registrars.
|
@@ -0,0 +1,58 @@
|
|
1
|
+
|
2
|
+
Whois Server Version 1.0
|
3
|
+
|
4
|
+
Domain names can now be registered with many different competing registrars.
|
5
|
+
Go to http://registrar.verisign-grs.com/whois/ for detailed information.
|
6
|
+
|
7
|
+
Domain Name: GOOGLE.CC
|
8
|
+
Registrar: MARKMONITOR INC.
|
9
|
+
Whois Server: whois.markmonitor.com
|
10
|
+
Referral URL: http://www.markmonitor.com
|
11
|
+
Name Server: NS2.GOOGLE.COM
|
12
|
+
Name Server: NS1.GOOGLE.COM
|
13
|
+
Name Server: NS4.GOOGLE.COM
|
14
|
+
Name Server: NS3.GOOGLE.COM
|
15
|
+
Status: CLIENT-XFER-PROHIBITED
|
16
|
+
Status: CLIENT-UPDATE-PROHIBITED
|
17
|
+
Status: CLIENT-DELETE-PROHIBITED
|
18
|
+
Updated Date: 06-may-2009
|
19
|
+
Creation Date: 07-jun-1999
|
20
|
+
Expiration Date: 07-jun-2010
|
21
|
+
|
22
|
+
|
23
|
+
>>> Last update of whois database: Wed, 23 Dec 2009 08:00:17 EST <<<
|
24
|
+
|
25
|
+
NOTICE: The expiration date displayed in this record is the date the
|
26
|
+
registrar's sponsorship of the domain name registration in the registry is
|
27
|
+
currently set to expire. This date does not necessarily reflect the
|
28
|
+
expiration date of the domain name registrant's agreement with the
|
29
|
+
sponsoring registrar. Users may consult the sponsoring registrar's
|
30
|
+
Whois database to view the registrar's reported date of expiration
|
31
|
+
for this registration.
|
32
|
+
|
33
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
34
|
+
database through the use of electronic processes that are high-volume and
|
35
|
+
automated except as reasonably necessary to register domain names or
|
36
|
+
modify existing registrations; the Data in VeriSign's ("VeriSign") Whois
|
37
|
+
database is provided by VeriSign for information purposes only, and to
|
38
|
+
assist persons in obtaining information about or related to a domain name
|
39
|
+
registration record. VeriSign does not guarantee its accuracy.
|
40
|
+
By submitting a Whois query, you agree to abide by the following terms of
|
41
|
+
use: You agree that you may use this Data only for lawful purposes and that
|
42
|
+
under no circumstances will you use this Data to: (1) allow, enable, or
|
43
|
+
otherwise support the transmission of mass unsolicited, commercial
|
44
|
+
advertising or solicitations via e-mail, telephone, or facsimile; or
|
45
|
+
(2) enable high volume, automated, electronic processes that apply to
|
46
|
+
VeriSign (or its computer systems). The compilation, repackaging,
|
47
|
+
dissemination or other use of this Data is expressly prohibited without
|
48
|
+
the prior written consent of VeriSign. You agree not to use electronic
|
49
|
+
processes that are automated and high-volume to access or query the
|
50
|
+
Whois database except as reasonably necessary to register domain names
|
51
|
+
or modify existing registrations. VeriSign reserves the right to restrict
|
52
|
+
your access to the Whois database in its sole discretion to ensure
|
53
|
+
operational stability. VeriSign may restrict or terminate your access to the
|
54
|
+
Whois database for failure to abide by these terms of use. VeriSign
|
55
|
+
reserves the right to modify these terms at any time.
|
56
|
+
|
57
|
+
The Registry database contains ONLY .cc, .tv, and .jobs domains
|
58
|
+
and Registrars.
|
@@ -0,0 +1 @@
|
|
1
|
+
Domain Not Found
|
@@ -0,0 +1,85 @@
|
|
1
|
+
|
2
|
+
----------------------------------------------------------------------
|
3
|
+
WHOIS Server
|
4
|
+
----------------------------------------------------------------------
|
5
|
+
|
6
|
+
The following data is provided for information purposes only.
|
7
|
+
|
8
|
+
Registrar: MarkMonitor Inc
|
9
|
+
Registrant: Google Inc.
|
10
|
+
|
11
|
+
|
12
|
+
Domain Name: GOOGLE.CD
|
13
|
+
Creation Date: 30-Sep-2006 22:26:42
|
14
|
+
Expiration Date: 01-Oct-2010 00:00:00
|
15
|
+
Domain Status: CLIENT TRANSFER PROHIBITED
|
16
|
+
Domain Status: CLIENT DELETE PROHIBITED
|
17
|
+
|
18
|
+
|
19
|
+
Owner/Main Contact:
|
20
|
+
|
21
|
+
Name: Google Inc. (O-GOO25)
|
22
|
+
Registered Address(line1): 1600 Amphitheatre Parkway
|
23
|
+
Registered Address(line2):
|
24
|
+
Registered Address(line3):
|
25
|
+
Registered State:
|
26
|
+
Registered Country: US
|
27
|
+
Registered Postalcode: 94043
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
Administrative Contact:
|
32
|
+
|
33
|
+
Name: MarkMonitor (P-BWD27)
|
34
|
+
Registered Address(line1): 12438 W. Bridger Street, Suite 100
|
35
|
+
Registered Address(line2):
|
36
|
+
Registered Address(line3):
|
37
|
+
Registered State:
|
38
|
+
Registered Country: US
|
39
|
+
Registered Postalcode: 83713
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
Technical Contact:
|
44
|
+
|
45
|
+
Name: Google Inc. (O-GOO25)
|
46
|
+
Registered Address(line1): 1600 Amphitheatre Parkway
|
47
|
+
Registered Address(line2):
|
48
|
+
Registered Address(line3):
|
49
|
+
Registered State:
|
50
|
+
Registered Country: US
|
51
|
+
Registered Postalcode: 94043
|
52
|
+
|
53
|
+
Telephone: +165.02530000
|
54
|
+
Facsimile: +165.06188571
|
55
|
+
EMAIL: dns-admin@google.com
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
Billing Contact:
|
60
|
+
|
61
|
+
Name: Markmonitor (O-MAR356)
|
62
|
+
Registered Address(line1): PMB 155, 10400 Overland Rd.
|
63
|
+
Registered Address(line2):
|
64
|
+
Registered Address(line3):
|
65
|
+
Registered State:
|
66
|
+
Registered Country: US
|
67
|
+
Registered Postalcode: 83709-1433
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
Name Servers:
|
72
|
+
NS1.GOOGLE.COM
|
73
|
+
NS2.GOOGLE.COM
|
74
|
+
NS3.GOOGLE.COM
|
75
|
+
NS4.GOOGLE.COM
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|