!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/site/ipanel/app/core/doctrine/Doctrine/Adapter/   drwxr-xr-x
Free 9.15 GB of 93.48 GB (9.78%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Mock.php (6.9 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: Mock.php 6484 2009-10-12 17:40:41Z jwage $
 *
 * 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, see
 * <http://www.phpdoctrine.org>.
 */

/**
 * Doctrine mock connection adapter. This class is used for special testing purposes.
 *
 * @package     Doctrine
 * @subpackage  Adapter
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link        www.phpdoctrine.org
 * @since       1.0
 * @version     $Revision: 6484 $
 */
class Doctrine_Adapter_Mock implements Doctrine_Adapter_InterfaceCountable
{
    
/**
     * Name of the dbms to mock
     *
     * @var string
     */
    
private $_name;

    
/**
     * Array of queries executed through this instance of the mock adapter
     *
     * @var array $queries
     */
    
private $_queries = array();

    
/**
     * Array of exceptions thrown
     *
     * @var array $exceptions
     */
    
private $_exception = array();

    
/**
     * Bool true/false variable for whether or not the last insert failed
     *
     * @var boolean $lastInsertIdFail
     */
    
private $_lastInsertIdFail false;

    
/**
     * Doctrine mock adapter constructor
     *
     * <code>
     * $conn = new Doctrine_Adapter_Mock('mysql');
     * </code>
     *
     * @param string $name 
     * @return void
     */
    
public function __construct($name null)
    {
        
$this->_name $name;
    }

    
/**
     * Get the name of the dbms used in this instance of the mock adapter
     *
     * @return string $name Name of the dbms
     */
    
public function getName()
    {
        return 
$this->_name;
    }

    
/**
     * Pop the last executed query from the array of executed queries and return it
     *
     * @return string $sql Last executed sql string
     */
    
public function pop()
    {
        return 
array_pop($this->_queries);
    }

    
/**
     * Force an exception in to the array of exceptions
     *
     * @param string $name     Name of exception
     * @param string $message  Message for the exception
     * @param integer $code    Code of the exception
     * @return void
     */
    
public function forceException($name$message ''$code 0)
    {
        
$this->_exception = array($name$message$code);
    }

    
/**
     * Prepare a query statement
     *
     * @param string $query   Query to prepare
     * @return Doctrine_Adapter_Statement_Mock $mock Mock prepared statement
     */
    
public function prepare($query)
    {
        
$mock = new Doctrine_Adapter_Statement_Mock($this$query);
        
$mock->queryString $query;

        return 
$mock;
    }

    
/**
     * Add query to the stack of executed queries
     *
     * @param string $query 
     * @return void
     */
    
public function addQuery($query)
    {
        
$this->_queries[] = $query;
    }

    
/**
     * Fake the execution of query and add it to the stack of executed queries
     *
     * @param string $query 
     * @return Doctrine_Adapter_Statement_Mock $stmt
     */
    
public function query($query)
    {
        
$this->_queries[] = $query;

        
$e    $this->_exception;

        if ( ! empty(
$e)) {
            
$name $e[0];

            
$this->_exception = array();

            throw new 
$name($e[1], $e[2]);
        }

        
$stmt = new Doctrine_Adapter_Statement_Mock($this$query);
        
$stmt->queryString $query;

        return 
$stmt;
    }

    
/**
     * Get all the executed queries
     *
     * @return array $queries Array of all executed queries
     */
    
public function getAll()
    {
        return 
$this->_queries;
    }

    
/**
     * Quote a value for the dbms
     *
     * @param string $input 
     * @return string $quoted
     */
    
public function quote($input)
    {
        return 
"'" addslashes($input) . "'";
    }

    
/**
     * Execute a raw sql statement
     *
     * @param string $statement 
     * @return void
     */
    
public function exec($statement)
    {
        
$this->_queries[] = $statement;

        
$e    $this->_exception;

        if ( ! empty(
$e)) {
            
$name $e[0];

            
$this->_exception = array();

            throw new 
$name($e[1], $e[2]);
        }

        return 
0;
    }

    
/**
     * Force last insert to be failed
     *
     * @param boolean $fail
     * @return void
     */
    
public function forceLastInsertIdFail($fail true)
    {
        if (
$fail) {
            
$this->_lastInsertIdFail true;
        } else {
            
$this->_lastInsertIdFail false;
        }
    }

    
/**
     * Get the id of the last inserted record
     *
     * @return integer $id
     */
    
public function lastInsertId()
    {
        
$this->_queries[] = 'LAST_INSERT_ID()';
        if (
$this->_lastInsertIdFail) {
            return 
null;
        } else {
            return 
1;
        }
    }

    
/**
     * Get the number of queries executed
     *
     * @return integer $count
     */
    
public function count()
    {
        return 
count($this->_queries);
    }

    
/**
     * Begin a transaction
     *
     * @return void
     */
    
public function beginTransaction()
    {
        
$this->_queries[] = 'BEGIN TRANSACTION';
    }

    
/**
     * Commit a transaction
     *
     * @return void
     */
    
public function commit()
    {
        
$this->_queries[] = 'COMMIT';
    }

    
/**
     * Rollback a transaction
     *
     * @return void
     */
    
public function rollBack()
    {
        
$this->_queries[] = 'ROLLBACK';
    }

    public function 
getAttribute($attribute)
    {
        if (
$attribute == Doctrine_Core::ATTR_DRIVER_NAME) {
            return 
strtolower($this->_name);
        }
    }

    public function 
errorCode()
    { }

    public function 
errorInfo()
    { }

    public function 
setAttribute($attribute$value)
    { }

    public function 
sqliteCreateFunction()
    { }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0043 ]--