!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:     Netdna.php (13.62 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

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

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

define('W3TC_CDN_NETDNA_URL''netdna-cdn.com');

/**
 * Class W3_Cdn_Mirror_Netdna
 */
class W3_Cdn_Mirror_Netdna extends W3_Cdn_Mirror {
    
/**
     * PHP5 Constructor
     *
     * @param array $config
     */
    
function __construct($config = array()) {
        
$config array_merge(array(
            
'authorization_key' => '',
            
'alias' => '',
            
'consumerkey' => '',
            
'consumersecret' => '',
            
'zone_id' => 0
        
), $config);
        
$split_keys explode('+'$config['authorization_key']);
        if (
sizeof($split_keys)==3)
            list(
$config['alias'], $config['consumerkey'], $config['consumersecret']) = $split_keys;
        
parent::__construct($config);
    }

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

            return 
false;
        }

        if (empty(
$this->_config['alias']) || empty($this->_config['consumerkey']) || empty($this->_config['consumersecret'])) {
            
$results $this->_get_results($filesW3TC_CDN_RESULT_HALT__('Malformed Authorization Key.''w3-total-cache'));

            return 
false;
        }


        if (!
class_exists('NetDNA')) {
            
w3_require_once(W3TC_LIB_NETDNA_DIR '/NetDNA.php');
        }

        
$api = new NetDNA($this->_config['alias'], $this->_config['consumerkey'], $this->_config['consumersecret']);

        
$results = array();
        
$local_path $remote_path '';
        
$domain_is_valid 0;
        
$found_domain false;
        try {
            if (
$this->_config['zone_id'] != 0)
                
$zone_id $this->_config['zone_id'];
            else {
                
$zone_id $api->get_zone_id(w3_get_home_url());
            }

            if (
$zone_id == 0) {
                
$zone_id $api->get_zone_id(w3_get_domain_url());
            }

            if (
$zone_id == 0) {
                
$zone_id $api->get_zone_id(str_replace('://''://www.'w3_get_domain_url()));
            }

            if (
$zone_id == || is_null($zone_id)) {
                if (
w3_get_domain_url() == w3_get_home_url())
                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s.''w3-total-cache'), trim(w3_get_home_url(), '/')));
                else
                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s or %s.''w3-total-cache'), trim(w3_get_home_url(), '/'), trim(w3_get_domain_url(), '/')));
                return !
$this->_is_error($results);
            }

            
$pullzone =  json_decode($api->get('/zones/pull.json/' $zone_id));

            try {
                if (
preg_match("(200|201)"$pullzone->code)) {
                    
$custom_domains_full json_decode($api->get('/zones/pull/' $pullzone->data->pullzone->id '/customdomains.json'));
                    
$custom_domains = array();
                    foreach (
$custom_domains_full->data->customdomains as $custom_domain_full) {
                        
$custom_domains[]= $custom_domain_full->custom_domain;
                    }

                    foreach (
$files as $file) {
                        
$local_path $file['local_path'];
                        
$remote_path $file['remote_path'];

                        
$domain_is_valid 0;
                        
$found_domain false;
                        if (
$pullzone->data->pullzone->name '.' $this->_config['alias'] . '.' W3TC_CDN_NETDNA_URL === $this->get_domain($local_path)
                            || 
in_array($this->get_domain($local_path), $custom_domains)) {
                            try {
                                
$params = array('file' => '/' $local_path);

                                
$file_purge json_decode($api->delete('/zones/pull.json/' $pullzone->data->pullzone->id '/cache'$params));

                                if(
preg_match("(200|201)"$file_purge->code)) {
                                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_OK'OK');
                                } else {
                                    if(
preg_match("(401|500)"$file_purge->code)) {
                                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('Failed with error code %s Please check your alias, consumer key, and private key.''w3-total-cache'), $file_purge->code));
                                    } else {
                                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('Failed with error code ''w3-total-cache') . $file_purge->code);
                                    }
                                }

                                
$found_domain true;
                            } catch (
W3tcWpHttpException $e) {
                                
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALTsprintf(__('Unable to purge (%s).''w3-total-cache'), $e->getMessage()));
                            }
                        } else {
                            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No registered CNAMEs match %s.''w3-total-cache'), $this->get_domain($local_path)));
                            
$domain_is_valid++;
                            break;
                        }
                    }
                } else {
                    if (
preg_match("(401|500)"$pullzone->code)) {
                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('Failed with error code %s. Please check your alias, consumer key, and private key.''w3-total-cache'), $pullzone->code));
                    } else {
                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('Failed with error code ''w3-total-cache') . $pullzone->code);
                    }
                }
            } catch (
W3tcWpHttpException $e) {
                
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALTsprintf(__('Unable to purge (%s).''w3-total-cache'), $e->getMessage()));
            }

        } catch (
W3tcWpHttpException $e) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALT__('Failure to pull zone: ''w3-total-cache') . $e->getMessage());
        } 

        if (
$domain_is_valid && !$found_domain) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('No zones match custom domain.''w3-total-cache'));
        } elseif (!
$found_domain) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s.''w3-total-cache'), trim(w3_get_home_url(), '/')));
        }

        return !
