!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)

E:\nuevo\htdocs\cumbreclima\wp-content\plugins\w3-total-cache\lib\NetDNA\   drwxrwxrwx
Free 4.97 GB of 239.26 GB (2.08%)
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:     NetDNAPresentation.php (2.24 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class NetDNAPresentation {

    public static function 
format_popular($popular_files) {
        
$formatted = array();
        foreach (
$popular_files as $file) {
            
// basename cannot be used, kills chinese chars and similar characters
            
$filename substr($file['uri'], strrpos($file['uri'], '/')+1);
            
$formatted[] = array('file' => $filename'title' => $file['uri'],
                
'group' => self::get_file_group($file['uri']), 'hit' => $file['hit']);
        }

        return 
$formatted;
    }

    public static function 
group_hits_per_filetype_group($filetypes) {
        
$groups = array();
        foreach (
$filetypes as $file) {
            
$file_group self::get_file_group($file['file_type']);
            if (!isset(
$groups[$file_group]))
                
$groups[$file_group] = 0;
            
$groups[$file_group] += $file['hit'];
        }
        return 
$groups;
    }
    public static function 
get_file_group($uri) {
        
$ext end(explode('.'$uri));
        switch (
$ext) {
            case 
'css':
            case 
'js':
                return 
$ext;
                break;
            case 
'png':
            case 
'tiff':
            case 
'gif':
            case 
'jpg':
            case 
'jpeg':
                return 
'images';
                break;
            default:
                return 
'misc';
                break;
        }
    }

    public static function 
get_file_group_color($group) {
        switch (
$group){
            case 
'css':
                return 
'#739468';
            case 
'js':
                return 
'#ffb05d';
            case 
'images':
                return 
'#b080df';
            default:
                return 
'#4ba0fa';
        }
    }

    public static function 
get_account_status($status)  {
        switch (
$status) {
            case 
1:
                return 
__('Pending''w3-total-cache');
            case 
2:
                return 
__('Active''w3-total-cache');
            case 
3:
                return 
__('Cancelled''w3-total-cache');
            case 
4:
                return 
__('Suspended''w3-total-cache');
            case 
5:
                return 
__('Fraud''w3-total-cache');
            default:
                return 
__('unknown''w3-total-cache');
        }
    }
}

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