Whois.php
8.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php
//
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group |
// | Portions Copyright (c) 1980, 1993 The Regents of the University of |
// | California. All rights reserved. |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: Seamus Venasse <seamus.venasse@polaris.ca> |
// +----------------------------------------------------------------------+
//
// $Id$
//
// Whois Class
//
require_once('PEAR.php');
/**
* Looks up records in the databases maintained by several Network Information
* Centres (NICs). This class uses PEAR's Net_Socket:: class.
*
* @version 1.0
* @author Seamus Venasse <seamus.venasse@polaris.ca>
* @package Net
* @access public
*/
class Net_Whois extends PEAR {
// {{{ properties
/**
* List of NICs to query
*
* @var array
* @access private
*/
var $_nicServers = array (
"NICHOST" => "whois.crsnic.net",
"INICHOST" => "whois.networksolutions.com",
"DNICHOST" => "whois.nic.mil",
"GNICHOST" => "whois.nic.gov",
"ANICHOST" => "whois.arin.net",
"RNICHOST" => "whois.ripe.net",
"PNICHOST" => "whois.apnic.net",
"RUNICHOST" => "whois.ripn.net",
"MNICHOST" => "whois.ra.net",
"QNICHOST_TAIL" => ".whois-servers.net",
"SNICHOST" => "whois.6bone.net",
"BNICHOST" => "whois.registro.br"
);
/**
* Search string of server to search on
*
* @var string
* @access private
*/
var $_whoisServerID = "Whois Server: ";
/**
* Server to search for IP address lookups
*
* @var array
* @access private
*/
var $_ipNicServers = array ("RNICHOST", "PNICHOST", "BNICHOST");
/**
* List of error codes and text
*
* @var array
* @access private
*/
var $_errorCodes = array (
010 => 'Unable to create a socket object',
011 => 'Unable to open socket',
012 => 'Write to socket failed',
013 => 'Read from socket failed'
);
// }}}
// {{{ constructor
/**
* Constructs a new Net_Whois object
*
* @access public
*/
function Net_Whois() {
$this->PEAR();
}
// }}}
// {{{ query()
/**
* Connect to the necessary servers to perform a domain whois query. Prefix
* queries with a "!" to lookup information in InterNIC handle database.
* Add a "-arin" suffix to queries to lookup information in ARIN handle
* database.
*
* @param $domain string IP address or host name
* @param $userWhoisServer string server to query (optional)
* @access public
* @return mixed returns a PEAR_Error on failure, or a string on success
*/
function query($domain, $userWhoisServer = null) {
$domain = trim($domain);
if (isset($userWhoisServer)) {
$whoisServer = $userWhoisServer;
} elseif (preg_match("/^!.*/", $domain)) {
$whoisServer = $this->_nicServers["INICHOST"];
} elseif (preg_match("/.*?-arin/i", $domain)) {
$whoisServer = $this->_nicServers["ANICHOST"];
} elseif (preg_match('/\.gov$/i', $domain)) {
$whoisServer = $this->_nicServers["GNICHOST"];
} elseif (preg_match('/\.mil$/i', $domain)) {
$whoisServer = $this->_nicServers["DNICHOST"];
} else {
$whoisServer = $this->_chooseServer($domain);
}
$whoisData = $this->_connect($whoisServer, $domain);
if (PEAR::isError($whoisData)) {
return $whoisData;
}
return $whoisData;
}
// }}}
// {{{ queryAPNIC()
/**
* Use the Asia/Pacific Network Information Center (APNIC) database.
* It contains network numbers used in East Asia, Australia, New
* Zealand, and the Pacific islands.
*
* @param $ipAddress string IP address
* @access public
* @return mixed returns a PEAR_Error on failure, or a string on success
*/
function queryAPNIC($domain) {
return $this->query($domain, $this->_nicServers["PNICHOST"]);
}
// }}}
// {{{ queryIPv6()
/**
* Use the IPv6 Resource Center (6bone) database. It contains network
* names and addresses for the IPv6 network.
*
* @param $domain string IP address or host name
* @access public
* @return mixed returns a PEAR_Error on failure, or a string on success
*/
function queryIPv6($domain) {
return $this->query($domain, $thiis->_nicServers["SNICHOST"]);
}
// }}}
// {{{ queryRADB()
/**
* Use the Route Arbiter Database (RADB) database. It contains
* route policy specifications for a large number of operators'
* networks.
*
* @param $ipAddress string IP address
* @access public
* @return mixed returns a PEAR_Error on failure, or a string on success
*/
function queryRADB($ipAddress) {
return $this->query($ipAddress, $this->_nicServers["MNICHOST"]);
}
// }}}
// {{{ _chooseServer()
/**
* Determines the correct server to connect to based upon the domin
*
* @param $domain string IP address or host name
* @access private
* @return string whois server host name
*/
function _chooseServer($domain) {
if (!strpos($domain, ".")) {
return $this->_nicServers["NICHOST"];
}
$pieces = explode(".", $domain);
$TLD = $pieces[count($pieces)-1];
if (is_numeric($TLD)) {
$whoisServer = $this->_nicServers["ANICHOST"];
} else {
$whoisServer = $TLD . $this->_nicServers["QNICHOST_TAIL"];
}
return $whoisServer;
}
// }}}
// {{{ _connect()
/**
* Connects to the whois server and retrieves domain information
*
* @param $nicServer string FQDN of whois server to query
* @param $domain string domain name to query
* @access private
* @return mixed returns a PEAR_Error on failure, string of whois data on success
*/
function _connect($nicServer, $domain) {
include_once 'Net/Socket.php';
if (PEAR::isError($socket = new Net_Socket())) {
return new PEAR_Error($this->_errorCodes[010]);
}
if (PEAR::isError($socket->connect($nicServer, getservbyname('whois', 'tcp')))) {
return new PEAR_Error($this->_errorCodes[011]);
}
$socket->setBlocking(false);
if (PEAR::isError($socket->writeLine($domain))) {
return new PEAR_Error($this->_errorCodes[012]);
}
$nHost = null;
$whoisData = $socket->readAll();
if (PEAR::isError($whoisData)) {
return new PEAR_Error($this->_errorCodes[013]);
}
$data = explode("\n", $whoisData);
foreach ($data as $line) {
$line = rtrim($line);
// check for whois server redirection
if (!isset($nHost)) {
if (preg_match("/" . $this->_whoisServerID . "(.*)/", $line, $matches)) {
$nHost = $matches[1];
} elseif ($nicServer == $this->_nicServers["ANICHOST"]) {
foreach ($this->_ipNicServers as $ipNicServer) {
if (strstr($line, $ipNicServer)) {
$nHost = $ipNicServer;
}
}
}
}
}
// this should fail, but we'll call it anyway and ignore the error
$socket->disconnect();
if ($nHost) {
$tmpBuffer = $this->_connect($nHost, $domain);
if (PEAR::isError($tmpBuffer)) {
return $tmpBuffer;
}
$whoisData .= $tmpBuffer;
}
return $whoisData;
}
// }}}
}
?>