!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\XML\   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:     15.php (1.06 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Define paths to XML and XSL documents (MODIFY THIS!)
// Note For Windows prepend with "file://" e.g.;
// $xml = 'file://c:/htdocs/XML/articles.xml';
$xml='/full/path/to/sitepoint/XML/articles.xml';
$xsl='/full/path/to/sitepoint/XML/article2sql.xsl';

// Define the XSLT error handler
function xslt_error_handler ($xp$errNo$level$fields) {
    
$errMsg 'Error #'.$errNo.', Level '.$level.', Fields:<br />';
    if ( 
is_array $fields ) ) {
        foreach ( 
$fields as $key => $value ) {
            
$errMsg .= $key .' => '.$value.'<br />';
        }
    } else {
        
$errMsg .= $fields.'<br />';
    }
    
trigger_error ($errMsg);
}

// Instantiate the XSLT processor
$xp xslt_create();

// Set the error handler
xslt_set_error_handler($xp'xslt_error_handler');

// An array of params to pass to the processor
$params = array ( 'tableName'=>'articles' );

// Perform the transform using the PHP variables
$result xslt_process($xp$xml$xsl,null,null,$params);

// Display the result
echo ( "<pre>".$result."</pre>" );
?>

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