!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\phpMyAdmin\js\jqplot\plugins\   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:     jqplot.byteFormatter.js (1.21 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * jqplot formatter for byte values
 *
 * @package phpMyAdmin
 */
(function($) {
    "use strict";
    var formatByte = function (val, index) {
        var units = [
            PMA_messages.strB,
            PMA_messages.strKiB,
            PMA_messages.strMiB,
            PMA_messages.strGiB,
            PMA_messages.strTiB,
            PMA_messages.strPiB,
            PMA_messages.strEiB
        ];
        while (val >= 1024 && index <= 6) {
            val /= 1024;
            index++;
        }
        var format = '%.1f';
        if (Math.floor(val) === val) {
            format = '%.0f';
        }
        return $.jqplot.sprintf(
            format + ' ' + units[index], val
        );
    };
    /**
     * The index indicates what unit the incoming data will be in.
     * 0 for bytes, 1 for kilobytes and so on...
     */
    $.jqplot.byteFormatter = function (index) {
        index = index || 0;
        return function (format, val) {
            if (typeof val === 'number') {
                val = parseFloat(val) || 0;
                return formatByte(val, index);
            } else {
                return String(val);
            }
        };
    };
})(jQuery);

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