!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\CodeGen\PECL\   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:     Release.php (3.57 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * PECL specific extensions to the Release class
 *
 * PHP versions 5
 *
 * LICENSE: This source file is subject to version 3.0 of the PHP license
 * that is available through the world-wide-web at the following URI:
 * http://www.php.net/license/3_0.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   Tools and Utilities
 * @package    CodeGen
 * @author     Hartmut Holzgraefe <hartmut@php.net>
 * @copyright  2005 Hartmut Holzgraefe
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
 * @version    CVS: $Id: Release.php,v 1.7 2006/02/17 19:04:44 hholzgra Exp $
 * @link       http://pear.php.net/package/CodeGen
 */

/**
 * includes
 */
require_once "CodeGen/Release.php";


/**
 * PECL specific extensions to the Release class
 *
 * @category   Tools and Utilities
 * @package    CodeGen
 * @author     Hartmut Holzgraefe <hartmut@php.net>
 * @copyright  2005 Hartmut Holzgraefe
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
 * @version    Release: @package_version@
 * @link       http://pear.php.net/package/CodeGen
 */
class CodeGen_PECL_Release 
    
extends CodeGen_Release
{
    
/**
     * generate XML fragment for package.xml
     *
     * @access public
     * @return string XML fragment
     */
    
function packageXml()
    {
        
$code "\n  <release>\n";
        foreach (array(
"version""state""notes") as $key) {
            if (
$this->$key !== "") {
                
$code.= "    <$key>".htmlentities($this->$key)."</$key>\n";
            }
        }
        if (
$this->date !== "") {
            
$code .= "    <date>".date("Y-m-d"$this->date)."</date>\n";
        }
        
$code.= "  </release>\n";
        
        return 
$code;
    }

    
/**
     * generate XML fragment for package.xml 2.0
     *
     * @access public
     * @param  object License 
     * @return string XML fragment
     */
    
function packageXml2($license)
    {
        
$code ="";

        
$date $this->date $this->date time();
        
$code.= "  <date>".date("Y-m-d"$date)."</date>\n";       

        
$code.= "  <version>\n";
        
$code.= "    <release>{$this->version}</release>\n";
        
$code.= "    <api>{$this->version}</api>\n";
        
$code.= "  </version>\n";
        
$code.= "  <stability>\n";
        
$code.= "    <release>{$this->state}</release>\n";
        
$code.= "    <api>{$this->state}</api>\n";
        
$code.= "  </stability>\n\n";

        
// this is ugly but with package.xml 2.0 this now has to be put
        // here whereas in 1.0 license was a tag at the same level as
        // the release block ... :/
        
if ($license instanceof CodeGen_License) {
            
$uri $license->getUri();
            if (!empty(
$uri)) {
                
$uri "uri=\"$uri\" ";
            }

            
$code.= "  <license {$uri}filesource=\"LICENSE\">{$license->getShortName()}</license>\n\n";
        } else {
            
$code.= "  <license>unknown</license\n\n";
        }

        
$code .="  <notes>\n".htmlentities($this->notes)."\n  </notes>\n\n";

        return 
$code;
    }


    
/**
     * Code snippet for phpinfo output
     *
     * @access public
     * @param  string extension name
     * @return string C code snippet
     */
    
function phpinfoCode($name
    {
        return 
sprintf("    php_printf(\"<p>Version %s%s (%s)</p>\\n\");\n",
                       
$this->version,
                       
$this->state,
                       
date("Y-m-d"$this->date)
                       );
    }
}

?>

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