Файл: online-ftp/ftp/system/head.php
Строк: 20
<?php
// ftp by jasis//
//сессия
session_name('ses');
session_start();
$site='http://mirmastera.ru/ftp/';
$maxupload='20000';
function prov($str,$skol=false) {
$str = htmlentities(trim($str), ENT_QUOTES, 'UTF-8');
$str = nl2br($str);
$str = strtr($str, array (
chr(0)=> '',
chr(1)=> '',
chr(2)=> '',
chr(3)=> '',
chr(4)=> '',
chr(5)=> '',
chr(6)=> '',
chr(7)=> '',
chr(8)=> '',
chr(9)=> '',
chr(10)=> '',
chr(11)=> '',
chr(12)=> '',
chr(13)=> '',
chr(14)=> '',
chr(15)=> '',
chr(16)=> '',
chr(17)=> '',
chr(18)=> '',
chr(19)=> '',
chr(20)=> '',
chr(21)=> '',
chr(22)=> '',
chr(23)=> '',
chr(24)=> '',
chr(25)=> '',
chr(26)=> '',
chr(27)=> '',
chr(28)=> '',
chr(29)=> '',
chr(30)=> '',
chr(31)=> ''
));
$str = str_replace("'", "'", $str);
$str = str_replace('\', "\", $str);
$str = str_replace("|", "I", $str);
$str = str_replace("||", "I", $str);
$str = str_replace("/\$/", "$", $str);
if(!empty($skol)){$str=mb_substr($str,0,$skol,'UTF-8');}
return $str;
}
//ob_start();
//error_reporting(0);
@$act=prov($_GET['act']);
@$title=prov($_GET['title']);
header('Content-type:text/html;charset=UTF-8');
echo '
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head><title>ONline wap ftp менеджер - '.@$title.'</title>
<link rel="stylesheet" type="text/css" href="/design/style.css">
<style type="text/css">
</style>
<script type="text/javascript" src="'.$site.'system/js.js"></script>
</head>
<body><div class="logo" align="center">Мобильный ftp file manager</div>
<div class="ct">';
?>