!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 3.24 GB of 39.52 GB (8.2%)
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:     HTMLTidy.php (1.17 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class Minify_HTMLTidy {
    public static function 
minify($content$options = array()) {
        
$options array_merge(array(
            
'clean' => false,
            
'hide-comments' => true,
            
'wrap' => 0,
            
'input-encoding' => 'utf8',
            
'output-encoding' => 'utf8',
            
'preserve-entities' => true
        
), $options, array(
            
'show-errors' => 0,
            
'show-warnings' => false,
            
'force-output' => true,
            
'tidy-mark' => false
        
));

        
$tidy = new tidy();
        
$tidy->parseString($content$options);
        
$tidy->cleanRepair();

        
$content $tidy->value;

        return 
$content;
    }

    public static function 
minifyXhtml($html$options = array()) {
        
$options array_merge($options, array(
            
'output-xhtml' => true
        
));

        return 
self::minify($html$options);
    }

    public static function 
minifyXml($xml$options = array()) {
        
$options array_merge($options, array(
            
'input-xml' => true,
            
'output-xml' => true,
            
'add-xml-decl' => true
        
));

        return 
self::minify($xml$options);
    }
}

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