Файл: whois/index.php
Строк: 26
<?
define('ROOT','../');
define('GCMS',true);
require_once (ROOT.'system/power.php');
require_once ('whois.php');
$diz -> head('Whois');
$diz -> title('Whois');
if($aut){
?>
<div class="fon"/>
<form method="get">
Адрес<br />
<input type="text" name="domain"><input type="submit" value="WHOIS">
</form></div>
<?
if(isset($_GET["domain"]) && strlen($_GET["domain"])>0)
{
$msg.='<div class="fon"/>';
$target=$_GET["domain"];
$whois=new whois();
$whois->zonelookup($target);
if($whois->ERROR==0)
{
if(is_array($whois->RAWINFO) && count($whois->RAWINFO)>7 && $whois->FOUND==1)
{
$msg.="<p><b>".$target."</b> - <span style='color:red'/>Занят</span><br>IP: ".$whois->IP."</p><pre>";
foreach($whois->RAWINFO AS $str)
{
$msg.=$str."n";
}
$msg.="</pre>";
$msg.="<p>DNS INFO:</p><pre>";
foreach($whois->DNSINFO AS $str)
{
$msg.=$str."n";
}
$msg.="</pre>";
}else
{
$msg.="<p>".$target." - <span style='color:green'/>Свободен</span></p>";
}
}else
{
$msg.="<p>Произошла ошибка</p>";
}
$msg.='</div>';
}
}else header('Location: '.ROOT.'aut.php');
#####Копирайт#######
$diz -> out($msg);
?>