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.51
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 /
dbi /
[ HOME SHELL ]
Name
Size
Permission
Action
DBIDummy.php
38.69
KB
-rw-r--r--
DBIExtension.lib.php
617
B
-rw-r--r--
DBIExtension.php
6.15
KB
-rw-r--r--
DBIMysql.php
13.26
KB
-rw-r--r--
DBIMysqli.lib.php
745
B
-rw-r--r--
DBIMysqli.php
18.42
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DBIExtension.lib.php
<?php /** * Contract for every database extension supported by phpMyAdmin * * @package PhpMyAdmin-DBI */ /** * Defines PMA_MYSQL_CLIENT_API if it does not exist based * on MySQL client version. * * @param string $version MySQL version string * * @return void */ function PMA_defineClientAPI($version) { if (!defined('PMA_MYSQL_CLIENT_API')) { $client_api = explode('.', $version); define( 'PMA_MYSQL_CLIENT_API', (int)sprintf( '%d%02d%02d', $client_api[0], $client_api[1], intval($client_api[2]) ) ); } }
Close