/usr/share/php/Net/Whois.php is in php-net-whois 1.0.5-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | <?php
/**
* Whois.php
*
* PHP Version 4 and 5
*
* 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 3.01 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/3_01.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.
*
* @category Net
* @package Net_Whois
* @author Seamus Venasse <seamus.venasse@polaris.ca>
* @copyright 1997-2003 The PHP Group
* @copyright 1980-1993 The Regents of the University of California (Portions)
* @license http://www.php.net/license/3_01.txt PHP 3.01
* @version CVS: $Id: Whois.php 314693 2011-08-10 00:31:45Z kguest $
* @link http://pear.php.net/package/Net_Whois
*/
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.
*
* @category Net
* @package Net_Whois
* @author Seamus Venasse <seamus.venasse@polaris.ca>
* @license http://www.php.net/license/3_01.txt PHP 3.01
* @link http://pear.php.net/package/Net_Whois
*/
class Net_Whois extends PEAR
{
// {{{ properties
/**
* Retrieve authoritative definition only
*
* @var boolean
* @access public
*/
var $authoritative = false;
/**
* Port for whois servers
*
* @var int
* @access public
*/
var $port = 43;
/**
* See options for stream_context_create.
*
* @param array
* @access public
*/
var $options = null;
/**
* List of NICs to query
*
* @var array
* @access private
*/
var $_nicServers = array (
'NICHOST' => 'whois.crsnic.net.',
'INICHOST' => 'whois.networksolutions.com.',
'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',
014 => 'Specified server is null or empty',
);
/**
* Number of seconds to wait on socket connections before assuming
* there's no more data from the Whois server. Defaults to no timeout.
* @var integer $timeout
* @access private
*/
var $_timeout = false;
// }}}
// {{{ constructor
/**
* Constructs a new Net_Whois object
*
* @access public
*/
function Net_Whois()
{
$this->PEAR();
$this->setPort();
$this->setAuthoritative();
$this->setTimeout();
}
// }}}
// {{{ setTimeout()
/**
* Set timeout value - number of seconds afterwhich an attempt to connect
* to a whois server should be aborted.
*
* @param integer $timeout false is also an acceptable value
*
* @access public
* @return void
*/
function setTimeout($timeout = false)
{
$this->_timeout = $timeout;
}
// }}}
// {{{ getTimeout()
/**
* Retrieve timeout value
*
* @access public
*
* @return mixed either false or an integer value
*/
function getTimeout()
{
return $this->_timeout;
}
// }}}
// {{{ setTimeout()
/**
* setAuthoritative
*
* @param bool $authoritative defaults to false
*
* @access public
* @return void
*/
function setAuthoritative($authoritative = false)
{
$this->authoritative = $authoritative;
}
// }}}
// {{{ getAuthoritative()
/**
* getAuthoritative
*
* @return bool Query for authoritative result?
*/
function getAuthoritative()
{
return (bool) $this->authoritative;
}
// }}}
/**
* set which port should be used
*
* @param integer $port Port to use
*
* @access public
* @return void
*/
function setPort($port = false)
{
$port = is_numeric($port) ? $port : getservbyname('whois', 'tcp');
$this->port = $port ? $port : 43;
}
// }}}
// {{{ getPort()
/**
* Retrieve which port to connect to.
*
* @return integer port to connect to
*/
function getPort()
{
return $this->port;
}
// }}}
/**
* setOptions
*
* @param mixed $options
* @return void
*/
function setOptions($options)
{
if ((!is_null($options)) && (!is_array($options))) {
return;
}
$this->options = $options;
}
// {{{ getOptions()
/**
* Retrieve which port to connect to.
*
* @return array
*/
function getOptions()
{
return $this->options;
}
// }}}
// {{{ 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 string $domain IP address or host name
* @param string $userWhoisServer 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'];
} else {
$whoisServer = $this->_chooseServer($domain);
}
$_domain = $this->authoritative ? 'domain ' . $domain : $domain;
$whoisData = $this->_connect($whoisServer, $_domain);
if (PEAR::isError($whoisData)) {
return $whoisData;
}
if ($this->authoritative) {
$pattern = '/\s+' . preg_quote($this->_whoisServerID) . '(.+?)\n/i';
if (preg_match($pattern, $whoisData, $matches)) {
$whoisData = $this->_connect(trim(array_pop($matches)), $domain);
}
}
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 string $domain IP address or host name
*
* @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 string $domain 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, $this->_nicServers['SNICHOST']);
}
// }}}
// {{{ queryRADB()
/**
* Use the Route Arbiter Database (RADB) database. It contains
* route policy specifications for a large number of operators'
* networks.
*
* @param string $ipAddress 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 domain
*
* @param string $query IP address or host name
*
* @access private
* @return string whois server host name
*/
function _chooseServer($query)
{
if (!strpos($query, '.')) {
return $this->_nicServers['NICHOST'];
}
$TLD = substr($query, strrpos($query, '.') + 1);
if (is_numeric($TLD)) {
$whoisServer = $this->_nicServers['ANICHOST'];
} else {
$whoisServer = $this->getDomainServer($query);
}
return $whoisServer;
}
// }}}
// {{{ getDomainServer()
/**
* Determines the correct whois server to connect to based upon the domain
*
* @param string $q domain name
*
* @access public
* @return string whois server ip address
*/
function getDomainServer($q)
{
$tail = $this->_nicServers['QNICHOST_TAIL'];
if (strchr($q, '.')) {
//get the last 2 parts
$q = array_reverse(explode('.', $q));
$a = array($q[1] . '.' . $q[0], $q[0]);
} else {
$a = array($q);
}
foreach ($a as $q) {
//check host has real ip
$q = gethostbyname($q . $tail);
if (filter_var($q, FILTER_VALIDATE_IP)) {
return $q;
}
}
}
// }}}
// {{{ _connect()
/**
* Connects to the whois server and retrieves domain information
*
* @param string $nicServer FQDN of whois server to query
* @param string $domain 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 (is_null($nicServer) || (empty($nicServer))) {
return new PEAR_Error($this->_errorCodes[014], 14);
}
if (PEAR::isError($socket = new Net_Socket())) {
return new PEAR_Error($this->_errorCodes[010], 10);
}
$result = $socket->connect(
$nicServer,
$this->getPort(),
null,
$this->getTimeout(),
$this->getOptions()
);
if (PEAR::isError($result)) {
return new PEAR_Error($this->_errorCodes[011], 11);
}
$socket->setBlocking(false);
// Querying denic.de requires some special coaxing for a domain query.
// http://www.denic.de/en/faq-single/2978/1115.html
if (substr($domain, -3) == '.de') {
if (PEAR::isError($socket->writeLine("-T dn,ace " . $domain))) {
return new PEAR_Error($this->_errorCodes[012], 12);
}
} else {
if (PEAR::isError($socket->writeLine($domain))) {
return new PEAR_Error($this->_errorCodes[012], 12);
}
}
$nHost = null;
$whoisData = $socket->readAll();
if (PEAR::isError($whoisData)) {
return new PEAR_Error($this->_errorCodes[013], 13);
}
$data = explode("\n", $whoisData);
foreach ($data as $line) {
$line = rtrim($line);
// check for whois server redirection
if (!isset($nHost)) {
$pattern='/'.$this->_whoisServerID.'([a-z0-9.]+)\n/i';
if (preg_match($pattern, $line, $matches)) {
$nHost = $matches[1];
} elseif ($nicServer == $this->_nicServers['ANICHOST']) {
foreach ($this->_ipNicServers as $ipNicServer) {
$server = trim($this->_nicServers[$ipNicServer], '.');
if (strstr($line, $server)) {
$nHost = $this->_nicServers[$ipNicServer];
}
}
}
}
}
// this should fail, but we'll call it anyway and ignore the error
$socket->disconnect();
if ($nHost && $nHost != $nicServer) {
$tmpBuffer = $this->_connect($nHost, $domain);
if (PEAR::isError($tmpBuffer)) {
return $tmpBuffer;
}
$whoisData .= $tmpBuffer;
}
return $whoisData;
}
// }}}
}
?>
|