!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\Caching\   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:     4.php (1.23 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include the PEAR::Cache_Lite Output class
require_once('Cache/Lite/Output.php');

// Define options for Cache_Lite
$options = array(
    
'cacheDir' => './cache/',
    
'fileNameProtection' => false,
    
'writeControl' => TRUE,
    
'readControl' => TRUE,
    
'readControlType' => 'strlen'
);

// Instantiate Cache_Lite_Output
$cache = new Cache_Lite_Output($options);

// Set lifetime for this "chunk"
$cache->setLifeTime(604800);

// Start the cache with an id and group for this chunk
if ( !$cache->start('header','Static') ) {
?>
    <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title> PEAR::Cache_Lite example </title>
    </head>
    <body>
    <h2>PEAR::Cache_Lite example</h2>
    The header time is now: <?php echo (date('H:i:s')); ?><br />
    <?php
// Stop and write the cache
    
$cache->end();
}

$cache->setLifeTime(5);
if ( !
$cache->start('body','Dynamic') ) {
    echo ( 
'The body time is now: '.date('H:i:s').'<br />' );
    
$cache->end();
}

$cache->setLifeTime(604800);
if ( !
$cache->start('footer','Static') ) {
    
?>
    The footer time is now: <?php echo (date('H:i:s')); ?><br />
    </body>
    </html>
    <?php
    $cache
->end();
}
?>

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