!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/axess/phppgadmin/libraries/adodb/   drwxrwxr-x
Free 11.53 GB of 97.11 GB (11.87%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     server.php (2.29 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/** 
 * @version V4.65 22 July 2005 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
 * Released under both BSD license and Lesser GPL library license. 
  Whenever there is any discrepancy between the two licenses, 
  the BSD license will take precedence. 
 */
 
/* Documentation on usage is at http://php.weblogs.com/adodb_csv
 *
 * Legal query string parameters:
 * 
 * sql = holds sql string
 * nrows = number of rows to return 
 * offset = skip offset rows of data
 * fetch = $ADODB_FETCH_MODE
 * 
 * example:
 *
 * http://localhost/php/server.php?select+*+from+table&nrows=10&offset=2
 */


/* 
 * Define the IP address you want to accept requests from 
 * as a security measure. If blank we accept anyone promisciously!
 */
$ACCEPTIP '';

/*
 * Connection parameters
 */
$driver 'mysql';
$host 'localhost'// DSN for odbc
$uid 'root';
$pwd '';
$database 'test';

/*============================ DO NOT MODIFY BELOW HERE =================================*/
// $sep must match csv2rs() in adodb.inc.php
$sep ' :::: ';

include(
'./adodb.inc.php');
include_once(
ADODB_DIR.'/adodb-csvlib.inc.php');

function 
err($s)
{
    die(
'**** '.$s.' ');
}

// undo stupid magic quotes
function undomq(&$m
{
    if (
get_magic_quotes_gpc()) {
        
// undo the damage
        
$m str_replace('\\\\','\\',$m);
        
$m str_replace('\"','"',$m);
        
$m str_replace('\\\'','\'',$m);
        
    }
    return 
$m;
}

///////////////////////////////////////// DEFINITIONS


$remote $_SERVER["REMOTE_ADDR"]; 
 
if (empty(
$_GET['sql'])) err('No SQL');

if (!empty(
$ACCEPTIP))
 if (
$remote != '127.0.0.1' && $remote != $ACCEPTIP
     
err("Unauthorised client: '$remote'");


$conn = &ADONewConnection($driver);

if (!
$conn->Connect($host,$uid,$pwd,$database)) err($conn->ErrorNo(). $sep $conn->ErrorMsg());
$sql undomq($_GET['sql']);

if (isset(
$_GET['fetch']))
    
$ADODB_FETCH_MODE $_GET['fetch'];
    
if (isset(
$_GET['nrows'])) {
    
$nrows $_GET['nrows'];
    
$offset = isset($_GET['offset']) ? $_GET['offset'] : -1;
    
$rs $conn->SelectLimit($sql,$nrows,$offset);
} else 
    
$rs $conn->Execute($sql);
if (
$rs){ 
    
//$rs->timeToLive = 1;
    
echo _rs2serialize($rs,$conn,$sql);
    
$rs->Close();
} else
    
err($conn->ErrorNo(). $sep .$conn->ErrorMsg());

?>

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