!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:\dmz\php\pear\phing\util\   drwxrwxrwx
Free 4.1 GB of 39.52 GB (10.37%)
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:     PearPackageScanner.php (4.25 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Part of phing, the PHP build tool
 *
 * PHP version 5
 *
 * @category Util
 * @package  phing.util
 * @author   Christian Weiske <cweiske@cweiske.de>
 * @license  LGPL v3 or later http://www.gnu.org/licenses/lgpl.html
 * @version  SVN: $Id: PearPackageScanner.php 1359 2011-11-01 21:52:28Z mrook $
 * @link     https://gitorious.org/phing/pearPackageFileSet
 */
require_once 'phing/util/DirectoryScanner.php';
require_once 
'PEAR/Config.php';

/**
 * Scans for files in a PEAR package.
 *
 * @category Util
 * @package  phing.util
 * @author   Christian Weiske <cweiske@cweiske.de>
 * @license  LGPL v3 or later http://www.gnu.org/licenses/lgpl.html
 * @link     https://gitorious.org/phing/pearPackageFileSet
 */
class PearPackageScanner extends DirectoryScanner
{
    protected 
$packageInfo;
    protected 
$role 'php';
    protected 
$config;
    protected 
$package;
    protected 
$channel 'pear.php.net';

    
/**
     * Sets the name of the PEAR package to get the files from
     *
     * @param string $package Package name without channel
     *
     * @return void
     */
    
public function setPackage($package)
    {
        
$this->package $package;
    }

    
/**
     * Sets the name of the package channel name
     *
     * @param string $channel package channel name or alias
     *
     * @return void
     */
    
public function setChannel($channel)
    {
        
$this->channel $channel;
    }

    
/**
     * Sets the full path to the PEAR configuration file
     *
     * @param string $config Configuration file
     *
     * @return void
     */
    
public function setConfig($config)
    {
        if (
$config != '' && !file_exists($config)) {
            throw new 
BuildException(
                
'PEAR configuration file "' $config '" does not exist'
            
);
        }

        
$this->config $config;
    }

    
/**
     * Sets the role of files that should be included.
     * Examples are php,doc,script
     *
     * @param string $role PEAR file role
     *
     * @return void
     *
     * @internal
     * We do not verify the role against a hardcoded list since that
     * would break packages with additional roles.
     */
    
public function setRole($role)
    {
        if (
$role == '') {
            throw new 
BuildException('A non-empty role is required');
        }

        
$this->role $role;
    }

    
/**
     * Loads the package information.
     *
     * @return void
     *
     * @uses $packageInfo
     */
    
protected function init()
    {
        if (!
$this->packageInfo) {
            
$this->packageInfo $this->loadPackageInfo();
        }
    }

    
/**
     * Loads and returns the PEAR package information.
     *
     * @return PEAR_PackageFile_v2 Package information object
     *
     * @throws BuildException When the package does not exist
     */
    
protected function loadPackageInfo()
    {
        
$cfg PEAR_Config::singleton($this->config);
        
$reg $cfg->getRegistry();
        if (!
$reg->packageExists($this->package$this->channel)) {
            throw new 
BuildException(
                
sprintf(
                    
'PEAR package %s/%s does not exist',
                    
$this->channel$this->package
                
)
            );
        }

        
$packageInfo $reg->getPackage($this->package$this->channel);
        return 
$packageInfo;
    }

    
/**
     * Generates the list of included files and directories
     *
     * @return boolean True if all went well, false if something was wrong
     *
     * @uses $filesIncluded
     * @uses $filesDeselected
     * @uses $filesNotIncluded
     * @uses $filesExcluded
     * @uses $everythingIncluded
     * @uses $dirsIncluded
     * @uses $dirsDeselected
     * @uses $dirsNotIncluded
     * @uses $dirsExcluded
     */
    
public function scan()
    {
        
$this->init();
        
$list $this->packageInfo->getFilelist();
        
$found null;
        foreach (
$list as $file => $att) {
            if (
$att['role'] != $this->role) {
                continue;
            }
            
$this->filesIncluded[] = $file;
            
$found = array($file$att);
        }
        if (
$found !== null) {
            list(
$file$att) = $found;
            
$this->setBaseDir(substr($att['installed_as'], 0, -strlen($file)));
        }

        return 
true;
    }

}

?>

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