!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:\copia nuevo\php\pear\adodb\tests\   drwxrwxrwx
Free 7.32 GB of 239.26 GB (3.06%)
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:     tmssql.php (1.92 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
error_reporting
(E_ALL);
ini_set('mssql.datetimeconvert',0); 

function 
tmssql()
{
    print 
"<h3>mssql</h3>";
    
$db mssql_connect('JAGUAR\vsdotnet','adodb','natsoft') or die('No Connection');
    
mssql_select_db('northwind',$db);
    
    
$rs mssql_query('select getdate() as date',$db);
    
$o mssql_fetch_row($rs);
    
print_r($o);
    
mssql_free_result($rs);
    
    print 
"<p>Delete</p>"flush();
    
$rs2 mssql_query('delete from adoxyz',$db);
    
$p mssql_num_rows($rs2);
    
mssql_free_result($rs2);

}

function 
tpear()
{
include_once(
'DB.php');

    print 
"<h3>PEAR</h3>";
    
$username 'adodb';
    
$password 'natsoft';
    
$hostname 'JAGUAR\vsdotnet';
    
$databasename 'northwind';
    
    
$dsn "mssql://$username:$password@$hostname/$databasename";
    
$conn DB::connect($dsn);
    print 
"date=".$conn->GetOne('select getdate()')."<br>";
    @
$conn->query('create table tester (id integer)');
    print 
"<p>Delete</p>"flush();
    
$rs $conn->query('delete from tester');
    print 
"date=".$conn->GetOne('select getdate()')."<br>";
}

function 
tadodb()
{
include_once(
'../adodb.inc.php');

    print 
"<h3>ADOdb</h3>";
    
$conn NewADOConnection('mssql');
    
$conn->Connect('JAGUAR\vsdotnet','adodb','natsoft','northwind');
//    $conn->debug=1;
    
print "date=".$conn->GetOne('select getdate()')."<br>";
    
$conn->Execute('create table tester (id integer)');
    print 
"<p>Delete</p>"flush();
    
$rs $conn->Execute('delete from tester');
    print 
"date=".$conn->GetOne('select getdate()')."<br>";
}


$ACCEPTIP '127.0.0.1';

$remote $_SERVER["REMOTE_ADDR"]; 

if (!empty(
$ACCEPTIP))
 if (
$remote != '127.0.0.1' && $remote != $ACCEPTIP
     die(
"Unauthorised client: '$remote'");
    
?>
<a href=tmssql.php?do=tmssql>mssql</a>
<a href=tmssql.php?do=tpear>pear</a>
<a href=tmssql.php?do=tadodb>adodb</a>
<?php
if (!empty($_GET['do'])) {
    
$do $_GET['do'];
    switch(
$do) {
    case 
'tpear':
    case 
'tadodb':
    case 
'tmssql':
        
$do();
    }
}
?>

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