!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\Images\   drwxrwxrwx
Free 7.97 GB of 239.26 GB (3.33%)
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:     13.php (1.02 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include the Session class
require_once('Session/Session.php');

// Instantiate the Session class
$session=new Session();

// Check to see if $viewImages is registered
if ( $session->get('viewImages') ) {

    
// An array of available images
    
$images=array(
        
'sitepoint_logo.jpg',
        
'php-big.png'
        
);

    
// If $_GET['img'] is set and in available...
    
if ( isset ($_GET['img']) && in_array($_GET['img'],$images) ) {

        
// Get the image information
        
$dims=getimagesize('sample_images/'.$_GET['img']);

        
// Send the correct HTTP headers
        
header('content-disposition: inline; filename=' $_GET['img']);
        
header('content-type: '.$dims['mime']); # PHP 4.3.x +
        
header('content-length: ' filesize('sample_images/'.$_GET['img']));

        
// Display the image
        
readfile('sample_images/'.$_GET['img']);

    } else {
        die (
'Invalid image specified');
    }

} else {
    die (
'This image is protected from hotlinking');
}
?>

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