$this->_is_error($results);
    }

    
/**
     * Purge CDN completely
     * @param $results
     * @return bool
     */
    
function purge_all(&$results) {
        if (empty(
$this->_config['authorization_key'])) {
            
$results $this->_get_results(array(), W3TC_CDN_RESULT_HALT,  __('Empty Authorization Key.''w3-total-cache'));

            return 
false;
        }

        if (empty(
$this->_config['alias']) || empty($this->_config['consumerkey']) || empty($this->_config['consumersecret'])) {
            
$results $this->_get_results(array(), W3TC_CDN_RESULT_HALT,  __('Malformed Authorization Key.''w3-total-cache'));

            return 
false;
        }

        if (!
class_exists('NetDNA')) {
            
w3_require_once(W3TC_LIB_NETDNA_DIR '/NetDNA.php');
        }

        
$api = new NetDNA($this->_config['alias'], $this->_config['consumerkey'], $this->_config['consumersecret']);

        
$results = array();
        
$local_path $remote_path '';
        
$domain_is_valid 0;
        
$found_domain false;

        try {
            if (
$this->_config['zone_id'] != 0)
                
$zone_id $this->_config['zone_id'];
            else {
                
$zone_id $api->get_zone_id(w3_get_home_url());
            }

            if (
$zone_id == 0) {
                
$zone_id $api->get_zone_id(w3_get_domain_url());
            }


            if (
$zone_id == 0) {
                
$zone_id $api->get_zone_id(str_replace('://''://www.'w3_get_domain_url()));
            }

            if (
$zone_id == || is_null($zone_id)) {
                if (
w3_get_domain_url() == w3_get_home_url())
                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s.''w3-total-cache'), trim(w3_get_home_url(), '/')));
                else
                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s or %s.''w3-total-cache'), trim(w3_get_home_url(), '/'), trim(w3_get_domain_url(), '/')));
                return !
$this->_is_error($results);
            }

            
$pullzone =  json_decode($api->get('/zones/pull.json/' $zone_id));

            try {
                if (
preg_match("(200|201)"$pullzone->code)) {
                    
$custom_domains_full json_decode($api->get('/zones/pull/' $pullzone->data->pullzone->id '/customdomains.json'));
                    
$custom_domains = array();
                    foreach (
$custom_domains_full->data->customdomains as $custom_domain_full) {
                        
$custom_domains[]= $custom_domain_full->custom_domain;
                    }

                    
$local_path 'all';
                    
$remote_path 'all';

                    
$domain_is_valid 0;
                    
$found_domain false;
                    if (
$pullzone->data->pullzone->name '.' $this->_config['alias'] . '.' W3TC_CDN_NETDNA_URL === $this->get_domain($local_path)
                        || 
in_array($this->get_domain($local_path), $custom_domains)) {
                        try {
                            
$params = array('file' => '/' $local_path);

                            
$file_purge json_decode($api->delete('/zones/pull.json/' $pullzone->data->pullzone->id '/cache'));

                            if(
preg_match("(200|201)"$file_purge->code)) {
                                
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_OK__('OK''w3-total-cache'));
                            } else {
                                if(
preg_match("(401|500)"$file_purge->code)) {
                                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('Failed with error code %s. Please check your alias, consumer key, and private key.''w3-total-cache'), $file_purge->code));
                                } else {
                                    
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('Failed with error code ''w3-total-cache') . $file_purge->code);
                                }
                            }

                            
$found_domain true;
                        } catch (
W3tcWpHttpException $e) {
                            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALTsprintf(__('Unable to purge (%s).''w3-total-cache'), $e->getMessage()));
                        }
                    } else {
                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No registered CNAMEs match %s.''w3-total-cache'), $this->get_domain($local_path)));
                        return !
$this->_is_error($results);
                    }
                } else {
                    if (
preg_match("(401|500)"$pullzone->code)) {
                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('Failed with error code %s. Please check your alias, consumer key, and private key.''w3-total-cache'), $pullzone->code));
                    } else {
                        
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('Failed with error code ''w3-total-cache') . $pullzone->code);
                    }
                }
            } catch (
W3tcWpHttpException $e) {
                
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALTsprintf(__('Unable to purge (%s).''w3-total-cache'), $e->getMessage()));
            }

        } catch (
W3tcWpHttpException $e) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_HALT__('Failure to pull zone: ''w3-total-cache') . $e->getMessage());
        }

        if (
$domain_is_valid && !$found_domain) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERROR__('No zones match custom domain.''w3-total-cache'));
        } elseif (!
$found_domain) {
            
$results[] = $this->_get_result($local_path$remote_pathW3TC_CDN_RESULT_ERRORsprintf(__('No zones match site: %s.''w3-total-cache'), trim(w3_get_home_url(), '/')));
        }

        return !
$this->_is_error($results);
    }

    
/**
     * If the CDN supports fullpage mirroring
     * @return bool
     */
    
function supports_full_page_mirroring() {
        return 
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.0312 ]--