Размер файла: 4.13Kb
<?php
////////////////////////////////////////////////////////////////////////////
// -_- W|W PHP-master -_- //
// //
// Copyright 2008 MyIE //
// Create and Design by -_- MyIE //
// Site (web) -_- http://www.phpedited.com //
// Site (wap) -_- http://wap.phpedited.com //
// E-mail (MyIE) -_- [email protected] //
// ICQ (MyIE) -_- 952-11-78 //
// //
// Вы не имеете право убирать копирайт //
// оффициального сайта! //
//This program is free software: you can redistribute it and/or modify //
//it under the terms of the GNU General Public License as published by //
//the Free Software Foundation, either version 3 of the License, or //
//(at your option) any later version. //
// //
//This program is distributed in the hope that it will be useful, //
//but WITHOUT ANY WARRANTY; without even the implied warranty of //
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
//GNU General Public License for more details. //
// //
//You should have received a copy of the GNU General Public License //
//along with this program. If not, see <http://www.gnu.org/licenses/>. //
////////////////////////////////////////////////////////////////////////////
$log=$_GET['log'];
$pass=$_GET['pass'];
$logl = $log;
$logl_len = strlen($logl);
$loglstrim = trim($logl_len);
$passl = $pass;
$passl_len = strlen($passl);
$passl_strim = trim($passl_len);
/////////////////////////////////////////////////////////////////////////////////
////////// каталоги /////////
$dir = opendir ("../wap/lcl/prof/");
$fear=0;
while ( $fil = readdir ($dir))
{
if (( $fil != ".") && ($fil != ".."))
{
if ($log==$fil)
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = '$url/pgs/rgstr.php?action=logest'");
?>
// -->
</script>
<?php
exit;
}
}
}
closedir ($dir);
////////////////////////////////////
if(($loglstrim<3) || ($passl_strim<3))
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = '$url/pgs/rgstr.php?action=regathree'");
?>
// -->
</script>
<?php
exit;
}
if(($loglstrim>10) || ($passl_strim>10))
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = '$url/pgs/rgstr.php?action=regaten'");
?>
// -->
</script>
<?php
exit;
}
if(eregi("[^a-z0-9-]",$log))
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = '$url/pgs/rgstr.php?action=regasimvol'");
?>
// -->
</script>
<?php
exit;
}
$ip=$_SERVER['REMOTE_ADDR'];
echo ("Ваш логин: $log<br>");
echo ("Ваш пароль: $pass<br>");
$file = fopen("../wap/lcl/prof/$log","w+");
if (!$file)
{
echo("Ошибка открытия/создания файла");
}
else
{
fputs ($file,$log." \n");
fputs ($file,$pass." \n");
fputs ($file,"1"." \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file,"0 \n");
fputs ($file,"0 \n");
fputs ($file,"0 \n");
fputs ($file," \n");
fputs ($file," \n");
fputs ($file,$ip." \n");
}
fclose ($file);
$file = fopen("../wap/lcl/priv/$log","w+");
if (!$file)
{
echo("Ошибка открытия/создания файла");
}
else
{
$hourdiff = "0";
$timeadjust = ($hourdiff * 60 * 60);
$melbdate = date("d.m.Y H:i",time() + $timeadjust);
fputs ($file,"Administrator|$melbdate|Я приветствую тебя на нашем портале ;) \n");
}
fclose ($file);
?>