!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\DevelopmentTechnique\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
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:     4.php (1.54 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Start Data Access Layer
if ( !mysql_connect('localhost''harryf''secret') ) {
    die (
'Could not connect to database server');
}
if ( !
mysql_select_db('sitepoint') ) {
    die(
'Could not select database');
}
// End Data Access

// Start Presentation Logic
if ( isset($_GET['id']) ) {

    
// Start Application logic
    
$sql "SELECT title, body, published FROM articles WHERE article_id='".
        
$_GET['id']."'";
    
// End Application logic

    // Start Data Access
    
$result mysql_query($sql);
    
$row mysql_fetch_array($result);
    
// End Data Access Layer

    // Start Application logic
    
$date date('Y m d',$row['published']);
    
// End Application logic

    // Start Presentation Logic
    
echo ( "<h1>".$row['title']."</h1>\n" );
    echo ( 
"Published: $date<br />" );
    echo ( 
$row['body']."<br />\n" );
    
// End Presentation Logic

} else {

    
// Start Application logic
    
$sql "SELECT article_id, title FROM articles LIMIT 0,5";
    
// End Application logic

    // Start Data Access
    
$result mysql_query($sql);
    while ( 
$row mysql_fetch_array($result) ) {

        
// Start Application logic
        
$date date('Y m d',$row['published']);
        
// End Application logic

        // Start Presentation Logic
        
echo ( "<a href=\"".$_SERVER['PHP_SELF']."?id=".
            
$row['article_id']."\">".$row['title']."</a>".
            
$date."<br />\n" );
        
// End Presentation Logic

    
}
    
// End Data Access

}
// End Presentation Logic
?>

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