whois 4.0.8 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +11 -0
  3. data/.rspec +1 -0
  4. data/.simplecov +4 -0
  5. data/.travis.yml +27 -0
  6. data/CHANGELOG.md +9 -0
  7. data/Gemfile +5 -0
  8. data/LICENSE.txt +1 -1
  9. data/README.md +1 -1
  10. data/Rakefile +33 -0
  11. data/data/tld.json +21 -21
  12. data/lib/whois.rb +1 -1
  13. data/lib/whois/client.rb +1 -1
  14. data/lib/whois/errors.rb +1 -1
  15. data/lib/whois/record.rb +1 -1
  16. data/lib/whois/record/part.rb +1 -1
  17. data/lib/whois/server.rb +14 -2
  18. data/lib/whois/server/adapters/afilias.rb +1 -1
  19. data/lib/whois/server/adapters/arin.rb +1 -1
  20. data/lib/whois/server/adapters/arpa.rb +1 -1
  21. data/lib/whois/server/adapters/base.rb +1 -1
  22. data/lib/whois/server/adapters/formatted.rb +1 -1
  23. data/lib/whois/server/adapters/none.rb +1 -1
  24. data/lib/whois/server/adapters/not_implemented.rb +1 -1
  25. data/lib/whois/server/adapters/standard.rb +1 -1
  26. data/lib/whois/server/adapters/verisign.rb +1 -1
  27. data/lib/whois/server/adapters/web.rb +1 -1
  28. data/lib/whois/server/socket_handler.rb +1 -1
  29. data/lib/whois/version.rb +2 -2
  30. data/spec/fixtures/referrals/afilias.bz.txt +23 -0
  31. data/spec/fixtures/referrals/arin_referral_apnic.txt +78 -0
  32. data/spec/fixtures/referrals/arin_referral_missing.txt +52 -0
  33. data/spec/fixtures/referrals/arin_referral_ripe.txt +50 -0
  34. data/spec/fixtures/referrals/arin_referral_rwhois.txt +63 -0
  35. data/spec/fixtures/referrals/arin_referral_servernap.txt +63 -0
  36. data/spec/fixtures/referrals/arin_referral_whois.txt +56 -0
  37. data/spec/fixtures/referrals/crsnic.com.txt +60 -0
  38. data/spec/fixtures/referrals/crsnic.com_referral.txt +56 -0
  39. data/spec/fixtures/referrals/crsnic.com_referral_missing.txt +50 -0
  40. data/spec/integration/whois_spec.rb +73 -0
  41. data/spec/spec_helper.rb +24 -0
  42. data/spec/support/helpers/connectivity_helper.rb +15 -0
  43. data/spec/support/helpers/spec_helper.rb +31 -0
  44. data/spec/whois/client_spec.rb +144 -0
  45. data/spec/whois/errors_spec.rb +23 -0
  46. data/spec/whois/record/part_spec.rb +38 -0
  47. data/spec/whois/record_spec.rb +158 -0
  48. data/spec/whois/server/adapters/afilias_spec.rb +49 -0
  49. data/spec/whois/server/adapters/arin_spec.rb +84 -0
  50. data/spec/whois/server/adapters/arpa_spec.rb +20 -0
  51. data/spec/whois/server/adapters/base_spec.rb +150 -0
  52. data/spec/whois/server/adapters/formatted_spec.rb +53 -0
  53. data/spec/whois/server/adapters/none_spec.rb +23 -0
  54. data/spec/whois/server/adapters/not_implemented_spec.rb +24 -0
  55. data/spec/whois/server/adapters/standard_spec.rb +42 -0
  56. data/spec/whois/server/adapters/verisign_spec.rb +60 -0
  57. data/spec/whois/server/adapters/web_spec.rb +24 -0
  58. data/spec/whois/server/socket_handler_spec.rb +27 -0
  59. data/spec/whois/server_spec.rb +300 -0
  60. data/spec/whois/whois_spec.rb +15 -0
  61. data/tasks/spec.rake +199 -0
  62. data/utils/compare-whois.rb +30 -0
  63. data/utils/deftld.rb +231 -0
  64. data/utils/defutils.rb +26 -0
  65. data/utils/fixupd.rb +60 -0
  66. data/utils/matrix.rb +68 -0
  67. data/utils/mkwhois.rb +31 -0
  68. data/whois.gemspec +19 -32
  69. metadata +82 -5
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
@@ -3,11 +3,11 @@
3
3
  #
4
4
  # An intelligent pure Ruby WHOIS client and parser.
5
5
  #
6
- # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
6
+ # Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
7
7
  #++
