whois 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. data/CHANGELOG.rdoc +17 -0
  2. data/Manifest +24 -0
  3. data/Rakefile +15 -15
  4. data/lib/whois.rb +3 -3
  5. data/lib/whois/answer/parser/NOTES.txt +1 -0
  6. data/lib/whois/answer/parser/whois.aero.rb +5 -5
  7. data/lib/whois/answer/parser/whois.afilias-grs.info.rb +5 -5
  8. data/lib/whois/answer/parser/whois.ai.rb +73 -0
  9. data/lib/whois/answer/parser/whois.dns.lu.rb +72 -0
  10. data/lib/whois/answer/parser/whois.hkdnr.net.hk.rb +81 -0
  11. data/lib/whois/answer/parser/whois.nic.af.rb +83 -0
  12. data/lib/whois/answer/parser/whois.nic.ag.rb +77 -0
  13. data/lib/whois/answer/parser/whois.nic.asia.rb +1 -1
  14. data/lib/whois/answer/parser/whois.nic.mx.rb +87 -0
  15. data/lib/whois/answer/parser/whois.nic.or.kr.rb +1 -1
  16. data/lib/whois/answer/parser/whois.nic.ve.rb +2 -2
  17. data/lib/whois/answer/parser/whois.rotld.ro.rb +2 -4
  18. data/lib/whois/version.rb +2 -2
  19. data/test/answer/parser/whois.aero_test.rb +37 -17
  20. data/test/answer/parser/whois.afilias-grs.info_test.rb +63 -28
  21. data/test/answer/parser/whois.ai_test.rb +58 -0
  22. data/test/answer/parser/whois.dns.lu_test.rb +70 -0
  23. data/test/answer/parser/whois.hkdnr.net.hk_test.rb +77 -0
  24. data/test/answer/parser/whois.nic.af_test.rb +84 -0
  25. data/test/answer/parser/whois.nic.ag_test.rb +84 -0
  26. data/test/answer/parser/whois.nic.asia_test.rb +9 -4
  27. data/test/answer/parser/whois.nic.mx_test.rb +84 -0
  28. data/test/answer/parser/whois.nic.or.kr_test.rb +2 -2
  29. data/test/answer/parser/whois.nic.ve_test.rb +10 -5
  30. data/test/answer/parser/whois.rotld.ro_test.rb +9 -4
  31. data/test/list_tld +6 -6
  32. data/test/testcases/responses/whois.ai/available.txt +2 -0
  33. data/test/testcases/responses/whois.ai/registered.txt +59 -0
  34. data/test/testcases/responses/whois.dns.lu/available.txt +26 -0
  35. data/test/testcases/responses/whois.dns.lu/registered.txt +57 -0
  36. data/test/testcases/responses/whois.hkdnr.net.hk/available.txt +1 -0
  37. data/test/testcases/responses/whois.hkdnr.net.hk/registered.txt +96 -0
  38. data/test/testcases/responses/whois.nic.af/available.txt +13 -0
  39. data/test/testcases/responses/whois.nic.af/registered.txt +56 -0
  40. data/test/testcases/responses/whois.nic.ag/available.txt +1 -0
  41. data/test/testcases/responses/whois.nic.ag/registered.txt +100 -0
  42. data/test/testcases/responses/whois.nic.mx/available.txt +11 -0
  43. data/test/testcases/responses/whois.nic.mx/registered.txt +58 -0
  44. data/whois.gemspec +8 -8
  45. metadata +41 -5
@@ -1,10 +1,10 @@
1
1
  require 'test_helper'
2
2
  require 'whois/answer/parser/whois.nic.or.kr.rb'
3
3
 
4
- class AnswerParserWhoisNicOrKzTest < Whois::Answer::Parser::TestCase
4
+ class AnswerParserWhoisNicOrKrTest < Whois::Answer::Parser::TestCase
5
5
 
6
6
  def setup
7
- @klass = Whois::Answer::Parser::WhoisNicOrKz
7
+ @klass = Whois::Answer::Parser::WhoisNicOrKr
8
8
  @host = "whois.nic.or.kr"
