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,19 @@
|
|
1
|
+
------------------------------------------------------------------------
|
2
|
+
Database last updated: 2010-Jan-08 15:01:41 GMT
|
3
|
+
------------------------------------------------------------------------
|
4
|
+
Galba:~ mmk$ whois u34jedzcq.nu
|
5
|
+
------------------------------------------------------------------------
|
6
|
+
.NU Domain Ltd Whois service
|
7
|
+
|
8
|
+
NO MATCH for domain "u34jedzcq.nu" (ASCII):
|
9
|
+
|
10
|
+
Visit http://www.nunames.nu to determine if this domain has been
|
11
|
+
registered within the last 48 hours.
|
12
|
+
|
13
|
+
Owner and Administrative Contact information for domains
|
14
|
+
registered in .nu is available upon request from support@nic.nu
|
15
|
+
|
16
|
+
Copyright by .NU Domain Ltd - http://www.nunames.nu
|
17
|
+
------------------------------------------------------------------------
|
18
|
+
Database last updated: 2010-Jan-08 15:01:41 GMT
|
19
|
+
------------------------------------------------------------------------
|
@@ -0,0 +1,35 @@
|
|
1
|
+
------------------------------------------------------------------------
|
2
|
+
.NU Domain Ltd Whois service
|
3
|
+
|
4
|
+
Domain Name (ASCII): google.nu
|
5
|
+
|
6
|
+
Technical Contact:
|
7
|
+
Domain Administrator dns-admin@google.com
|
8
|
+
Google, Inc.
|
9
|
+
1600 Amphitheatre Parkway
|
10
|
+
Mountain View
|
11
|
+
CA 94043
|
12
|
+
US
|
13
|
+
Phone: +1 650 318 0200 (voice) +1 650 618 1499 (fax)
|
14
|
+
|
15
|
+
Record last updated on 11-May-2009.
|
16
|
+
Record expires on 07-Jun-2010.
|
17
|
+
Record created on 07-Jun-1999.
|
18
|
+
Record status: Active
|
19
|
+
Registrar of record: eMarkMonitor, Inc.
|
20
|
+
ReferralServer: whois://whois.markmonitor.com
|
21
|
+
Referral URL: http://www.markmonitor.com
|
22
|
+
|
23
|
+
Domain servers in listed order:
|
24
|
+
ns1.google.com
|
25
|
+
ns2.google.com
|
26
|
+
ns3.google.com
|
27
|
+
ns4.google.com
|
28
|
+
|
29
|
+
Owner and Administrative Contact information for domains
|
30
|
+
registered in .nu is available upon request from support@nic.nu
|
31
|
+
|
32
|
+
Copyright by .NU Domain Ltd - http://www.nunames.nu
|
33
|
+
------------------------------------------------------------------------
|
34
|
+
Database last updated: 2010-Jan-08 15:01:41 GMT
|
35
|
+
------------------------------------------------------------------------
|
@@ -0,0 +1,59 @@
|
|
1
|
+
Not found: u34jedzcq.tel
|
2
|
+
|
3
|
+
>>>> Whois database was last updated on: Wed Dec 23 18:30:16 GMT 2009 <<<<
|
4
|
+
|
5
|
+
Telnic, Ltd., the Registry Operator for .TEL, has collected this information
|
6
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
7
|
+
is provided to you for informational purposes only and is designed to assist
|
8
|
+
persons in determining contents of a domain name registration record in the
|
9
|
+
Telnic registry database. Telnic makes this information available to you
|
10
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
11
|
+
agree that you will use this data only for lawful purposes and that, under no
|
12
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
13
|
+
support the transmission of mass unsolicited, commercial advertising or
|
14
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
15
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
16
|
+
enable high volume, automated, electronic processes that apply to the registry
|
17
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
18
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
19
|
+
allowed without Telnic's prior written permission. Telnic reserves the
|
20
|
+
right to modify or change these conditions at any time without prior or
|
21
|
+
subsequent notification of any kind. By executing this query, in any manner
|
22
|
+
whatsoever, you agree to abide by these terms.
|
23
|
+
|
24
|
+
Contact information: Disclosure of contact data is restricted because
|
25
|
+
of UK and EU Data Protection legislation. The contact details for this
|
26
|
+
contact ID may be available by looking up a domain object in the WHOIS
|
27
|
+
system. The information can also be obtained through the Telnic
|
28
|
+
Special Access Service. Visit http://www.sas.nic.tel for more details.
|
29
|
+
|
30
|
+
|
31
|
+
.TEL WHOIS DISCLAIMER AND TERMS & CONDITIONS
|
32
|
+
|
33
|
+
By submitting a query and/or making further queries in the future, you
|
34
|
+
agree to these terms and conditions:
|
35
|
+
|
36
|
+
This whois information is provided by Telnic Ltd, a UK registered company.
|
37
|
+
Telnic operates the Registry for .tel top level domain names. whois information
|
38
|
+
is provided for information purposes only and Telnic shall not be responsible
|
39
|
+
and shall have no liability for any information that is incomplete or
|
40
|
+
inaccurate.
|
41
|
+
|
42
|
+
Telnic is the owner of all Copyright (c) and Database Rights in information
|
43
|
+
that is made available via this whois service. You are not licensed to use
|
44
|
+
the information you obtain from this whois service for any purpose other
|
45
|
+
than to obtain information about whether a .tel domain name is available
|
46
|
+
for registration or to obtain the contact information of a registrant of
|
47
|
+
of a domain name that is already registered. You must not
|
48
|
+
utilise, combine or compile any information you obtain from this whois service
|
49
|
+
to produce a list or database containing such information without obtaining
|
50
|
+
a license from Telnic to do so. At our request, which may be made for any
|
51
|
+
reason, you will destroy all information you obtain or have obtained
|
52
|
+
using this whois service.
|
53
|
+
|
54
|
+
You must not use the information you obtain from this whois service
|
55
|
+
to: (a) allow, enable or otherwise facilitate or support the transmission of
|
56
|
+
unsolicited commercial advertising or other marketing information by any means;
|
57
|
+
(b) harass any person; or (c) cause nuisance in any possible way to any person.
|
58
|
+
|
59
|
+
|
@@ -0,0 +1,111 @@
|
|
1
|
+
Domain Name: WEPPOS.TEL
|
2
|
+
Domain ID: D1223829-TEL
|
3
|
+
Sponsoring Registrar: EURODNS SA
|
4
|
+
Sponsoring Registrar IANA ID: 1052
|
5
|
+
Domain Status: ok
|
6
|
+
Registrant ID: EDSR2957339
|
7
|
+
Registrant Name: Carletti Simone
|
8
|
+
Registrant Address1: P.zza Sabaudia, 5
|
9
|
+
Registrant City: Roma
|
10
|
+
Registrant Postal Code: 00171
|
11
|
+
Registrant Country: Italy
|
12
|
+
Registrant Country Code: IT
|
13
|
+
Registrant Phone Number: +39.3392551831
|
14
|
+
Registrant Email: hosting@weppos.net
|
15
|
+
Administrative Contact ID: EDSA2957339
|
16
|
+
Administrative Contact Name: Carletti Simone
|
17
|
+
Administrative Contact Address1: P.zza Sabaudia, 5
|
18
|
+
Administrative Contact City: Roma
|
19
|
+
Administrative Contact Postal Code: 00171
|
20
|
+
Administrative Contact Country: Italy
|
21
|
+
Administrative Contact Country Code: IT
|
22
|
+
Administrative Contact Phone Number: +39.3392551831
|
23
|
+
Administrative Contact Email: hosting@weppos.net
|
24
|
+
Billing Contact ID: EDNS-BILLING
|
25
|
+
Billing Contact Name: Julien Franck
|
26
|
+
Billing Contact Organization: EuroDNS S.A.
|
27
|
+
Billing Contact Address1: 2, rue Leon Laval
|
28
|
+
Billing Contact City: Leudelange
|
29
|
+
Billing Contact Postal Code: L-3372
|
30
|
+
Billing Contact Country: Luxembourg
|
31
|
+
Billing Contact Country Code: LU
|
32
|
+
Billing Contact Phone Number: +352.2637252
|
33
|
+
Billing Contact Facsimile Number: +352.26372537
|
34
|
+
Billing Contact Email: finance@eurodns.com
|
35
|
+
Technical Contact ID: EDST2957339
|
36
|
+
Technical Contact Name: Carletti Simone
|
37
|
+
Technical Contact Address1: P.zza Sabaudia, 5
|
38
|
+
Technical Contact City: Roma
|
39
|
+
Technical Contact Postal Code: 00171
|
40
|
+
Technical Contact Country: Italy
|
41
|
+
Technical Contact Country Code: IT
|
42
|
+
Technical Contact Phone Number: +39.3392551831
|
43
|
+
Technical Contact Email: hosting@weppos.net
|
44
|
+
Name Server: A0.CTH.DNS.NIC.TEL
|
45
|
+
Name Server: D0.CTH.DNS.NIC.TEL
|
46
|
+
Name Server: N0.CTH.DNS.NIC.TEL
|
47
|
+
Name Server: S0.CTH.DNS.NIC.TEL
|
48
|
+
Name Server: T0.CTH.DNS.NIC.TEL
|
49
|
+
Created by Registrar: EURODNS SA
|
50
|
+
Last Updated by Registrar: NEULEVELCSR
|
51
|
+
Domain Registration Date: Sun Apr 19 12:36:25 GMT 2009
|
52
|
+
Domain Expiration Date: Sun Apr 18 23:59:59 GMT 2010
|
53
|
+
Domain Last Updated Date: Mon Apr 20 12:39:49 GMT 2009
|
54
|
+
|
55
|
+
>>>> Whois database was last updated on: Wed Dec 23 18:30:16 GMT 2009 <<<<
|
56
|
+
|
57
|
+
Telnic, Ltd., the Registry Operator for .TEL, has collected this information
|
58
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
59
|
+
is provided to you for informational purposes only and is designed to assist
|
60
|
+
persons in determining contents of a domain name registration record in the
|
61
|
+
Telnic registry database. Telnic makes this information available to you
|
62
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
63
|
+
agree that you will use this data only for lawful purposes and that, under no
|
64
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
65
|
+
support the transmission of mass unsolicited, commercial advertising or
|
66
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
67
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
68
|
+
enable high volume, automated, electronic processes that apply to the registry
|
69
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
70
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
71
|
+
allowed without Telnic's prior written permission. Telnic reserves the
|
72
|
+
right to modify or change these conditions at any time without prior or
|
73
|
+
subsequent notification of any kind. By executing this query, in any manner
|
74
|
+
whatsoever, you agree to abide by these terms.
|
75
|
+
|
76
|
+
Contact information: Disclosure of contact data is restricted because
|
77
|
+
of UK and EU Data Protection legislation. The contact details for this
|
78
|
+
contact ID may be available by looking up a domain object in the WHOIS
|
79
|
+
system. The information can also be obtained through the Telnic
|
80
|
+
Special Access Service. Visit http://www.sas.nic.tel for more details.
|
81
|
+
|
82
|
+
|
83
|
+
.TEL WHOIS DISCLAIMER AND TERMS & CONDITIONS
|
84
|
+
|
85
|
+
By submitting a query and/or making further queries in the future, you
|
86
|
+
agree to these terms and conditions:
|
87
|
+
|
88
|
+
This whois information is provided by Telnic Ltd, a UK registered company.
|
89
|
+
Telnic operates the Registry for .tel top level domain names. whois information
|
90
|
+
is provided for information purposes only and Telnic shall not be responsible
|
91
|
+
and shall have no liability for any information that is incomplete or
|
92
|
+
inaccurate.
|
93
|
+
|
94
|
+
Telnic is the owner of all Copyright (c) and Database Rights in information
|
95
|
+
that is made available via this whois service. You are not licensed to use
|
96
|
+
the information you obtain from this whois service for any purpose other
|
97
|
+
than to obtain information about whether a .tel domain name is available
|
98
|
+
for registration or to obtain the contact information of a registrant of
|
99
|
+
of a domain name that is already registered. You must not
|
100
|
+
utilise, combine or compile any information you obtain from this whois service
|
101
|
+
to produce a list or database containing such information without obtaining
|
102
|
+
a license from Telnic to do so. At our request, which may be made for any
|
103
|
+
reason, you will destroy all information you obtain or have obtained
|
104
|
+
using this whois service.
|
105
|
+
|
106
|
+
You must not use the information you obtain from this whois service
|
107
|
+
to: (a) allow, enable or otherwise facilitate or support the transmission of
|
108
|
+
unsolicited commercial advertising or other marketing information by any means;
|
109
|
+
(b) harass any person; or (c) cause nuisance in any possible way to any person.
|
110
|
+
|
111
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
2
|
+
database through the use of electronic processes that are high-volume and
|
3
|
+
automated. Whois database is provided by CoCCA as a service to the internet
|
4
|
+
community on behalf of CoCCA members. (http://www.cocca.cx/members.jsp)
|
5
|
+
|
6
|
+
The data is for information purposes only. CoCCA does not
|
7
|
+
guarantee its accuracy. By submitting a Whois query, you agree to abide
|
8
|
+
by the following terms of use: You agree that you may use this Data only
|
9
|
+
for lawful purposes and that under no circumstances will you use this Data
|
10
|
+
to: (1) allow, enable, or otherwise support the transmission of mass
|
11
|
+
unsolicited, commercial advertising or solicitations via e-mail, telephone,
|
12
|
+
or facsimile; or (2) enable high volume, automated, electronic processes
|
13
|
+
that apply to CoCCA it's members (or CoCCA or member computer systems). The
|
14
|
+
compilation, repackaging, dissemination or other use of this Data is
|
15
|
+
expressly prohibited.
|
16
|
+
|
17
|
+
CoCCA Helpdesk | http://helpdesk.cocca.cx
|
18
|
+
|
19
|
+
Domain Information
|
20
|
+
Query: u34jedzcq.tl
|
21
|
+
Status: Not Registered
|
@@ -0,0 +1,29 @@
|
|
1
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
2
|
+
database through the use of electronic processes that are high-volume and
|
3
|
+
automated. Whois database is provided by CoCCA as a service to the internet
|
4
|
+
community on behalf of CoCCA members. (http://www.cocca.cx/members.jsp)
|
5
|
+
|
6
|
+
The data is for information purposes only. CoCCA does not
|
7
|
+
guarantee its accuracy. By submitting a Whois query, you agree to abide
|
8
|
+
by the following terms of use: You agree that you may use this Data only
|
9
|
+
for lawful purposes and that under no circumstances will you use this Data
|
10
|
+
to: (1) allow, enable, or otherwise support the transmission of mass
|
11
|
+
unsolicited, commercial advertising or solicitations via e-mail, telephone,
|
12
|
+
or facsimile; or (2) enable high volume, automated, electronic processes
|
13
|
+
that apply to CoCCA it's members (or CoCCA or member computer systems). The
|
14
|
+
compilation, repackaging, dissemination or other use of this Data is
|
15
|
+
expressly prohibited.
|
16
|
+
|
17
|
+
CoCCA Helpdesk | http://helpdesk.cocca.cx
|
18
|
+
|
19
|
+
Domain Information
|
20
|
+
Query: google.tl
|
21
|
+
Created: 23 May 2003
|
22
|
+
Expires: 23 May 2010
|
23
|
+
Modified: 05 Aug 2009
|
24
|
+
Status: Active
|
25
|
+
Registrar: MarkMonitor
|
26
|
+
Name Servers:
|
27
|
+
ns1.google.com
|
28
|
+
ns2.google.com
|
29
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Not found: u34jedzcq.travel
|
2
|
+
|
3
|
+
>>>> Whois database was last updated on: Fri Dec 25 21:27:34 GMT 2009 <<<<
|
4
|
+
|
5
|
+
Tralliance, Inc., the Registry Operator for .travel, has collected this information
|
6
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
7
|
+
is provided to you for informational purposes only and is designed to assist
|
8
|
+
persons in determining contents of a domain name registration record in the
|
9
|
+
Tralliance registry database. Tralliance makes this information available to you
|
10
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
11
|
+
agree that you will use this data only for lawful purposes and that, under no
|
12
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
13
|
+
support the transmission of mass unsolicited, commercial advertising or
|
14
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
15
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
16
|
+
enable high volume, automated, electronic processes that apply to the registry
|
17
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
18
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
19
|
+
allowed without Tralliance's prior written permission. Tralliance reserves the
|
20
|
+
right to modify or change these conditions at any time without prior or
|
21
|
+
subsequent notification of any kind. By executing this query, in any manner
|
22
|
+
whatsoever, you agree to abide by these terms.
|
23
|
+
|
24
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
25
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
@@ -0,0 +1,75 @@
|
|
1
|
+
Domain Name: TRAVEL.TRAVEL
|
2
|
+
Domain ID: D24096-TRAVEL
|
3
|
+
Sponsoring Registrar: NEUSTAR GATEWAY
|
4
|
+
Domain Status: ok
|
5
|
+
Registrant ID: TRALLIANCE
|
6
|
+
Registrant Name: Tralliance Corporation
|
7
|
+
Registrant Address1: 110 East Broward Blvd, 14th floor
|
8
|
+
Registrant City: Fort Lauderdale
|
9
|
+
Registrant State/Province: FL
|
10
|
+
Registrant Postal Code: 33301
|
11
|
+
Registrant Country: United States
|
12
|
+
Registrant Country Code: US
|
13
|
+
Registrant Phone Number: +1.9547695999
|
14
|
+
Registrant Email: info@tralliance.travel
|
15
|
+
Administrative Contact ID: TRALLIANCE
|
16
|
+
Administrative Contact Name: Tralliance Corporation
|
17
|
+
Administrative Contact Address1: 110 East Broward Blvd, 14th floor
|
18
|
+
Administrative Contact City: Fort Lauderdale
|
19
|
+
Administrative Contact State/Province: FL
|
20
|
+
Administrative Contact Postal Code: 33301
|
21
|
+
Administrative Contact Country: United States
|
22
|
+
Administrative Contact Country Code: US
|
23
|
+
Administrative Contact Phone Number: +1.9547695999
|
24
|
+
Administrative Contact Email: info@tralliance.travel
|
25
|
+
Billing Contact ID: TRALLIANCE
|
26
|
+
Billing Contact Name: Tralliance Corporation
|
27
|
+
Billing Contact Address1: 110 East Broward Blvd, 14th floor
|
28
|
+
Billing Contact City: Fort Lauderdale
|
29
|
+
Billing Contact State/Province: FL
|
30
|
+
Billing Contact Postal Code: 33301
|
31
|
+
Billing Contact Country: United States
|
32
|
+
Billing Contact Country Code: US
|
33
|
+
Billing Contact Phone Number: +1.9547695999
|
34
|
+
Billing Contact Email: info@tralliance.travel
|
35
|
+
Technical Contact ID: TRALLIANCE
|
36
|
+
Technical Contact Name: Tralliance Corporation
|
37
|
+
Technical Contact Address1: 110 East Broward Blvd, 14th floor
|
38
|
+
Technical Contact City: Fort Lauderdale
|
39
|
+
Technical Contact State/Province: FL
|
40
|
+
Technical Contact Postal Code: 33301
|
41
|
+
Technical Contact Country: United States
|
42
|
+
Technical Contact Country Code: US
|
43
|
+
Technical Contact Phone Number: +1.9547695999
|
44
|
+
Technical Contact Email: info@tralliance.travel
|
45
|
+
Name Server: NETSYS.COM
|
46
|
+
Name Server: NS01-MIA.THEGLOBE.COM
|
47
|
+
Created by Registrar: NEUSTAR GATEWAY
|
48
|
+
Last Updated by Registrar: NMUTONYI
|
49
|
+
Domain Registration Date: Tue Oct 04 21:44:27 GMT 2005
|
50
|
+
Domain Expiration Date: Sun Oct 03 23:59:59 GMT 2010
|
51
|
+
Domain Last Updated Date: Sun Jul 23 16:08:37 GMT 2006
|
52
|
+
|
53
|
+
>>>> Whois database was last updated on: Fri Dec 25 21:30:26 GMT 2009 <<<<
|
54
|
+
|
55
|
+
Tralliance, Inc., the Registry Operator for .travel, has collected this information
|
56
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
57
|
+
is provided to you for informational purposes only and is designed to assist
|
58
|
+
persons in determining contents of a domain name registration record in the
|
59
|
+
Tralliance registry database. Tralliance makes this information available to you
|
60
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
61
|
+
agree that you will use this data only for lawful purposes and that, under no
|
62
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
63
|
+
support the transmission of mass unsolicited, commercial advertising or
|
64
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
65
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
66
|
+
enable high volume, automated, electronic processes that apply to the registry
|
67
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
68
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
69
|
+
allowed without Tralliance's prior written permission. Tralliance reserves the
|
70
|
+
right to modify or change these conditions at any time without prior or
|
71
|
+
subsequent notification of any kind. By executing this query, in any manner
|
72
|
+
whatsoever, you agree to abide by these terms.
|
73
|
+
|
74
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
75
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
No match for "u34jedzcq.co.uk".
|
3
|
+
|
4
|
+
This domain name has not been registered.
|
5
|
+
|
6
|
+
WHOIS lookup made at 20:34:36 08-Jan-2010
|
7
|
+
|
8
|
+
--
|
9
|
+
This WHOIS information is provided for free by Nominet UK the central registry
|
10
|
+
for .uk domain names. This information and the .uk WHOIS are:
|
11
|
+
|
12
|
+
Copyright Nominet UK 1996 - 2010.
|
13
|
+
|
14
|
+
You may not access the .uk WHOIS or use any data from it except as permitted
|
15
|
+
by the terms of use available in full at http://www.nominet.org.uk/whois, which
|
16
|
+
includes restrictions on: (A) use of the data for advertising, or its
|
17
|
+
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
|
18
|
+
or hiding any or all of this notice and (C) exceeding query rate or volume
|
19
|
+
limits. The data is provided on an 'as-is' basis and may lag behind the
|
20
|
+
register. Access may be withdrawn or restricted at any time.
|
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
Error for "u34jedzcq.uk".
|
3
|
+
|
4
|
+
This domain cannot be registered because it contravenes the Nominet UK
|
5
|
+
naming rules. The reason is:
|
6
|
+
the domain name contains too few parts.
|
7
|
+
|
8
|
+
WHOIS lookup made at 20:30:27 08-Jan-2010
|
9
|
+
|
10
|
+
--
|
11
|
+
This WHOIS information is provided for free by Nominet UK the central registry
|
12
|
+
for .uk domain names. This information and the .uk WHOIS are:
|
13
|
+
|
14
|
+
Copyright Nominet UK 1996 - 2010.
|
15
|
+
|
16
|
+
You may not access the .uk WHOIS or use any data from it except as permitted
|
17
|
+
by the terms of use available in full at http://www.nominet.org.uk/whois, which
|
18
|
+
includes restrictions on: (A) use of the data for advertising, or its
|
19
|
+
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
|
20
|
+
or hiding any or all of this notice and (C) exceeding query rate or volume
|
21
|
+
limits. The data is provided on an 'as-is' basis and may lag behind the
|
22
|
+
register. Access may be withdrawn or restricted at any time.
|
@@ -0,0 +1,50 @@
|
|
1
|
+
|
2
|
+
Domain name:
|
3
|
+
google.co.uk
|
4
|
+
|
5
|
+
Registrant:
|
6
|
+
Google Inc.
|
7
|
+
|
8
|
+
Registrant type:
|
9
|
+
Unknown
|
10
|
+
|
11
|
+
Registrant's address:
|
12
|
+
1600 Amphitheatre Parkway
|
13
|
+
Mountain View
|
14
|
+
CA
|
15
|
+
94043
|
16
|
+
United States
|
17
|
+
|
18
|
+
Registrar:
|
19
|
+
Markmonitor Inc. t/a Markmonitor [Tag = MARKMONITOR]
|
20
|
+
URL: http://www.markmonitor.com
|
21
|
+
|
22
|
+
Relevant dates:
|
23
|
+
Registered on: 14-Feb-1999
|
24
|
+
Renewal date: 14-Feb-2011
|
25
|
+
Last updated: 13-Aug-2009
|
26
|
+
|
27
|
+
Registration status:
|
28
|
+
Registered until renewal date.
|
29
|
+
|
30
|
+
Name servers:
|
31
|
+
ns1.google.com
|
32
|
+
ns2.google.com
|
33
|
+
ns3.google.com
|
34
|
+
ns4.google.com
|
35
|
+
|
36
|
+
WHOIS lookup made at 20:30:08 08-Jan-2010
|
37
|
+
|
38
|
+
--
|
39
|
+
This WHOIS information is provided for free by Nominet UK the central registry
|
40
|
+
for .uk domain names. This information and the .uk WHOIS are:
|
41
|
+
|
42
|
+
Copyright Nominet UK 1996 - 2010.
|
43
|
+
|
44
|
+
You may not access the .uk WHOIS or use any data from it except as permitted
|
45
|
+
by the terms of use available in full at http://www.nominet.org.uk/whois, which
|
46
|
+
includes restrictions on: (A) use of the data for advertising, or its
|
47
|
+
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
|
48
|
+
or hiding any or all of this notice and (C) exceeding query rate or volume
|
49
|
+
limits. The data is provided on an 'as-is' basis and may lag behind the
|
50
|
+
register. Access may be withdrawn or restricted at any time.
|