8
8
 
9
9
 
10
10
  module Whois
11
11
  # The current library version.
12
- VERSION = "4.0.8".freeze
12
+ VERSION = "4.1.0".freeze
13
13
  end
@@ -0,0 +1,23 @@
1
+ Domain Name: BELIZENIC.BZ
2
+ Registry Domain ID: D105800000000355891-AGRS
3
+ Registrar WHOIS Server: whois.belizenic.bz
4
+ Registrar URL:
5
+ Updated Date: 2017-04-11T20:43:07Z
6
+ Creation Date: 2001-04-30T19:00:00Z
7
+ Registry Expiry Date: 2018-04-30T19:00:00Z
8
+ Registrar Registration Expiration Date:
9
+ Registrar: University Management Limited
10
+ Registrar IANA ID: 800165
11
+ Registrar Abuse Contact Email:
12
+ Registrar Abuse Contact Phone:
13
+ Reseller:
14
+ Domain Status: ok https://icann.org/epp#ok
15
+ Name Server: NS1.BELIZENIC.BZ
16
+ Name Server: PIXIE.UCB.EDU.BZ
17
+ DNSSEC: unsigned
18
+ URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
19
+ >>> Last update of WHOIS database: 2017-07-27T16:49:05Z <<<
20
+
21
+ For more information on Whois status codes, please visit https://icann.org/epp
22
+
23
+ Access to WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the registry database. The data in this record is provided by The Registry Operator for informational purposes only, and accuracy is not guaranteed. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Registry Operator reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.
@@ -0,0 +1,78 @@
1
+
2
+ #
3
+ # ARIN WHOIS data and services are subject to the Terms of Use
4
+ # available at: https://www.arin.net/whois_tou.html
5
+ #
6
+ # If you see inaccuracies in the results, please report at
7
+ # http://www.arin.net/public/whoisinaccuracy/index.xhtml
8
+ #
9
+
10
+
11
+ #
12
+ # Query terms are ambiguous. The query is assumed to be:
13
+ # "n 144.134.121.81"
14
+ #
15
+ # Use "?" to get help.
16
+ #
17
+
18
+ #
19
+ # The following results may also be obtained via:
20
+ # http://whois.arin.net/rest/nets;q=144.134.121.81?showDetails=true&showARIN=false&ext=netref2
21
+ #
22
+
23
+ NetRange: 144.130.0.0 - 144.140.255.255
24
+ CIDR: 144.132.0.0/14, 144.136.0.0/14, 144.130.0.0/15, 144.140.0.0/16
25
+ OriginAS:
26
+ NetName: APNIC-ERX-144-130-0-0
27
+ NetHandle: NET-144-130-0-0-1
28
+ Parent: NET-144-0-0-0-0
29
+ NetType: Early Registrations, Transferred to APNIC
30
+ Comment: This IP address range is not registered in the ARIN database.
31
+ Comment: This range was transferred to the APNIC Whois Database as
32
+ Comment: part of the ERX (Early Registration Transfer) project.
33
+ Comment: For details, refer to the APNIC Whois Database via
34
+ Comment: WHOIS.APNIC.NET or http://wq.apnic.net/apnic-bin/whois.pl
35
+ Comment:
36
+ Comment: ** IMPORTANT NOTE: APNIC is the Regional Internet Registry
37
+ Comment: for the Asia Pacific region. APNIC does not operate networks
38
+ Comment: using this IP address range and is not able to investigate
39
+ Comment: spam or abuse reports relating to these addresses. For more
40
+ Comment: help, refer to http://www.apnic.net/apnic-info/whois_search2/abuse-and-spamming
41
+ RegDate: 2004-01-07
42
+ Updated: 2009-10-08
43
+ Ref: http://whois.arin.net/rest/net/NET-144-130-0-0-1
44
+
45
+ OrgName: Asia Pacific Network Information Centre
46
+ OrgId: APNIC
47
+ Address: PO Box 3646
48
+ City: South Brisbane
49
+ StateProv: QLD
50
+ PostalCode: 4101
51
+ Country: AU
52
+ RegDate:
53
+ Updated: 2012-01-24
54
+ Ref: http://whois.arin.net/rest/org/APNIC
55
+
56
+ ReferralServer: whois://whois.apnic.net
57
+
58
+ OrgTechHandle: AWC12-ARIN
59
+ OrgTechName: APNIC Whois Contact
60
+ OrgTechPhone: +61 7 3858 3188
61
+ OrgTechEmail: search-apnic-not-arin@apnic.net
62
+ OrgTechRef: http://whois.arin.net/rest/poc/AWC12-ARIN
63
+
64
+ OrgAbuseHandle: AWC12-ARIN
65
+ OrgAbuseName: APNIC Whois Contact
66
+ OrgAbusePhone: +61 7 3858 3188
67
+ OrgAbuseEmail: search-apnic-not-arin@apnic.net
68
+ OrgAbuseRef: http://whois.arin.net/rest/poc/AWC12-ARIN
69
+
70
+
71
+ #
72
+ # ARIN WHOIS data and services are subject to the Terms of Use
73
+ # available at: https://www.arin.net/whois_tou.html
74
+ #
75
+ # If you see inaccuracies in the results, please report at
76
+ # http://www.arin.net/public/whoisinaccuracy/index.xhtml
77
+ #
78
+
@@ -0,0 +1,52 @@
1
+ #
2
+ # The following results may also be obtained via:
3
+ # http://whois.arin.net/rest/nets;q=4.2.2.1?showDetails=true&showARIN=false&ext=netref2
4
+ #
5
+
6
+ NetRange: 4.0.0.0 - 4.255.255.255
7
+ CIDR: 4.0.0.0/8
8
+ OriginAS:
9
+ NetName: LVLT-ORG-4-8
10
+ NetHandle: NET-4-0-0-0-1
11
+ Parent:
12
+ NetType: Direct Allocation
13
+ RegDate: 1992-12-01
14
+ Updated: 2012-02-24
15
+ Ref: http://whois.arin.net/rest/net/NET-4-0-0-0-1
16
+
17
+
18
+ OrgName: Level 3 Communications, Inc.
19
+ OrgId: LVLT
20
+ Address: 1025 Eldorado Blvd.
21
+ City: Broomfield
22
+ StateProv: CO
23
+ PostalCode: 80021
24
+ Country: US
25
+ RegDate: 1998-05-22
26
+ Updated: 2012-01-30
27
+ Comment: ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE
28
+ Ref: http://whois.arin.net/rest/org/LVLT
29
+
30
+ OrgTechHandle: IPADD5-ARIN
31
+ OrgTechName: ipaddressing
32
+ OrgTechPhone: +1-877-453-8353
33
+ OrgTechEmail: ipaddressing@level3.com
34
+ OrgTechRef: http://whois.arin.net/rest/poc/IPADD5-ARIN
35
+
36
+ OrgNOCHandle: NOCSU27-ARIN
37
+ OrgNOCName: NOC Support
38
+ OrgNOCPhone: +1-877-453-8353
39
+ OrgNOCEmail: noc.coreip@level3.com
40
+ OrgNOCRef: http://whois.arin.net/rest/poc/NOCSU27-ARIN
41
+
42
+ OrgAbuseHandle: APL8-ARIN
43
+ OrgAbuseName: Abuse POC LVLT
44
+ OrgAbusePhone: +1-877-453-8353
45
+ OrgAbuseEmail: security@level3.com
46
+ OrgAbuseRef: http://whois.arin.net/rest/poc/APL8-ARIN
47
+
48
+ #
49
+ # ARIN WHOIS data and services are subject to the Terms of Use
50
+ # available at: https://www.arin.net/whois_tou.html
51
+ #
52
+
@@ -0,0 +1,50 @@
1
+ % This is the RIPE Database query service.
2
+ % The objects are in RPSL format.
3
+ %
4
+ % The RIPE Database is subject to Terms and Conditions.
5
+ % See http://www.ripe.net/db/support/db-terms-conditions.pdf
6
+
7
+ % Note: this output has been filtered.
8
+ % To receive output for a database update, use the "-B" flag.
9
+
10
+ % Information related to '128.79.0.0 - 128.79.63.0'
11
+
12
+ inetnum: 128.79.0.0 - 128.79.63.0
13
+ netname: BOUYGTEL-ISP-CABLE
14
+ descr: Pool for Broadband CABLE customers
15
+ remarks: INFRA-AW
16
+ country: FR
17
+ admin-c: NOCB1-RIPE
18
+ tech-c: NOCB1-RIPE
19
+ status: ASSIGNED PA
20
+ mnt-by: BYTEL-MNT
21
+ mnt-lower: BYTEL-MNT
22
+ mnt-routes: BYTEL-MNT
23
+ source: RIPE # Filtered
24
+
25
+ role: Network Operation Centre Bouygues Telecom FAI
26
+ remarks: Bouygues Telecom ISP
27
+ address: Bouygues Telecom
28
+ address: 13-15 avenue du Marechal Juin
29
+ address: 92366 Meudon-la-Foret cedex
30
+ address: France
31
+ abuse-mailbox: abuse_box@bouyguestelecom.fr
32
+ admin-c: LH761-RIPE
33
+ admin-c: FT4354-RIPE
34
+ tech-c: LH761-RIPE
35
+ tech-c: FT4354-RIPE
36
+ nic-hdl: NOCB1-RIPE
37
+ mnt-by: BYTEL-MNT
38
+ source: RIPE # Filtered
39
+
40
+ % Information related to '128.78.0.0/15AS5410'
41
+
42
+ route: 128.78.0.0/15
43
+ descr: BOUYGUES Telecom ISP Wireline
44
+ origin: AS5410
45
+ mnt-by: BYTEL-MNT
46
+ source: RIPE # Filtered
47
+
48
+ % This query was served by the RIPE Database Query Service version 1.66.3 (WHOIS2)
49
+
50
+
@@ -0,0 +1,63 @@
1
+
2
+ #
3
+ # ARIN WHOIS data and services are subject to the Terms of Use
4
+ # available at: https://www.arin.net/whois_tou.html
5
+ #
6
+
7
+
8
+ #
9
+ # The following results may also be obtained via:
10
+ # http://whois.arin.net/rest/nets;q=69.65.39.166?showDetails=true&showARIN=false&ext=netref2
11
+ #
12
+
13
+ NetRange: 69.65.0.0 - 69.65.63.255
14
+ CIDR: 69.65.0.0/18
15
+ OriginAS: AS32181
16
+ NetName: IPNAP
17
+ NetHandle: NET-69-65-0-0-1
18
+ Parent: NET-69-0-0-0-0
19
+ NetType: Direct Allocation
20
+ Comment: www.gigenet.com
21
+ RegDate: 2003-07-30
22
+ Updated: 2013-05-09
23
+ Ref: http://whois.arin.net/rest/net/NET-69-65-0-0-1
24
+
25
+ OrgName: GigeNET
26
+ OrgId: DMPL
27
+ Address: 545 E Algonquin Rd
28
+ Address: Suite D
29
+ City: Arlington Heights
30
+ StateProv: IL
31
+ PostalCode: 60005
32
+ Country: US
33
+ RegDate: 2011-03-04
34
+ Updated: 2011-06-23
35
+ Comment: http://www.gigenet.com
36
+ Ref: http://whois.arin.net/rest/org/DMPL
37
+
38
+ ReferralServer: rwhois://rwhois.servernap.net:4321
39
+
40
+ OrgAbuseHandle: ABUSE2935-ARIN
41
+ OrgAbuseName: Abuse Department
42
+ OrgAbusePhone: +1-800-561-2656
43
+ OrgAbuseEmail: abuse@gigenet.com
44
+ OrgAbuseRef: http://whois.arin.net/rest/poc/ABUSE2935-ARIN
45
+
46
+ OrgNOCHandle: IPADM152-ARIN
47
+ OrgNOCName: IP Administrator
48
+ OrgNOCPhone: +1-800-561-2656
49
+ OrgNOCEmail: ip-admin@coloquest.com
50
+ OrgNOCRef: http://whois.arin.net/rest/poc/IPADM152-ARIN
51
+
52
+ OrgTechHandle: IPADM152-ARIN
53
+ OrgTechName: IP Administrator
54
+ OrgTechPhone: +1-800-561-2656
55
+ OrgTechEmail: ip-admin@coloquest.com
56
+ OrgTechRef: http://whois.arin.net/rest/poc/IPADM152-ARIN
57
+
58
+
59
+ #
60
+ # ARIN WHOIS data and services are subject to the Terms of Use
61
+ # available at: https://www.arin.net/whois_tou.html
62
+ #
63
+
@@ -0,0 +1,63 @@
1
+
2
+ #
3
+ # ARIN WHOIS data and services are subject to the Terms of Use
4
+ # available at: https://www.arin.net/whois_tou.html
5
+ #
6
+
7
+
8
+ #
9
+ # The following results may also be obtained via:
10
+ # http://whois.arin.net/rest/nets;q=69.65.39.166?showDetails=true&showARIN=false&ext=netref2
11
+ #
12
+
13
+ NetRange: 69.65.0.0 - 69.65.63.255
14
+ CIDR: 69.65.0.0/18
15
+ OriginAS: AS32181
16
+ NetName: IPNAP
17
+ NetHandle: NET-69-65-0-0-1
18
+ Parent: NET-69-0-0-0-0
19
+ NetType: Direct Allocation
20
+ Comment: www.gigenet.com
21
+ RegDate: 2003-07-30
22
+ Updated: 2013-05-09
23
+ Ref: http://whois.arin.net/rest/net/NET-69-65-0-0-1
24
+
25
+ OrgName: GigeNET
26
+ OrgId: DMPL
27
+ Address: 545 E Algonquin Rd
28
+ Address: Suite D
29
+ City: Arlington Heights
30
+ StateProv: IL
31
+ PostalCode: 60005
32
+ Country: US
33
+ RegDate: 2011-03-04
34
+ Updated: 2011-06-23
35
+ Comment: http://www.gigenet.com
36
+ Ref: http://whois.arin.net/rest/org/DMPL
37
+
38
+ ReferralServer: rwhois://rwhois.servernap.net:4321
39
+
40
+ OrgAbuseHandle: ABUSE2935-ARIN
41
+ OrgAbuseName: Abuse Department
42
+ OrgAbusePhone: +1-800-561-2656
43
+ OrgAbuseEmail: abuse@gigenet.com
44
+ OrgAbuseRef: http://whois.arin.net/rest/poc/ABUSE2935-ARIN
45
+
46
+ OrgNOCHandle: IPADM152-ARIN
47
+ OrgNOCName: IP Administrator
48
+ OrgNOCPhone: +1-800-561-2656
49
+ OrgNOCEmail: ip-admin@coloquest.com
50
+ OrgNOCRef: http://whois.arin.net/rest/poc/IPADM152-ARIN
51
+
52
+ OrgTechHandle: IPADM152-ARIN
53
+ OrgTechName: IP Administrator
54
+ OrgTechPhone: +1-800-561-2656
55
+ OrgTechEmail: ip-admin@coloquest.com
56
+ OrgTechRef: http://whois.arin.net/rest/poc/IPADM152-ARIN
57
+
58
+
59
+ #
60
+ # ARIN WHOIS data and services are subject to the Terms of Use
61
+ # available at: https://www.arin.net/whois_tou.html
62
+ #
63
+
@@ -0,0 +1,56 @@
1
+ #
2
+ # Query terms are ambiguous. The query is assumed to be:
3
+ # "n 130.66.76.222"
4
+ #
5
+ # Use "?" to get help.
6
+ #
7
+
8
+ #
9
+ # The following results may also be obtained via:
10
+ # http://whois.arin.net/rest/nets;q=130.66.76.222?showDetails=true&showARIN=false&ext=netref2
11
+ #
12
+
13
+ NetRange: 130.66.0.0 - 130.67.255.255
14
+ CIDR: 130.66.0.0/15
15
+ OriginAS:
16
+ NetName: RIPE-ERX-130-66-0-0
17
+ NetHandle: NET-130-66-0-0-1
18
+ Parent: NET-130-0-0-0-0
19
+ NetType: Early Registrations, Transferred to RIPE NCC
20
+ Comment: These addresses have been further assigned to users in
21
+ Comment: the RIPE NCC region. Contact information can be found in
22
+ Comment: the RIPE database at http://www.ripe.net/whois
23
+ RegDate: 2003-11-12
24
+ Updated: 2003-11-12
25
+ Ref: http://whois.arin.net/rest/net/NET-130-66-0-0-1
26
+
27
+ OrgName: RIPE Network Coordination Centre
28
+ OrgId: RIPE
29
+ Address: P.O. Box 10096
30
+ City: Amsterdam
31
+ StateProv:
32
+ PostalCode: 1001EB
33
+ Country: NL
34
+ RegDate:
35
+ Updated: 2011-09-24
36
+ Ref: http://whois.arin.net/rest/org/RIPE
37
+
38
+ ReferralServer: whois://whois.ripe.net:43
39
+
40
+ OrgAbuseHandle: RNO29-ARIN
41
+ OrgAbuseName: RIPE NCC Operations
42
+ OrgAbusePhone: +31 20 535 4444
43
+ OrgAbuseEmail: hostmaster@ripe.net
44
+ OrgAbuseRef: http://whois.arin.net/rest/poc/RNO29-ARIN
45
+
46
+ OrgTechHandle: RNO29-ARIN
47
+ OrgTechName: RIPE NCC Operations
48
+ OrgTechPhone: +31 20 535 4444
49
+ OrgTechEmail: hostmaster@ripe.net
50
+ OrgTechRef: http://whois.arin.net/rest/poc/RNO29-ARIN
51
+
52
+ #
53
+ # ARIN WHOIS data and services are subject to the Terms of Use
54
+ # available at: https://www.arin.net/whois_tou.html
55
+ #
56
+