!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\DB\NestedSet\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.36%)
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:     DB.php (2.82 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//
// +----------------------------------------------------------------------+
// | PEAR :: DB_NestedSet_DB                                              |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available at through the world-wide-web at                           |
// | http://www.php.net/license/2_02.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: Daniel Khan <dk@webcluster.at>                              |
// +----------------------------------------------------------------------+
//
// $Id: DB.php,v 1.4 2003/05/25 00:46:46 datenpunk Exp $
//

require_once 'DB.php';

// {{{ DB_NestedSet_DB:: class

/**
 * Wrapper class for PEAR::DB
 *
 * @author       Daniel Khan <dk@webcluster.at>
 * @package      DB_NestedSet
 * @version      $Revision: 1.4 $
 * @access       public
 */

// }}}
class DB_NestedSet_DB extends DB_NestedSet {
    
// {{{ properties

    /**
     * @var object Db object
     */
    
var $db;

    
// }}}
    // {{{ constructor

    /**
     * Constructor
     *
     * @param mixed $dsn DSN as PEAR dsn URI or dsn Array
     * @param array $params Database column fields which should be returned  
     * 
     */
    
function DB_NestedSet_DB($dsn$params = array()) 
    {
        
$this->_debugMessage('DB_NestedSet_DB($dsn, $params = array())');
        
$this->DB_NestedSet($params);
        
$this->db =& $this->_db_Connect($dsn);
        
$this->db->setFetchMode(DB_FETCHMODE_ASSOC);
    }

    
// }}}
    // {{{ destructor

    /**
     * Destructor
     */
    
function _DB_NestedSet_DB() 
    {
        
$this->_debugMessage('_DB_NestedSet_DB()');
        
$this->_DB_NestedSet();
        
$this->_db_Disconnect();
    }

    
// }}}
    // {{{ _db_Connect()

    /**
    * Connects to the db
    *
    * @return object DB The database object
    * @access private
    */
    
function &_db_Connect($dsn
    {
        
$this->_debugMessage('_db_Connect($dsn)');
        if (
is_object($this->db)) {
            return 
$this->db;
        }

        
$db =& DB::connect($dsn);
        
$this->_testFatalAbort($db__FILE____LINE__);
        return 
$db;
    }

    
// }}}
    // {{{ _db_Disconnect()

    /**
    * Disconnects from db
    *
    * @return void
    * @access private
    */    
    
function _db_Disconnect() 
    {
        
$this->_debugMessage('_db_Disconnect()');
        if (
is_object($this->db)) {
            @
$this->db->disconnect(); 
        }

        return 
true;
    }        

    
// }}}
}

?>

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