!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:\cumbreclima\wp-content\plugins\w3-total-cache\lib\Minify\Minify\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.44%)
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:     IgnoredCommentPreserver.php (1.49 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class Minify_IgnoredCommentPreserver {
    protected 
$_replacementHash '';
    protected 
$_ignoredComments = array();
    protected 
$_placeholders = array();

    public function 
__construct() {
        
$this->_replacementHash 'IgnoredCommentPreserver_' md5(time());
    }

    public function 
setIgnoredComments($ignoredComments = array()) {
        
$this->_ignoredComments $ignoredComments;
    }

    public function 
search(&$html) {
        
$html preg_replace_callback('/<!--[\\s\\S]*?-->/', array($this'_callback'), $html);
    }

    public function 
replace(&$html) {
        
$html str_replace(array_keys($this->_placeholders), array_values($this->_placeholders), $html);
    }

    protected function 
_callback($match) {
        list(
$comment) = $match;

        if (
$this->_isIgnoredComment($comment)) {
            return 
$this->_reservePlace($comment);
        }

        return 
$comment;
    }

    protected function 
_isIgnoredComment(&$comment) {
        foreach (
$this->_ignoredComments as $ignoredComment) {
            if (
stristr($comment$ignoredComment) !== false) {
                return 
true;
            }
        }

        return 
false;
    }

    protected function 
_getPlaceholder() {
        return 
'%%' $this->_replacementHash '_' count($this->_placeholders) . '%%';
    }

    protected function 
_reservePlace(&$content) {
        
$placeholder $this->_getPlaceholder();

        
$this->_placeholders[$placeholder] = &$content;

        return 
$placeholder;
    }
}

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