!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\Image\GIS\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
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:     Parser.php (3.71 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//
// +------------------------------------------------------------------------+
// | PEAR :: Image :: GIS :: Parser Base Class                              |
// +------------------------------------------------------------------------+
// | Copyright (c) 2002-2005 Jan Kneschke <jan@kneschke.de> and             |
// |                         Sebastian Bergmann <sb@sebastian-bergmann.de>. |
// +------------------------------------------------------------------------+
// | This source file is subject to version 3.00 of the PHP License,        |
// | that is available at 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 world-wide-web, please send a note to            |
// | license@php.net so we can mail you a copy immediately.                 |
// +------------------------------------------------------------------------+
//
// $Id: Parser.php 299207 2010-05-10 10:21:58Z clockwerx $
//

require_once 'Cache/Lite.php';
require_once 
'Image/GIS/LineSet.php';

/**
 * Parser Base Class.
 *
 * @author      Sebastian Bergmann <sb@sebastian-bergmann.de>
 * @copyright   Copyright &copy; 2002-2005 Jan Kneschke <jan@kneschke.de> and Sebastian Bergmann <sb@sebastian-bergmann.de>
 * @license     http://www.php.net/license/3_0.txt The PHP License, Version 3.0
 * @category    Image
 * @package     Image_GIS
 */
class Image_GIS_Parser {
    
/**
    * Cache.
    *
    * @var Cache_Lite $cache
    */
    
var $cache NULL;

    
/**
    * Data Files.
    *
    * @var array $dataFiles
    */
    
var $dataFiles = array();

    
/**
    * Set to TRUE to enable debugging.
    *
    * @var boolean $debug
    */
    
var $debug;

    
/**
    * Line Set.
    *
    * @var array $lineSets
    */
    
var $lineSets = array();

    
/**
    * Constructor.
    *
    * @param  boolean $cache
    * @param  boolean $debug
    * @access public
    */
    
function Image_GIS_Parser($cache$debug) {
        if (
$cache) {
            
$this->cache = new Cache_Lite;
        }

        
$this->debug $debug;
    }

    
/**
    * Factory.
    *
    * @param  string  $parser
    * @param  boolean $cache
    * @param  boolean $debug
    * @return object
    * @access public
    */
    
function &factory($parser$cache$debug) {
        include_once 
'Image/GIS/Parser/' $parser '.php';

        
$class  'Image_GIS_Parser_' $parser;
        
$object = new $class($cache$debug);

        return 
$object;
    }

    
/**
    * Adds a datafile to the map.
    *
    * @param  string  $dataFile
    * @param  mixed   $color
    * @access public
    */
    
function addDataFile($dataFile$color) {
        
$this->dataFiles[$dataFile] = $color;
    }

    
/**
    * Parses the data files of the map.
    *
    * @access public
    * @return array
    */
    
function parse() {
        foreach (
$this->dataFiles as $dataFile => $color) {
            
$cacheID md5($dataFile '_' $color);
            
$lineSet false;

            if (
is_object($this->cache) &&
                
$lineSet $this->cache->get($cacheID'Image_GIS')) {
                
$lineSet unserialize($lineSet);
            }

            if (
$lineSet === false) {
                
$lineSet $this->parseFile($dataFile$color);

                if (
is_object($this->cache)) {
                    
$this->cache->save(serialize($lineSet), $cacheID'Image_GIS');
                }
            }

            
$this->lineSets[] = $lineSet;
        }

        return 
$this->lineSets;
    }

    
/**
    * Parses a data file.
    *
    * @param  string  $dataFile
    * @param  mixed   $color
    * @return mixed
    * @access public
    * @abstract
    */
    
function parseFile($dataFile$color) { /* abstract */ }
}
?>

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