<?php
include '../system/func.php';
$title="Сканер сайтов";
include '../system/head.php';
title($title);
@setcookie("lastaddress",$_GET['addr'],time()+691200);
if($_GET['mode']){
$url = htmlspecialchars(trim($_GET['addr']));
if(!preg_match("#^https?://#iU",$url)) $url= "http://".$url;
$purl = @parse_url($url);
//get extens. file
$ext = strtolower(strrchr($url,'.'));
if($ext=='.jpg' or $ext=='.gif' or $ext=='.bmp' or $ext=='.ico' or $ext=='.png'){
echo "
<div class='menu'> <img src='".$url."' alt=''/>
</div> ";
include '../system/foot.php';
exit;
}
$cnt = @file_get_contents($url);
//charset processing
preg_match("#encoding ?= ?('|\")([^'\"]+)('|\")#i",$cnt,$ch);
if(empty($ch[2])){
preg_match("#charset ?= ?([^'\"]+)('|\")#i",$cnt,$ch);
$ch[2] = $ch[1];
}
if($ch[2]!=='utf-8')
$cnt = iconv($ch[2],"utf-8//IGNORE",$cnt);
if(!$cnt){ echo"<div class='err'> Невозможно обратится к адресу (".$url.")<br />
Проверьте правильность введенного вами адреса и проверьте, доступен ли он с обычного браузера</div>";
echo '<div class="menu">« <a href="scaner.php">Назад</a></div>';
include '../system/foot.php';
exit;
}
//icon processing
preg_match("#<link ?rel ?= ?('|\") ?shortcut icon('|\") +href ?= ?('|\")([^'\"]+)('|\")#i",$cnt,$out);
if(empty($out[4])) $out[4] = '/favicon.ico';
//title processing
preg_match("#< ?title ?>(.+)< ?/ ?title ?>#i",$cnt,$title);
if(empty($title[1])){
preg_match("# ?title ?= ?('|\")([^'\"]+)('|\")#i",$cnt,$title);
$title[1] = $title[2];
}
//stat info
echo"
<div class='menu'>Адрес<br/> ".strtolower($url)."<br/>
Загаловок <b>".htmlspecialchars($title[1])."</b></div>";
if($_GET['mode']=='scan'){
//replaces
$cnt = preg_replace("#@import ?('|\")/?([^;'\"]+)#is","<a href='scaner.php?addr=http://".$purl['host']."/".$purl['path']."&mode=scan'>\\2</a>",$cnt);
//x-ray
$cnt = htmlspecialchars($cnt);
//absolute site
$cnt = preg_replace("#<link ?rel ?= ?('|") ?stylesheet('|") +href ?= ?('|")/([a-z/\.\?\#0-9-_\+\(\)]+)('|")(.+)( ?/ ?>)+#i","<a href='scaner.php?addr=http://".$purl['host']."/\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#((<img ?src ?= ?)('|"))/([a-z/\.\?\#0-9]+)(('|")(.+)/ ?>)#i","\\1<a href='scaner.php?addr=http://".trim($purl['host'],'/')."/\\4&mode=scan'>\\4</a>\\5",$cnt);
$cnt = preg_replace("#<script(.*) +(src|href) ?= ?('|")/([a-z/\.\?\#0-9-_\+\(\)]+)('|")(.+)( ?>)+#i","<a href='scaner.php?addr=http://".$purl['host']."/\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#(<a(.*) +href ?= ?('|"))/([a-z/\.\?\#0-9-_\+\(\)]+)(('|")(.+)( ?>)+)#i","\\1<a href='scaner.php?addr=http://".$purl['host']."/\\4&mode=scan'>\\4</a>\\5",$cnt);
//localy
$cnt = preg_replace("#<link ?rel ?= ?('|") ?stylesheet('|") +href ?= ?('|")([^/][a-z/\.\?\#0-9-_\+\(\)]+)('|")(.+)( ?/ ?>)+#is","<a href='scaner.php?addr=http://".$purl['host']."/".$purl['path']."\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#((<img ?src ?= ?)('|"))([^/][a-z/\.\?\#0-9]+)(('|")(.+)/ ?>)#is","\\1<a href='scaner.php?addr=http://".trim($purl['host'],'/')."/".$purl['path']."\\4&mode=scan'>\\4</a>\\5",$cnt);
$cnt = preg_replace("#<script([^;]) +(src|href) ?= ?('|")([^/][a-z/\.\?\#0-9\-_\+\(\)]+)('|")(.+)( ?>)+#is","<a href='scaner.php?addr=http://".$purl['host']."/".$purl['path']."\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#(<a(.*) +href ?= ?('|"))([^/][a-z/\.\?\#0-9\-_\+\(\),]+)(('|")(.+)( ?>)+)#is","\\1<a href='scaner.php?addr=http://".$purl['host']."/".$purl['path']."\\4&mode=scan'>\\4</a>\\5",$cnt);
//url
$cnt = preg_replace("#<link ?rel ?= ?('|") ?stylesheet('|") +href ?= ?('|")(http?://[a-z/\.\?\#0-9-_\+\(\)]+)('|")(.+)( ?/ ?>)+#i","<a href='scaner.php?addr=\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#((<img ?src ?= ?)('|"))(http://[a-z/\.\?\#0-9]+)(('|")(.+)/ ?>)#i","\\1<a href='scaner.php?addr=\\4&mode=scan'>\\4</a>\\5",$cnt);
$cnt = preg_replace("#<script(.*) +(src|href) ?= ?('|")(http://[a-z/\.\?\#0-9\-_\+\(\)]+)('|")(.+)( ?>)+#i","<a href='scaner.php?addr=\\4&mode=scan'>\\0</a>",$cnt);
$cnt = preg_replace("#(<a(.*) +href ?= ?('|"))(http://[a-z/\.\?\#0-9\-_\+\(\),]+)(('|")(.+)( ?>)+)#i","\\1<a href='scaner.php?addr=\\4&mode=scan'>\\4</a>\\5",$cnt);
}
switch($_GET['mode']){
case'scan':
echo"<div class='menu'>";
echo nl2br($cnt);
echo"</div>";
echo '<div class="menu">« <a href="scaner.php">Назад</a></div>';
//scan
break;
case 'copyscan':
echo"<div class='menu'><textarea name='text' cols='80' rows='15' style='width: 93%'>".nl2br($cnt)."</textarea></div>";
echo '<div class="menu">« <a href="scaner.php">Назад</a></div>';
break;
default:
include '../system/foot.php';
exit;
}
}else{
//radioactivity - ray
$_COOKIE['lastaddress'] = htmlspecialchars($_COOKIE['lastaddress']);
echo"
<div class='menu'>
<form method='get' action='scaner.php'>
<b>Адрес:</b><br />
<input type='text' name='addr' id='addr' value='{$_COOKIE['lastaddress']}'/><br />
<input type='submit' id='button' value='Сканировать'/><br/>
<input type='radio' id='copyradio' class='formradio' name='mode' value='scan' checked>Обычный<br />
<input type='radio' id='copyradio' class='formradio' name='mode' value='copyscan'>Копировать</form></div>";
echo '<div class="menu">« <a href="index.php">Назад</a></div>';
}
include '../system/foot.php';
?>