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

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/doku/axrepos/ax/pgadmin/classes/database/   drwxr-xr-x
Free 11.54 GB of 97.11 GB (11.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Connection.php (3.48 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Class to represent a database connection
 *
 * $Id: Connection.php,v 1.15 2008/02/18 21:42:47 ioguix Exp $
 */

include_once('./classes/database/ADODB_base.php');

class 
Connection {

    var 
$conn;
    
    
// The backend platform.  Set to UNKNOWN by default.
    
var $platform 'UNKNOWN';
    
    
/**
     * Creates a new connection.  Will actually make a database connection.
     * @param $fetchMode Defaults to associative.  Override for different behaviour
     */
    
function Connection($host$port$sslmode$user$password$database$fetchMode ADODB_FETCH_ASSOC) {
        
$this->conn = &ADONewConnection('postgres7');
        
$this->conn->setFetchMode($fetchMode);

        
// Ignore host if null
        
if ($host === null || $host == '')
            if (
$port !== null && $port != '')
                
$pghost ':'.$port;
            else
                
$pghost '';
        else
            
$pghost "{$host}:{$port}";

        
// Add sslmode to $pghost as needed
                
if (($sslmode == 'disable') || ($sslmode == 'allow') || ($sslmode == 'prefer') || ($sslmode == 'require')) {
                        
$pghost .= ':'.$sslmode;
                } elseif (
$sslmode == 'legacy') {
                        
$pghost .= ' requiressl=1';
                }

        
$this->conn->connect($pghost$user$password$database);
    }

    
/**
     * Gets the name of the correct database driver to use.  As a side effect,
     * sets the platform.
     * @param (return-by-ref) $description A description of the database and version
     * @return The class name of the driver eg. Postgres73
     * @return null if version is < 7.0
     * @return -3 Database-specific failure
     */
    
function getDriver(&$description) {
        
// If we're on a recent enough PHP 5, and against PostgreSQL 7.4 or
        // higher, we don't need to query for the version.  This gives a great
        // speed up.                
        
if (function_exists('pg_version')) {
            
$v pg_version($this->conn->_connectionID);
            if (isset(
$v['server'])) $version $v['server'];            
        }
        
        
// If we didn't manage to get the version without a query, query...
        
if (!isset($version)) {
            
$adodb = new ADODB_base($this->conn);
    
            
$sql "SELECT VERSION() AS version";
            
$field $adodb->selectField($sql'version');
    
            
// Check the platform, if it's mingw, set it
            
if (preg_match('/ mingw /i'$field))
                
$this->platform 'MINGW';
    
            
$params explode(' '$field);
            if (!isset(
$params[1])) return -3;
    
            
$version $params[1]; // eg. 7.3.2
        
}
        
        
$description "PostgreSQL {$version}";

        
// Detect version and choose appropriate database driver
        // If unknown version, then default to latest driver
        // All 6.x versions default to oldest driver, even though
        // it won't work with those versions.
        
if ((int)substr($version01) < 7)
            return 
null;
        elseif (
strpos($version'8.2') === 0)
            return 
'Postgres82';
        elseif (
strpos($version'8.1') === 0)
            return 
'Postgres81';
        elseif (
strpos($version'8.0') === || strpos($version'7.5') === 0)
            return 
'Postgres80';
        elseif (
strpos($version'7.4') === 0)
            return 
'Postgres74';
        elseif (
strpos($version'7.3') === 0)
            return 
'Postgres73';
        elseif (
strpos($version'7.2') === 0)
            return 
'Postgres72';
        elseif (
strpos($version'7.1') === 0)
            return 
'Postgres71';
        elseif (
strpos($version'7.0') === 0)
            return 
'Postgres';
        else
            return 
'Postgres83';
    }

    
/** 
     * Get the last error in the connection
     * @return Error string
     */
    
function getLastError() {        
        if (
function_exists('pg_errormessage'))
            return 
pg_errormessage($this->conn->_connectionID);
        else
            return 
pg_last_error($this->conn->_connectionID);
    }
}

?>

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