Просмотр файла passgen/index.php

Размер файла: 2.38Kb
<?php 
require_once "../includes/start.php";
require_once "../includes/functions.php";
require_once "../includes/header.php";
include_once "../themes/".$config['themes']."/index.php";
error_reporting(0);
list($msec,$sec)=explode(chr(32),microtime()); 
$headtime=$sec+$msec;
$i=file_get_contents('prosm.txt');
$i=intval($i)+1;
$file=fopen('prosm.txt',"w");
fputs($file,$i);
fclose($file);
include_once '../head.php';
echo "<title>Генератор паролей!</title>
</head><body>";
echo '<div class="b">Генератор паролей!</div>';
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="post" name="ps">';

if(isset($_POST['ps'])) {
$ps=trim(intval($_POST['ps']))+1;
if($ps==1 or $ps>41) {echo '<span class="red">Введены не цифры или длинна пароля слишком велика! Максимум 40 символов!</span><br/>';}else{
$abc=array('1'=>'A','2'=>'a','3'=>'B','4'=>'b','5'=>'C','6'=>'c','7'=>'D','8'=>'d','9'=>'E','10'=>'e','11'=>'F','12'=>'f','13'=>'G','14'=>'g','15'=>'H','16'=>'H','17'=>'J','18'=>'j','19'=>'K','20'=>'k','21'=>'L','22'=>'l','23'=>'M','24'=>'m','24'=>'N','25'=>'n','26'=>'O','27'=>'o','28'=>'P','29'=>'p','30'=>'Q','31'=>'q','32'=>'R','33'=>'r','34'=>'S','35'=>'s','36'=>'T','37'=>'t','38'=>'U','39'=>'u','40'=>'V','41'=>'v','42'=>'W','43'=>'w','44'=>'X','45'=>'x','46'=>'Y','47'=>'y','48'=>'Z','49'=>'z','50'=>'1','51'=>'2','52'=>'3','53'=>'4','54'=>'6','55'=>'7','56'=>'8','57'=>'9','58'=>'0'); 
$r=rand(0,99999);
$f=$r.".txt";
$file=fopen($f,"a+");
if ($file) {
echo 'Ваш пароль:<br/><span class="yellow">';
$c=count($abc);
for($i=1; $i<$ps; $i++) {
$r=rand(1,$c);
echo $abc[$r];
fputs($file,$abc[$r]);
}
fclose($file);
$file=file_get_contents($f);
echo '</span><br/>
Или  скопируйте его:<br/>
<textarea class="c" cols="1" rows="1">'.$file.'</textarea><br/>';
unlink($f);
}else{echo '<span class="red"><b>Поставьте права на папку со скриптом 777</b></span><br/>';}
}
$ps=$ps-1;}
echo 'Длина желаемого пароля:<br/>
<input class="c" name="ps" type="text" maxlength="3" value="'.$ps.'" />симв.<br/>
<input class="d" type="submit" value="Придумать" />
</form>';
echo '<br /><img src="'.BASEDIR.'../images/img/act_home.gif" alt="image" /> <a href="'.BASEDIR.'../index.php?'.SID.'">На главную</a>';

include_once "../themes/".$config['themes']."/foot.php";
?>