!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:     4.php (2 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Switch off error notices
error_reporting (E_ALL E_NOTICE);

// Instantiate an instance of DOM from file
$dom domxml_open_file('http://www.sitepoint.com/rss.php');

// Get the root RDF element
$rdf $dom->document_element();

// Fetch all the <item /> elements from the document
$items $rdf->get_elements_by_tagname('item');

// Start displaying a table
echo ( "<table width=\"450\" border=\"1\">\n" );

// Loop through each item
foreach ( $items as $item ) {

    
// Get the children of each item
    
$itemNodes $item->child_nodes();

    
// Loop through the children
    
foreach ( $itemNodes as $itemNode ) {

        
// Get the contents of each child
        
$itemContents=$itemNode->child_nodes();

        
// Deal with the specific elements we want
        
switch ( strtoupper($itemNode->tagname) ) {

            case 
'TITLE':
                
// Loop through the contents to find the text node
                
foreach ( $itemContents as $itemContent ) {
                    
// If it's a text node, display the HTML
                    
if( $itemContent->node_type() == XML_TEXT_NODE ) {
                        echo ( 
"<tr>\n<td><b>".$itemContent->content .
                            
"</b><br />\n" );
                    }
                }
                break;

            case 
'DESCRIPTION':
                foreach ( 
$itemContents as $itemContent ) {
                    if( 
$itemContent->node_type() == XML_TEXT_NODE ) {
                        echo ( 
$itemContent->content ."<br />\n" );
                    }
                }
                break;

            case 
'LINK':
                foreach ( 
$itemContents as $itemContent ) {
                    if( 
$itemContent->node_type() == XML_TEXT_NODE ) {
                        echo ( 
"<a href=\"".$itemContent->content."\">".
                            
$itemContent->content."</a><br />\n" );
                    }
                }
                break;

        }
    }
}
echo ( 
"</table>\n" );
?>

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