9
9
  end
10
10
 
@@ -10,10 +10,15 @@ class AnswerParserWhoisNicVeTest < Whois::Answer::Parser::TestCase
10
10
 
11
11
 
12
12
  def test_status
13
- assert_equal "ACTIVO",
14
- @klass.new(load_part('/registered.txt')).status
15
- assert_equal nil,
16
- @klass.new(load_part('/available.txt')).status
13
+ parser = @klass.new(load_part('/registered.txt'))
14
+ expected = "ACTIVO"
15
+ assert_equal expected, parser.status
16
+ assert_equal expected, parser.instance_eval { @status }
17
+
18
+ parser = @klass.new(load_part('/available.txt'))
19
+ expected = nil
20
+ assert_equal expected, parser.status
21
+ assert_equal expected, parser.instance_eval { @status }
17
22
  end
18
23
 
19
24
  def test_available?
@@ -69,4 +74,4 @@ class AnswerParserWhoisNicVeTest < Whois::Answer::Parser::TestCase
69
74
  assert_equal expected, parser.instance_eval { @nameservers }
70
75
  end
71
76
 
72
- end
77
+ end
@@ -10,10 +10,15 @@ class AnswerParserWhoisRotldRoTest < Whois::Answer::Parser::TestCase
10
10
 
11
11
 
12
12
  def test_status
13
- assert_equal :available,
14
- @klass.new(load_part('/available.txt')).status
15
- assert_equal :registered,
16
- @klass.new(load_part('/registered.txt')).status
13
+ parser = @klass.new(load_part('/registered.txt'))
14
+ expected = "OK"
15
+ assert_equal expected, parser.status
16
+ assert_equal expected, parser.instance_eval { @status }
17
+
18
+ parser = @klass.new(load_part('/available.txt'))
19
+ expected = nil
20
+ assert_equal expected, parser.status
21
+ assert_equal expected, parser.instance_eval { @status }
17
22
  end
18
23
 
19
24
  def test_available?
data/test/list_tld CHANGED
@@ -48,9 +48,9 @@ travel;whois.nic.travel;travel.travel;u34jedzcq.travel
48
48
  ac;whois.nic.ac;google.ac;u34jedzcq.ac
49
49
  ad;;;
50
50
  ae;whois.aeda.net.ae;google.ae;u34jedzcq.ae
51
- #Whois::Server.define :tld, ".af", "whois.nic.af"
52
- #Whois::Server.define :tld, ".ag", "whois.nic.ag"
53
- #Whois::Server.define :tld, ".ai", "whois.ai"
51
+ af;whois.nic.af;google.af;u34jedzcq.af
52
+ af;whois.nic.ag;google.ag;u34jedzcq.ag
53
+ ai;whois.ai;google.ai;u34jedzcq.ai
54
54
  al;;;
55
55
  #Whois::Server.define :tld, ".am", "whois.nic.am"
56
56
  an;;;
@@ -141,7 +141,7 @@ gt;;;
141
141
  gu;;;
142
142
  gw;;;
143
143
  #Whois::Server.define :tld, ".gy", "whois.registry.gy"
144
- #Whois::Server.define :tld, ".hk", "whois.hkdnr.net.hk"
144
+ hk;whois.hkdnr.net.hk;google.hk;u34jedzcq.hk
145
145
  #Whois::Server.define :tld, ".hm", "whois.registry.hm"
146
146
  hn;whois.afilias-grs.info;google.hn;u34jedzcq.hn
147
147
  hr;;;
@@ -180,7 +180,7 @@ lc;whois.afilias-grs.info;nic.lc;u34jedzcq.lc
180
180
  lr;;;
181
181
  ls;;;
182
182
  lt;whois.domreg.lt;google.lt;u34jedzcq.lt
183
- #Whois::Server.define :tld, ".lu", "whois.dns.lu"
183
+ lu;whois.dns.lu;google.lu;u34jedzcq.lu
184
184
  lv;whois.nic.lv;google.lv;u34jedzcq.lv
