!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/phpmyadmin/libraries/classes/Controllers/Server/   drwxr-xr-x
Free 15.59 GB of 61.93 GB (25.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     VariablesController.php (4.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
PhpMyAdmin\Controllers\Server;

use 
PhpMyAdmin\Controllers\AbstractController;
use 
PhpMyAdmin\DatabaseInterface;
use 
PhpMyAdmin\Html\Generator;
use 
PhpMyAdmin\Providers\ServerVariables\ServerVariablesProvider;
use 
PhpMyAdmin\ResponseRenderer;
use 
PhpMyAdmin\Template;
use 
PhpMyAdmin\Url;
use 
PhpMyAdmin\Util;

use function 
implode;
use function 
in_array;
use function 
is_numeric;
use function 
str_replace;
use function 
strtolower;
use function 
trim;

/**
 * Handles viewing and editing server variables
 */
class VariablesController extends AbstractController
{
    
/** @var DatabaseInterface */
    
private $dbi;

    public function 
__construct(ResponseRenderer $responseTemplate $templateDatabaseInterface $dbi)
    {
        
parent::__construct($response$template);
        
$this->dbi $dbi;
    }

    public function 
__invoke(): void
    
{
        global 
$errorUrl;

        
$params = ['filter' => $_GET['filter'] ?? null];
        
$errorUrl Url::getFromRoute('/');

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

        
$filterValue = ! empty($params['filter']) ? $params['filter'] : '';

        
$this->addScriptFiles(['server/variables.js']);

        
$variables = [];
        
$serverVarsResult $this->dbi->tryQuery('SHOW SESSION VARIABLES;');
        if (
$serverVarsResult !== false) {
            
$serverVarsSession $serverVarsResult->fetchAllKeyPair();

            unset(
$serverVarsResult);

            
$serverVars $this->dbi->fetchResult('SHOW GLOBAL VARIABLES;'01);

            
// list of static (i.e. non-editable) system variables
            
$staticVariables ServerVariablesProvider::getImplementation()->getStaticVariables();

            foreach (
$serverVars as $name => $value) {
                
$hasSessionValue = isset($serverVarsSession[$name])
                    && 
$serverVarsSession[$name] !== $value;
                
$docLink Generator::linkToVarDocumentation(
                    
$name,
                    
$this->dbi->isMariaDB(),
                    
str_replace('_''&nbsp;'$name)
                );

                [
$formattedValue$isEscaped] = $this->formatVariable($name$value);
                if (
$hasSessionValue) {
                    [
$sessionFormattedValue] = $this->formatVariable($name$serverVarsSession[$name]);
                }

                
$variables[] = [
                    
'name' => $name,
                    
'is_editable' => ! in_array(strtolower($name), $staticVariables),
                    
'doc_link' => $docLink,
                    
'value' => $formattedValue,
                    
'is_escaped' => $isEscaped,
                    
'has_session_value' => $hasSessionValue,
                    
'session_value' => $sessionFormattedValue ?? null,
                ];
            }
        }

        
$this->render('server/variables/index', [
            
'variables' => $variables,
            
'filter_value' => $filterValue,
            
'is_superuser' => $this->dbi->isSuperUser(),
            
'is_mariadb' => $this->dbi->isMariaDB(),
        ]);
    }

    
/**
     * Format Variable
     *
     * @param string     $name  variable name
     * @param int|string $value variable value
     *
     * @return array formatted string and bool if string is HTML formatted
     */
    
private function formatVariable($name$value): array
    {
        
$isHtmlFormatted false;
        
$formattedValue $value;

        if (
is_numeric($value)) {
            
$variableType ServerVariablesProvider::getImplementation()->getVariableType($name);

            if (
$variableType === 'byte') {
                
$isHtmlFormatted true;
                
/** @var string[] $bytes */
                
$bytes Util::formatByteDown($value33);
                
$formattedValue trim(
                    
$this->template->render(
                        
'server/variables/format_variable',
                        [
                            
'valueTitle' => Util::formatNumber($value0),
                            
'value' => implode(' '$bytes),
                        ]
                    )
                );
            } else {
                
$formattedValue Util::formatNumber($value0);
            }
        }

        return [
            
$formattedValue,
            
$isHtmlFormatted,
        ];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.2892 ]--