Файл: get_image.php
Строк: 37
<?php
$host= "picsmo.ru"; $path="/get_image.php?".$_SERVER ['QUERY_STRING'];
$fp=fsockopen($host,80,$errno, $errstr,10);
if(!$fp) { echo "$errstr ($errno)<br/>n"; }else{
$data = "";$post=0; foreach($_POST as $key=>$value){
$post=1; $data.="&$key=$value";} if($data)$data=substr ($data,1);
if($post) $headers = "POST $path HTTP/1.0rn";else
$headers = "GET $path HTTP/1.0rn"; $headers.= "Host: $hostrn";
$headers.= "Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif,image/x-bitmap, */*;q=0.1rn";
$headers.= "Accept-Charset: utf-8;q=0.6 windows-1251;q=0.1*;q=0.1rn";
$headers.= "Accept-Encoding: utf-8rn";
$headers.= "Accept-Language: ru, en;q=0.9rn";
$headers.= "User-Agent: ".$_SERVER ['HTTP_USER_AGENT']."rn";
if($post){ $headers.= "Content-type: application/x-www-form-urlencodedrn";
$headers.= "Content-Length: ".strlen ($data)."rn";
$headers.= "rn"; $headers.= $data;}else $headers.="rn";
$file = '';
@fwrite($fp, $headers); while($file != "rn") $file = @fgets($fp, 128);
$file = ''; while(!feof($fp)) $file.= @fgets($fp, 4096); @fclose($fp); }
##############################################
$file=preg_replace('|<html(.*?)class="zero2">|is', '',$file);
$file=preg_replace('| <div class="sub">Рекомендуем(.*?)</html>|is', '',$file);
//$file=preg_replace('|<div class="sub">(.*?)</html>|is', '',$file);
$file=str_replace('src="/','src="http://picsmo.ru/', $file);
$file=str_replace('href="/c','href="http://picsmo.ru/c', $file);
$file = preg_replace("'<script[^>]*?>.*?</script>'si", "", $file); // убираем скрипты
$file=str_replace('href="/','href="', $file);
$file=str_replace('action="/','action="', $file);
##############################################
echo $file;
?>