!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:\xampp\xampp\htdocs\jaime\Xcode\DesignPatterns\   drwxrwxrwx
Free 7.27 GB of 239.26 GB (3.04%)
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:     8.php (1.51 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Validate the form
if ( isset ($_POST['submit']) ) {
    
// A array to store errors
    
$errors = array();

    
// Check the incoming data
    
if ( $_POST['user'] < '6' ) {
        
$errors[]='Username is too short';
    }
    if ( 
$_POST['pass'] < '6' ) {
        
$errors[]='Password is too short';
    }
    if ( 
$_POST['pass'] != $_POST['conf'] ) {
        
$errors[]='Passwords do not match';
    }
    if ( !
preg_match('/^[a-z0-9._-]+@[a-z0-9.-]+\.[a-z]{2,4}$/i',
        
$_POST['email']) ) {
        
$errors[]='Invalid Email address';
    }
}
?>
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Form </title>
<meta http-equiv="Content-type" content="text/html"
    charset="iso-8859-1" />
</head>
<body>
<b>Please enter your details:</b><br />
<form action="<?php echo ( $_SERVER['PHP_SELF'] ); ?>" method="post">
Username: <input type="text" name="user" /><br />
Password: <input type="password" name="pass" /><br />
Confirm: <input type="password" name="conf" /><br />
Email: <input type="text" name="email" /><br />
<input type="submit" name="submit" value="Submit Form" />
</form>
<?php
if ( isset($errors) && count($errors) > ) {
    echo ( 
"<b>The following errors occurred:</b><br />\n" );
    echo ( 
"<ul>\n" );
    foreach ( 
$errors as $error ) {
        echo ( 
"<li>".$error."</li>\n" );
    }
    echo ( 
"</ul>\n" );
}
?>
</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 ]--