!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/Table/   drwxr-xr-x
Free 15.9 GB of 61.93 GB (25.67%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

declare(strict_types=1);

namespace 
PhpMyAdmin\Table;

use 
PhpMyAdmin\DatabaseInterface;
use 
PhpMyAdmin\Dbal\DatabaseName;
use 
PhpMyAdmin\Dbal\TableName;
use 
PhpMyAdmin\Dbal\Warning;
use 
PhpMyAdmin\Index;
use 
PhpMyAdmin\Table\Maintenance\Message;
use 
PhpMyAdmin\Util;

use function 
__;
use function 
implode;
use function 
sprintf;

final class 
Maintenance
{
    
/** @var DatabaseInterface */
    
private $dbi;

    public function 
__construct(DatabaseInterface $dbi)
    {
        
$this->dbi $dbi;
    }

    
/**
     * @param TableName[] $tables
     *
     * @return array<int, array<string, Message[]>|string>
     * @psalm-return array{array<string, Message[]>, string}
     */
    
public function getAnalyzeTableRows(DatabaseName $db, array $tables): array
    {
        
$backQuotedTables = [];
        foreach (
$tables as $table) {
            
$backQuotedTables[] = Util::backquote($table->getName());
        }

        
$query 'ANALYZE TABLE ' implode(', '$backQuotedTables) . ';';

        
$this->dbi->selectDb($db);
        
/** @var array<int, array<string, string>> $result */
        
$result $this->dbi->fetchResult($query);

        
$rows = [];
        foreach (
$result as $row) {
            
$message Message::fromArray($row);
            
$rows[$message->table][] = $message;
        }

        return [
$rows$query];
    }

    
/**
     * @param TableName[] $tables
     *
     * @return array<int, array<string, Message[]>|string>
     * @psalm-return array{array<string, Message[]>, string}
     */
    
public function getCheckTableRows(DatabaseName $db, array $tables): array
    {
        
$backQuotedTables = [];
        foreach (
$tables as $table) {
            
$backQuotedTables[] = Util::backquote($table->getName());
        }

        
$query 'CHECK TABLE ' implode(', '$backQuotedTables) . ';';

        
$this->dbi->selectDb($db);
        
/** @var array<int, array<string, string>> $result */
        
$result $this->dbi->fetchResult($query);

        
$rows = [];
        foreach (
$result as $row) {
            
$message Message::fromArray($row);
            
$rows[$message->table][] = $message;
        }

        return [
$rows$query];
    }

    
/**
     * @param TableName[] $tables
     *
     * @return array<int, array<string, array<int, array<string, string|null>>>|string>
     * @psalm-return array{array<int, array<string, string|null>>, string, Warning[]}
     */
    
public function getChecksumTableRows(DatabaseName $db, array $tables): array
    {
        
$backQuotedTables = [];
        foreach (
$tables as $table) {
            
$backQuotedTables[] = Util::backquote($table->getName());
        }

        
$query 'CHECKSUM TABLE ' implode(', '$backQuotedTables) . ';';

        
$this->dbi->selectDb($db);
        
/** @var array<int, array<string, string|null>> $rows */
        
$rows $this->dbi->fetchResult($query);
        
$warnings $this->dbi->getWarnings();

        return [
$rows$query$warnings];
    }

    
/**
     * @param TableName[] $tables
     */
    
public function getIndexesProblems(DatabaseName $db, array $tables): string
    
{
        
$indexesProblems '';

        foreach (
$tables as $table) {
            
$check Index::findDuplicates($table->getName(), $db->getName());

            if (empty(
$check)) {
                continue;
            }

            
$indexesProblems .= sprintf(__('Problems with indexes of table `%s`'), $table->getName());
            
$indexesProblems .= $check;
        }

        return 
$indexesProblems;
    }

    
/**
     * @param TableName[] $tables
     *
     * @return array<int, array<string, Message[]>|string>
     * @psalm-return array{array<string, Message[]>, string}
     */
    
public function getOptimizeTableRows(DatabaseName $db, array $tables): array
    {
        
$backQuotedTables = [];
        foreach (
$tables as $table) {
            
$backQuotedTables[] = Util::backquote($table->getName());
        }

        
$query 'OPTIMIZE TABLE ' implode(', '$backQuotedTables) . ';';

        
$this->dbi->selectDb($db);
        
/** @var array<int, array<string, string>> $result */
        
$result $this->dbi->fetchResult($query);

        
$rows = [];
        foreach (
$result as $row) {
            
$message Message::fromArray($row);
            
$rows[$message->table][] = $message;
        }

        return [
$rows$query];
    }

    
/**
     * @param TableName[] $tables
     *
     * @return array<int, array<string, Message[]>|string>
     * @psalm-return array{array<string, Message[]>, string}
     */
    
public function getRepairTableRows(DatabaseName $db, array $tables): array
    {
        
$backQuotedTables = [];
        foreach (
$tables as $table) {
            
$backQuotedTables[] = Util::backquote($table->getName());
        }

        
$query 'REPAIR TABLE ' implode(', '$backQuotedTables) . ';';

        
$this->dbi->selectDb($db);
        
/** @var array<int, array<string, string>> $result */
        
$result $this->dbi->fetchResult($query);

        
$rows = [];
        foreach (
$result as $row) {
            
$message Message::fromArray($row);
            
$rows[$message->table][] = $message;
        }

        return [
$rows$query];
    }
}

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