185
185
  ly;whois.nic.ly;google.ly;u34jedzcq.ly
186
186
  #Whois::Server.define :tld, ".ma", "whois.iam.net.ma"
@@ -202,7 +202,7 @@ mt;;;
202
202
  mu;whois.nic.mu;google.mu;u34jedzcq.mu
203
203
  mv;;;
204
204
  mw;;;
205
- #Whois::Server.define :tld, ".mx", "whois.nic.mx"
205
+ mx;whois.nic.mx;google.mx;u34jedzcq.mx
206
206
  #Whois::Server.define :tld, ".my", "whois.domainregistry.my"
207
207
  mz;;;
208
208
  #Whois::Server.define :tld, ".na", "whois.na-nic.com.na"
@@ -0,0 +1,2 @@
1
+ Domain u34jedzcq.ai not registred.
2
+ If you would like to register this, or any .ai domain, go to http://whois.ai
@@ -0,0 +1,59 @@
1
+ DOMAIN INFORMATION
2
+
3
+ Complete Domain Name........: google.ai
4
+ Organization Using Domain Name
5
+ Organization Name..........: Google Inc.
6
+ Street Address.............: 1600 Amphitheatre Parkway
7
+ City.......................: Mountain View
8
+ State......................: CA
9
+ Postal Code................: 94043
10
+ Country....................: US
11
+ Administrative Contact
12
+ NIC Handle (if known)......:
13
+ (I)ndividual (R)ole........: R
14
+ Name (Last, First).........: DNS Admin
15
+ Organization Name..........: Google Inc.
16
+ Street Address.............: 1600 Amphitheatre Parkway
17
+ City.......................: Mountain View
18
+ State......................: CA
19
+ Postal Code................: 94043
20
+ Country....................: US
21
+ Phone Number...............: +1.6502530000
22
+ Fax Number.................: +1.6506188571
23
+ E-Mailbox..................: dns-admin@google.com
24
+ Technical Contact
25
+ NIC Handle (if known)......:
26
+ (I)ndividual (R)ole........: R
27
+ Name (Last, First).........: Admin, Domain
28
+ Organization Name..........: MarkMonitor
29
+ Street Address.............: 10400 Overland Road, PMB 155
30
+ City.......................: Boise
31
+ State......................: ID
32
+ Postal Code................: 83709
33
+ Country....................: US
34
+ Phone Number...............: +1.2083895740
35
+ Fax Number.................: +1.2083895771
36
+ E-Mailbox..................: ccops@markmonitor.com
37
+ Billing Contact
38
+ NIC Handle (if known)......:
39
+ (I)ndividual (R)ole........: R
40
+ Name (Last, First).........: Admin, Domain
41
+ Organization Name..........: MarkMonitor
42
+ Street Address.............: 10400 Overland Road, PMB 155
43
+ City.......................: Boise
44
+ State......................: ID
45
+ Postal Code................: 83709
46
+ Country....................: US
47
+ Phone Number...............: +1.2083895740
48
+ Fax Number.................: +1.2083895771
49
+ E-Mailbox..................: ccops@markmonitor.com
50
+ Nameservers
51
+ Primary Server Hostname....: ns1.google.com
52
+ Primary Server Netaddress..:
53
+ Secondary Server Hostname..: ns2.google.com
54
+ Secondary Server Netaddress:
55
+ Third Server Hostname......: ns3.google.com
56
+ Fourth Server Hostname.....: ns4.google.com
57
+
58
+
59
+ Last paid by:
@@ -0,0 +1,26 @@
1
+ % Access to RESTENA DNS-LU WHOIS information is provided to assist persons
2
+ % in determining the content of a domain name registration record in the LU
3
+ % registration database. The data in this record is provided by RESTENA DNS-LU
4
+ % for information purposes only, and RESTENA DNS-LU does not guarantee its
5
+ % accuracy. Compilation, repackaging, dissemination or other use of the
6
+ % WHOIS database in its entirety, or of a substantial part thereof, is not
7
+ % allowed without the prior written permission of RESTENA DNS-LU.
8
+ %
9
+ % By submitting a WHOIS query, you agree to abide by this policy. You acknowledge
10
+ % that the use of the WHOIS database is regulated by the ACCEPTABLE USE POLICY
11
+ % (http://www.dns.lu/en/EN-LUCharteUtil.html), that you are aware of its
12
+ % content, and that you accept its terms and conditions.
13
+ %
14
+ % You agree especially that you will use this data only for lawful purposes and
15
+ % that you will not use this data to:
16
+ % (1) allow, enable, or otherwise support the transmission of mass unsolicited,
17
+ % commercial advertising or solicitations via e-mail (spam); or
18
+ % (2) enable high volume, automated, electronic processes that apply to
19
+ % RESTENA DNS-LU (or its systems).
20
+ %
21
+ % All rights reserved.
22
+ %
23
+ % powered by Whois Server 3.1, (c) dns.be
24
+ %
25
+ % WHOIS u34jedzcq
26
+ % No such domain
@@ -0,0 +1,57 @@
1
+ % Access to RESTENA DNS-LU WHOIS information is provided to assist persons
2
+ % in determining the content of a domain name registration record in the LU
3
+ % registration database. The data in this record is provided by RESTENA DNS-LU
4
+ % for information purposes only, and RESTENA DNS-LU does not guarantee its
5
+ % accuracy. Compilation, repackaging, dissemination or other use of the
6
+ % WHOIS database in its entirety, or of a substantial part thereof, is not
7
+ % allowed without the prior written permission of RESTENA DNS-LU.
8
+ %
9
+ % By submitting a WHOIS query, you agree to abide by this policy. You acknowledge
10
+ % that the use of the WHOIS database is regulated by the ACCEPTABLE USE POLICY
11
+ % (http://www.dns.lu/en/EN-LUCharteUtil.html), that you are aware of its
12
+ % content, and that you accept its terms and conditions.
13
+ %
14
+ % You agree especially that you will use this data only for lawful purposes and
15
+ % that you will not use this data to:
16
+ % (1) allow, enable, or otherwise support the transmission of mass unsolicited,
17
+ % commercial advertising or solicitations via e-mail (spam); or
18
+ % (2) enable high volume, automated, electronic processes that apply to
19
+ % RESTENA DNS-LU (or its systems).
20
+ %
21
+ % All rights reserved.
22
+ %
23
+ % powered by Whois Server 3.1, (c) dns.be
24
+ %
25
+ % WHOIS google
26
+ domainname: google.lu
27
+ domaintype: ACTIVE
28
+ nserver: ns1.google.com
29
+ nserver: ns2.google.com
30
+ nserver: ns3.google.com
31
+ nserver: ns4.google.com
32
+ ownertype: ORGANISATION
33
+ registered: 04/06/2003
34
+ org-name: Google Inc.
35
+ org-address: 1600 Amphitheatre Parkway
36
+ org-zipcode: 94043
37
+ org-city: Mountain View
38
+ org-country: US
39
+ adm-name: DNS Admin
40
+ adm-address: Google Inc.
41
+ adm-address: 1600 Amphitheatre Parkway
42
+ adm-zipcode: 94043
43
+ adm-city: Mountain View
44
+ adm-country: US
45
+ adm-email: dns-admin@google.com
46
+ tec-name: DNS Admin
47
+ tec-address: Google Inc.
48
+ tec-address: 1600 Amphitheatre Parkway
49
+ tec-zipcode: 94043
50
+ tec-city: Mountain View
51
+ tec-country: US
52
+ tec-email: dns-admin@google.com
53
+ registrar-name: Markmonitor
54
+ registrar-email: ccops@markmonitor.com
55
+ registrar-url: http://www.markmonitor.com/
56
+ registrar-country: GB
57
+
@@ -0,0 +1 @@
1
+ Domain Not Found
@@ -0,0 +1,96 @@
1
+
2
+ -------------------------------------------------------------------------------
3
+ Whois server by HKDNR
4
+ -------------------------------------------------------------------------------
5
+ Domain names in the .com.hk, .net.hk, .edu.hk, .org.hk,
6
+ .gov.hk, idv.hk. and .hk can now be registered with HKDNR.
7
+ Go to http://www.hkdnr.net.hk for detail information.
8
+ -------------------------------------------------------------------------------
9
+
10
+
11
+
12
+ Domain Name: GOOGLE.HK
13
+ Contract Version: HKDNR latest version
14
+
15
+ Registrant Contact Information:
16
+
17
+
18
+ Company English Name (It should be the same as the registered/corporation name on your Business Register Certificate or relevant documents): GOOGLE INC.
19
+ Company Chinese name:
20
+ Address: 1600 AMPHITHEATRE PARKWAY MOUNTAIN VIEW 94043 CA
21
+ Country: US
22
+ Email: dns-admin@google.com
23
+ Domain Name Commencement Date: 06-04-2004
24
+ Expiry Date: 31-03-2011
25
+ Re-registration Status: Complete
26
+ Name of Registrar: HKDNR
27
+
28
+
29
+
30
+
31
+
32
+
33
+ Administrative Contact Information:
34
+
35
+
36
+ Given name: DOMAIN
37
+ Family name: ADMINISTRATOR
38
+ Company name: GOOGLE INC.
39
+ Address: 1600 AMPHITHEATRE PARKWAY MOUNTAIN VIEW 94043 CA
40
+ Country: US
41
+ Phone: +1-650-2530000
42
+ Fax: +1-650-6188571
43
+ Email: dns-admin@google.com
44
+ Account Name: HK2473632T
45
+
46
+
47
+ Technical Contact Information:
48
+
49
+
50
+ Family name: ADMINISTRATOR
51
+ Company name: GOOGLE INC.
52
+ Address: 1600 AMPHITHEATRE PARKWAY MOUNTAIN VIEW 94043 CA
53
+ Country: US
54
+ Phone: +1-650-2530000
55
+ Fax: +1-650-6188571
56
+ Email: dns-admin@google.com
57
+
58
+
59
+ Name Servers Information:
60
+
61
+ NS1.GOOGLE.COM
62
+ NS2.GOOGLE.COM
63
+
64
+
65
+
66
+
67
+ -------------------------------------------------------------------------------
68
+ The Registry contains ONLY .com.hk, .net.hk, .edu.hk, .org.hk,
69
+ .gov.hk, idv.hk. and .hk $domains.
70
+ -------------------------------------------------------------------------------
71
+
72
+ WHOIS Terms of Use
73
+ By using this WHOIS search enquiry service you agree to these terms of use.
74
+ The data in HKDNR's WHOIS search engine is for information purposes only and HKDNR does not guarantee the accuracy of the data. The data is provided to assist people to obtain information about the registration record of domain names registered by HKDNR. You agree to use the data for lawful purposes only.
75
+
76
+ You are not authorised to use high-volume, electronic or automated processes to access, query or harvest data from this WHOIS search enquiry service.
77
+
78
+ You agree that you will not and will not allow anyone else to:
79
+
80
+ a. use the data for mass unsolicited commercial advertising of any sort via any medium including telephone, email or fax; or
81
+
82
+ b. enable high volume, automated or electronic processes that apply to HKDNR or its computer systems including the WHOIS search enquiry service; or
83
+
84
+ c. without the prior written consent of HKDNR compile, repackage, disseminate, disclose to any third party or use the data for a purpose other than obtaining information about a domain name registration record; or
85
+
86
+ d. use such data to derive an economic benefit for yourself.
87
+
88
+ HKDNR in its sole discretion may terminate your access to the WHOIS search enquiry service (including, without limitation, blocking your IP address) at any time including, without limitation, for excessive use of the WHOIS search enquiry service.
89
+
90
+ HKDNR may modify these terms of use at any time by publishing the modified terms of use on its website.
91
+
92
+
93
+
94
+
95
+
96
+
@@ -0,0 +1,13 @@
1
+ TERMS OF USE: You are not authorized to access or query our Whois database through the use of electronic processes that are high-volume and automated. Whois database is provided by CoCCA as a service to the internet community on behalf of CoCCA members. (http://www.cocca.cx/members.jsp)
2
+
3
+ The data is for information purposes only. CoCCA does not guarantee its accuracy. By submitting a Whois query, you agree to abide by the following terms of use: You agree that you may use this Data only for lawful purposes and that under no circumstances will you use this Data to: (1) allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via e-mail, telephone, or facsimile; or (2) enable high volume, automated, electronic processes that apply to CoCCA it's members (or CoCCA or member computer systems). The compilation, repackaging, dissemination or other use of this Data is expressly prohibited.
4
+
5
+ ADRAS Helpdesk | http://helpdesk.adras.af
6
+
7
+ Domain Information
8
+ Query: u34jedzcq.af
9
+ Status: Not Registered
10
+
11
+
12
+
13
+
@@ -0,0 +1,56 @@
1
+ TERMS OF USE: You are not authorized to access or query our Whois database through the use of electronic processes that are high-volume and automated. Whois database is provided by CoCCA as a service to the internet community on behalf of CoCCA members. (http://www.cocca.cx/members.jsp)
2
+
3
+ The data is for information purposes only. CoCCA does not guarantee its accuracy. By submitting a Whois query, you agree to abide by the following terms of use: You agree that you may use this Data only for lawful purposes and that under no circumstances will you use this Data to: (1) allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via e-mail, telephone, or facsimile; or (2) enable high volume, automated, electronic processes that apply to CoCCA it's members (or CoCCA or member computer systems). The compilation, repackaging, dissemination or other use of this Data is expressly prohibited.
4
+
5
+ ADRAS Helpdesk | http://helpdesk.adras.af
6
+
7
+ Domain Information
8
+ Query: google.af
9
+ Created: 05 Oct 2009
10
+ Expires: 05 May 2010
11
+ Modified: 29 Jan 2010
12
+ Status: Active
13
+ Registrar: MarkMonitor
14
+ Name Servers:
15
+ ns1.google.com
16
+ ns2.google.com
17
+
18
+ Registrant:
19
+ Google Inc.
20
+ Google Inc.
21
+ 1600 Amphitheatre Parkway
22
+ Mountain View, CA 94043
23
+ US
24
+ dns-admin@google.com
25
+ Voice: +1.6502530000
26
+ Fax: +1.6506188571
27
+
28
+ Administrative Contact:
29
+ Google Inc.
30
+ Google Inc.
31
+ 1600 Amphitheatre Parkway
32
+ Mountain View, CA 94043
33
+ US
34
+ dns-admin@google.com
35
+ Voice: +1.6502530000
36
+ Fax: +1.6506188571
37
+
38
+ Technical Contact:
39
+ Google Inc.
40
+ Google Inc.
41
+ 1600 Amphitheatre Parkway
42
+ Mountain View, CA 94043
43
+ US
44
+ dns-admin@google.com
45
+ Voice: +1.6502530000
46
+ Fax: +1.6506188571
47
+
48
+ Billing Contact:
49
+ eMarkmonitor Inc. dba MarkMonitor
50
+ PMB 155
51
+ 10400 Overland Road
52
+ Boise, Idaho 83709 US
53
+ ccops@markmonitor.com
54
+ Voice: +1 (208) 389 5799
55
+
56
+
@@ -0,0 +1 @@
1
+ NOT FOUND
@@ -0,0 +1,100 @@
1
+ Access to CCTLD WHOIS information is provided to assist persons in
2
+ determining the contents of a domain name registration record in the
3
+ Afilias registry database. The data in this record is provided by
4
+ Afilias Limited for informational purposes only, and Afilias 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, or
9
+ facsimile of mass unsolicited, commercial advertising or solicitations
10
+ to entities other than the data recipient's own existing customers; or
11
+ (b) enable high volume, automated, electronic processes that send
12
+ queries or data to the systems of Registry Operator, a Registrar, or
13
+ Afilias except as reasonably necessary to register domain names or
14
+ modify existing registrations. All rights reserved. Afilias reserves
15
+ the right to modify these terms at any time. By submitting this query,
16
+ you agree to abide by this policy.
17
+
18
+ Domain ID:D48552-LRCC
19
+ Domain Name:GOOGLE.AG
20
+ Created On:05-Jan-2003 14:06:59 UTC
21
+ Last Updated On:09-Dec-2009 19:28:04 UTC
22
+ Expiration Date:05-Jan-2011 14:06:59 UTC
23
+ Sponsoring Registrar:MarkMonitor, Inc. (R22-LRCC)
24
+ Status:CLIENT DELETE PROHIBITED
25
+ Status:CLIENT TRANSFER PROHIBITED
26
+ Status:CLIENT UPDATE PROHIBITED
27
+ Registrant ID:AGRS-129819
28
+ Registrant Name:DNS Admin
29
+ Registrant Organization:Google Inc.
30
+ Registrant Street1:1600 Amphitheatre Parkway
31
+ Registrant Street2:
32
+ Registrant Street3:
33
+ Registrant City:Mountain View
34
+ Registrant State/Province:CA
35
+ Registrant Postal Code:94043
36
+ Registrant Country:US
37
+ Registrant Phone:+1.6502530000
38
+ Registrant Phone Ext.:
39
+ Registrant FAX:+1.6506188571
40
+ Registrant FAX Ext.:
41
+ Registrant Email:dns-admin@google.com
42
+ Admin ID:AGRS-129819
43
+ Admin Name:DNS Admin
44
+ Admin Organization:Google Inc.
45
+ Admin Street1:1600 Amphitheatre Parkway
46
+ Admin Street2:
47
+ Admin Street3:
48
+ Admin City:Mountain View
49
+ Admin State/Province:CA
50
+ Admin Postal Code:94043
51
+ Admin Country:US
52
+ Admin Phone:+1.6502530000
53
+ Admin Phone Ext.:
54
+ Admin FAX:+1.6506188571
55
+ Admin FAX Ext.:
56
+ Admin Email:dns-admin@google.com
57
+ Billing ID:AGRS-129293
58
+ Billing Name:CCOPS
59
+ Billing Organization:MarkMonitor
60
+ Billing Street1:PMB 155
61
+ Billing Street2:10400 Overland Rd.
62
+ Billing Street3:
63
+ Billing City:Boise
64
+ Billing State/Province:ID
65
+ Billing Postal Code:83709-1433
66
+ Billing Country:US
67
+ Billing Phone:+1.20838957
68
+ Billing Phone Ext.:
69
+ Billing FAX:+1.20838957
70
+ Billing FAX Ext.:
71
+ Billing Email:ccops@markmonitor.com
72
+ Tech ID:AGRS-129819
73
+ Tech Name:DNS Admin
74
+ Tech Organization:Google Inc.
75
+ Tech Street1:1600 Amphitheatre Parkway
76
+ Tech Street2:
77
+ Tech Street3:
78
+ Tech City:Mountain View
79
+ Tech State/Province:CA
80
+ Tech Postal Code:94043
81
+ Tech Country:US
82
+ Tech Phone:+1.6502530000
83
+ Tech Phone Ext.:
84
+ Tech FAX:+1.6506188571
85
+ Tech FAX Ext.:
86
+ Tech Email:dns-admin@google.com
87
+ Name Server:NS1.GOOGLE.COM
88
+ Name Server:NS2.GOOGLE.COM
89
+ Name Server:NS3.GOOGLE.COM
90
+ Name Server:NS4.GOOGLE.COM
91
+ Name Server:
92
+ Name Server:
93
+ Name Server:
94
+ Name Server:
95
+ Name Server:
96
+ Name Server:
97
+ Name Server:
98
+ Name Server:
99
+ Name Server:
100
+