!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\nuevo\htdocs\BLA\boletinlegal\admin\usuarios\   drwxrwxrwx
Free 7.34 GB of 239.26 GB (3.07%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     forgotpass.php (2.19 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * ForgotPass.php
 *
 * This page is for those users who have forgotten their
 * password and want to have a new password generated for
 * them and sent to the email address attached to their
 * account in the database. The new password is not
 * displayed on the website for security purposes.
 *
 * Note: If your server is not properly setup to send
 * mail, then this page is essentially useless and it
 * would be better to not even link to this page from
 * your website.
 *
 * Written by: Jpmaster77 a.k.a. The Grandmaster of C++ (GMC)
 * Last Updated: August 26, 2004
 */
include("include/session.php");
?>

<html>
<title>Jpmaster77's Login Script</title>
<body>

<?php
/**
 * Forgot Password form has been submitted and no errors
 * were found with the form (the username is in the database)
 */
if(isset($_SESSION['forgotpass'])){
   
/**
    * New password was generated for user and sent to user's
    * email address.
    */
   
if($_SESSION['forgotpass']){
      echo 
"<h1>Nuevo password generado</h1>";
      echo 
"<p>Tu nuevo password ha sido generado "
          
."y se enviara al email <br>asociado en tu cuenta. "
          
."<a href=\"index.php\">Inicio</a>.</p>";
   }
   
/**
    * Email could not be sent, therefore password was not
    * edited in the database.
    */
   
else{
      echo 
"<h1>New Password Failure</h1>";
      echo 
"<p>There was an error sending you the "
          
."email with the new password,<br> so your password has not been changed. "
          
."<a href=\"index.php\">Inicio</a>.</p>";
   }
       
   unset(
$_SESSION['forgotpass']);
}
else{

/**
 * Forgot password form is displayed, if error found
 * it is displayed.
 */
?>

<h1>Olvido Password!</h1>
Una nueva contrase&ntilde;a sera generada para ti y ser&aacute; enviada <br>
a tu email, solo ingresa el usuario.<br>
<br>
<?php echo $form->error("user"); ?>
<form action="process.php" method="POST">
<b>Usuario:</b> 
<input type="text" name="user" maxlength="30" value="<?php echo $form->value("user"); ?>">
<input type="hidden" name="subforgot" value="1">
<input type="submit" value="Obtener nuevo Password">
</form>

<?php
}
?>

</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--