!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)

E:\xampp\xampp\php\PEAR\Zend\Wildfire\Plugin\FirePhp\   drwxrwxrwx
Free 7.25 GB of 239.26 GB (3.03%)
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:     TableMessage.php (4.26 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category   Zend
 * @package    Zend_Wildfire
 * @subpackage Plugin
 * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: TableMessage.php 18951 2009-11-12 16:26:19Z alexander $
 */

/** Zend_Wildfire_Plugin_FirePhp */
require_once 'Zend/Wildfire/Plugin/FirePhp.php';

/** Zend_Wildfire_Plugin_FirePhp_Message */
require_once 'Zend/Wildfire/Plugin/FirePhp/Message.php';

/**
 * A message envelope that can be updated for the duration of the requet before
 * it gets flushed at the end of the request.
 *
 * @category   Zend
 * @package    Zend_Wildfire
 * @subpackage Plugin
 * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 */
class Zend_Wildfire_Plugin_FirePhp_TableMessage extends Zend_Wildfire_Plugin_FirePhp_Message
{
    
/**
     * The header of the table containing all columns
     * @var array
     */
    
protected $_header null;

    
/**
     * The rows of the table
     * $var array
     */
    
protected $_rows = array();

    
/**
     * Constructor
     *
     * @param string $label The label of the table
     */
    
function __construct($label)
    {
        
parent::__construct(Zend_Wildfire_Plugin_FirePhp::TABLEnull);
        
$this->setLabel($label);
    }

    
/**
     * Set the table header
     *
     * @param array $header The header columns
     * @return void
     */
    
public function setHeader($header)
    {
        
$this->_header $header;
    }

    
/**
     * Append a row to the end of the table.
     *
     * @param array $row An array of column values representing a row.
     * @return void
     */
    
public function addRow($row)
    {
        
$this->_rows[] = $row;
    }

    
/**
     * Get the actual message to be sent in its final format.
     *
     * @return mixed Returns the message to be sent.
     */
    
public function getMessage()
    {
        
$table $this->_rows;
        if(
$this->_header) {
            
array_unshift($table,$this->_header);
        }
        return 
$table;
    }

    
/**
     * Returns the row at the given index
     *
     * @param integer $index The index of the row
     * @return array Returns the row
     * @throws Zend_Wildfire_Exception
     */
    
public function getRowAt($index)
    {
        
$count $this->getRowCount();

        if(
$index || $index $count-1) {
            require_once 
'Zend/Wildfire/Exception.php';
            throw new 
Zend_Wildfire_Exception('Row index('.$index.') out of bounds('.$count.')!');
        }

        return 
$this->_rows[$index];
    }

    
/**
     * Sets the row on the given index to a new row
     *
     * @param integer $index The index of the row
     * @param array $row The new data for the row
     * @throws Zend_Wildfire_Exception
     */
    
public function setRowAt($index$row)
    {
        
$count $this->getRowCount();

        if(
$index || $index $count-1) {
            require_once 
'Zend/Wildfire/Exception.php';
            throw new 
Zend_Wildfire_Exception('Row index('.$index.') out of bounds('.$count.')!');
        }

        
$this->_rows[$index] = $row;
    }

    
/**
     * Returns the number of rows
     *
     * @return integer
     */
    
public function getRowCount()
    {
        return 
count($this->_rows);
    }

    
/**
     * Returns the last row of the table
     *
     * @return array Returns the last row
     * @throws Zend_Wildfire_Exception
     */
    
public function getLastRow()
    {
        
$count $this->getRowCount();

        if(
$count==0) {
            require_once 
'Zend/Wildfire/Exception.php';
            throw new 
Zend_Wildfire_Exception('Cannot get last row as no rows exist!');
        }

        return 
$this->_rows[$count-1];
    }
}

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