!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)

C:\Users\DMZ\Desktop\cumbreclima\wp-content\plugins\w3-total-cache\lib\W3\Cache\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
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:     File.php (8.17 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * File class
 */
if (!defined('W3TC')) {
    die();
}

define('W3TC_CACHE_FILE_EXPIRE_MAX'2592000);

w3_require_once(W3TC_INC_DIR '/functions/file.php');
w3_require_once(W3TC_LIB_W3_DIR '/Cache/Base.php');

/**
 * Class W3_Cache_File
 */
class W3_Cache_File extends W3_Cache_Base {
    
/**
     * Path to cache dir
     *
     * @var string
     */
    
protected $_cache_dir '';

    
/**
     * Directory to flush
     * @var string
     */
    
protected $_flush_dir '';
    
/**
     * Exclude files
     *
     * @var array
     */
    
protected $_exclude = array();

    
/**
     * Flush time limit
     *
     * @var int
     */
    
protected $_flush_timelimit 0;

    
/**
     * File locking
     *
     * @var boolean
     */
    
protected $_locking false;

    
/**
     * If path should be generated based on wp_hash
     *
     * @var bool
     */
    
protected $_use_wp_hash false;

    
/**
     * Constructor
     *
     * @param array $config
     */
    
function __construct($config = array()) {
        
parent::__construct($config);
        if (isset(
$config['cache_dir']))
            
$this->_cache_dir trim($config['cache_dir']);
        else
            
$this->_cache_dir w3_cache_blog_dir($config['section'], $config['blog_id']);

        
$this->_exclude = isset($config['exclude']) ? (array) $config['exclude'] : array();
        
$this->_flush_timelimit = isset($config['flush_timelimit']) ? (int) $config['flush_timelimit'] : 180;
        
$this->_locking = isset($config['locking']) ? (boolean) $config['locking'] : false;

        if (isset(
$config['flush_dir']))
            
$this->_flush_dir $config['flush_dir'];
        else {
            if (
$config['blog_id'] <= 0) {
                
// clear whole section if we operate on master cache
                
$this->_flush_dir w3_cache_dir($config['section']);
            } else
                
$this->_flush_dir $this->_cache_dir;
        }
        if (isset(
$config['use_wp_hash']) && $config['use_wp_hash'] && function_exists('wp_hash'))
            
$this->_use_wp_hash true;
    }

    
/**
     * Adds data
     *
     * @param string $key
     * @param mixed $var
     * @param integer $expire
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean
     */
    
function add($key, &$var$expire 0$group '') {
        if (
$this->get($key$group) === false) {
            return 
$this->set($key$var$expire$group);
        }

        return 
false;
    }

    
/**
     * Sets data
     *
     * @param string $key
     * @param mixed $var
     * @param integer $expire
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean
     */
    
function set($key$var$expire 0$group '') {
        
$key $this->get_item_key($key);

        
$sub_path $this->_get_path($key);
        
$path $this->_cache_dir DIRECTORY_SEPARATOR . ($group $group DIRECTORY_SEPARATOR '') . $sub_path;

        
$dir dirname($path);

        if (!@
is_dir($dir)) {
            if (!
w3_mkdir_from($dirW3TC_CACHE_DIR))
                return 
false;
        }

        
$fp = @fopen($path'wb');

        if (!
$fp)
            return 
false;
        
        if (
$this->_locking)
            @
flock($fpLOCK_EX);

        if (
$expire <= || $expire W3TC_CACHE_FILE_EXPIRE_MAX)
            
$expire W3TC_CACHE_FILE_EXPIRE_MAX;

        
$expires_at time() + $expire;
        @
fputs($fppack('L'$expires_at));
        @
fputs($fp'<?php exit; ?>');
        @
fputs($fp, @serialize($var));
        @
fclose($fp);

        if (
$this->_locking)
            @
flock($fpLOCK_UN);

        return 
true;
    }

    
/**
     * Returns data
     *
     * @param string $key
     * @param string $group Used to differentiate between groups of cache values
     * @return mixed
     */
    
function get_with_old($key$group '') {
        
$has_old_data false;

        
$key $this->get_item_key($key);

        
$path $this->_cache_dir DIRECTORY_SEPARATOR . ($group $group DIRECTORY_SEPARATOR '') . $this->_get_path($key);
        if (!
is_readable($path))
            return array(
null$has_old_data);

        
$fp = @fopen($path'rb');
        if (!
$fp)
            return array(
null$has_old_data);

        if (
$this->_locking)
            @
flock($fpLOCK_SH);

        
$expires_at = @fread($fp4);
        
$data_unserialized null;

        if (
$expires_at !== false) {
            list(, 
$expires_at) = @unpack('L'$expires_at);

            if (
time() > $expires_at) {
                if (
$this->_use_expired_data) {
                    
// update expiration so other threads will use old data
                    
$fp2 = @fopen($path'cb');

                    if (
$fp2) {
                        @
fputs($fp2pack('L'time() + 30));
                        @
fclose($fp2);
                    }
                    
$has_old_data true;
                }
            } else {
                
$data '';

                while (!@
feof($fp)) {
                    
$data .= @fread($fp4096);
                }
                
$data substr($data14);
                
$data_unserialized = @unserialize($data);
            }

        }

        if (
$this->_locking)
            @
flock($fpLOCK_UN);

        @
fclose($fp);

        return array(
$data_unserialized$has_old_data);
    }

    
/**
     * Replaces data
     *
     * @param string $key
     * @param mixed $var
     * @param integer $expire
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean
     */
    
function replace($key, &$var$expire 0$group '') {
        if (
$this->get($key$group) !== false) {
            return 
$this->set($key$var$expire$group);
        }

        return 
false;
    }

    
/**
     * Deletes data
     *
     * @param string $key
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean
     */
    
function delete($key$group '') {
        
$key $this->get_item_key($key);

        
$path $this->_cache_dir DIRECTORY_SEPARATOR . ($group $group DIRECTORY_SEPARATOR '') . $this->_get_path($key);

        if (!
file_exists($path))
            return 
true;

        if (
$this->_use_expired_data) {
            
$fp = @fopen($path'cb');

            if (
$fp) {
                if (
$this->_locking)
                    @
flock($fpLOCK_EX);

                @
fputs($fppack('L'0));   // make it expired
                
@fclose($fp);

                if (
$this->_locking)
                    @
flock($fpLOCK_UN);
                return 
true;
            }

        }

        return @
unlink($path);
    }

    
/**
     * Key to delete, deletes .old and primary if exists.
     * @param string $key
     *
     * @return bool
     */
    
function hard_delete($key) {
        
$key $this->get_item_key($key);
        
$path $this->_cache_dir DIRECTORY_SEPARATOR $this->_get_path($key);
        return @
unlink($path);
    }

    
/**
     * Flushes all data
     *
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean
     */
    
function flush($group '') {
        @
set_time_limit($this->_flush_timelimit);
        
$flush_dir $group $this->_cache_dir DIRECTORY_SEPARATOR $group DIRECTORY_SEPARATOR $this->_flush_dir;
        
w3_emptydir($flush_dir$this->_exclude);
        return 
true;
    }

    
/**
     * Returns modification time of cache file
     *
     * @param integer $key
     * @param string $group Used to differentiate between groups of cache values
     * @return boolean|string
     */
    
function mtime($key$group '') {
        
$path $this->_cache_dir DIRECTORY_SEPARATOR . ($group $group DIRECTORY_SEPARATOR '') . $this->_get_path($key);

        if (
file_exists($path)) {
            return @
filemtime($path);
        }

        return 
false;
    }

    
/**
     * Returns file path for key
     *
     * @param string $key
     * @return string
     */
    
function _get_path($key) {
        if (
$this->_use_wp_hash)
            
$hash wp_hash($key);
        else
            
$hash md5($key);

        
$path sprintf('%s/%s/%s.php'substr($hash03), substr($hash33), $hash);

        return 
$path;
    }
}

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