!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)

C:\Intranet\C\xampp\php\PEAR\XML\tests\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
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:     example3.php (1.76 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once 'XML/FastCreate.php';
error_reporting(E_ALL);

// Create XML with the XML_Tree Driver
$x =& XML_FastCreate::factory('XML_Tree',

    array(

        
// Add the doctype of XHTML 1.0 Strict
        
'doctype'    => XML_FASTCREATE_DOCTYPE_XHTML_1_0_STRICT,
        
        
// Export XML to a file (default : /tmp/XML_FastCreate.xml)
        
'file'        => XML_FASTCREATE_FILE,

        
// Check validity with an external program (default: xmllint)
        
'exec'      => XML_FASTCREATE_EXEC,

        
// Make indentation
        
'indent'    => true,
    )
);



$x->html(

    
$x->head(
        
$x->title('Example 3 - XML_FastCreate')
    ),
    
    
$x->body(

        
$x->div(
        
            
$x->h1("XML_FastCreate - Example 3"),
            
            
$x->h3("Driver : ".$x->_driver),
            
            
$x->h3("Control XML with an external DTD validator"),
            
            
$x->h3("Make output indentation"),

            
$x->p(
                
$x->a(array('href'=>$_SERVER['PHP_SELF'].'s'), 
                    
"PHP source file")
            ),
            
            
$x->p(
                
$x->a(array('href'=>'./'), "Others examples")
            )
        ),
        
        
$x->div(

            
// This attributes doesn't exist in the DTD
            
$x->span(array('hello'=>'world'),
                
"Examples of errors DTD validation"
            
),
            
            
// This tag doesn't exist in the DTD
            
$x->foo()
        ),
            
        
$x->div(

            
// Footer
            
$x->hr(),
            
$x->a(array('href'=>'http://pear.php.net'),
                
$x->img(array('src'=>'http://pear.php.net/gifs/pear-power.png',
                            
'alt'=>'PEAR Logo'))
            )
        )
    )
);

$err $x->toXML();

// Print DTD errors 
if (PEAR::isError($err)) {
    echo 
nl2br(htmlSpecialChars($err->getMessage()));
}

?>

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