!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:\xampp\xampp\htdocs\jaime\Xcode\PHPandMySQL\   drwxrwxrwx
Free 7.27 GB of 239.26 GB (3.04%)
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:     8.php (1.26 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
function & connectToDb ($host,$dbUser,$dbPass,$dbName) {
    
// Make connection to MySQL server
    
if (!$dbConn = @mysql_connect($host$dbUser$dbPass))
        return 
false;

    
// Select the database
    
if ( !@mysql_select_db($dbName) )
        return 
false;

    return 
$dbConn;
}

$host='localhost';   // Hostname of MySQL server
$dbUser='harryf';    // Username for MySQL
$dbPass='secret';    // Password for user
$dbName='sitepoint'// Database name

// Connect to MySQL
$dbConn=& connectToDb($host,$dbUser,$dbPass,$dbName);

$title='How to insert data';
$body='This is the body of the article';
$author='HarryF';

// A query to select an article
$sql="SELECT article_id FROM articles WHERE title='How to insert data'";

if (!
$queryResource=mysql_query($sql,$dbConn)) {
    
trigger_error ('Query error '.mysql_error().' SQL: '.$sql);
}

// Fetch a single row from the result
$row=mysql_fetch_array($queryResource,MYSQL_ASSOC);

// A new title
$title='How to update data';

$sql="UPDATE
        articles
      SET
        title='"
.$title."'
      WHERE
        article_id='"
.$row['article_id']."'";
        

if (!
$queryResource=mysql_query($sql,$dbConn)) {
    
trigger_error ('Query error '.mysql_error().' SQL: '.$sql);
}
?>

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