Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.118.32.116
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
restaurants /
var /
phpmyadmin /
src /
Dbal /
[ HOME SHELL ]
Name
Size
Permission
Action
Connection.php
183
B
-rw-r--r--
ConnectionException.php
125
B
-rw-r--r--
ConnectionType.php
298
B
-rw-r--r--
DbalInterface.php
18.08
KB
-rw-r--r--
DbiExtension.php
3.07
KB
-rw-r--r--
DbiMysqli.php
10.39
KB
-rw-r--r--
MysqliResult.php
5.71
KB
-rw-r--r--
MysqliStatement.php
769
B
-rw-r--r--
ResultInterface.php
2.91
KB
-rw-r--r--
Statement.php
350
B
-rw-r--r--
Warning.php
1.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DbiExtension.php
<?php /** * Contract for every database extension supported by phpMyAdmin */ declare(strict_types=1); namespace PhpMyAdmin\Dbal; use PhpMyAdmin\Config\Settings\Server; use PhpMyAdmin\Identifiers\DatabaseName; /** * Contract for every database extension supported by phpMyAdmin */ interface DbiExtension { /** * Connects to the database server. * * @throws ConnectionException */ public function connect(Server $server): Connection|null; /** * selects given database * * @param string|DatabaseName $databaseName database name to select */ public function selectDb(string|DatabaseName $databaseName, Connection $connection): bool; /** * runs a query and returns the result * * @param string $query query to execute * @param int $options query options * * @return ResultInterface|false result */ public function realQuery(string $query, Connection $connection, int $options): ResultInterface|false; /** * Run the multi query and output the results * * @param string $query multi query statement to execute */ public function realMultiQuery(Connection $connection, string $query): bool; /** * Prepare next result from multi_query */ public function nextResult(Connection $connection): bool; /** * Store the result returned from multi query * * @return ResultInterface|false false when empty results / result set when not empty */ public function storeResult(Connection $connection): ResultInterface|false; /** * Returns a string representing the type of connection used * * @return string type of connection used */ public function getHostInfo(Connection $connection): string; /** * Returns the version of the MySQL protocol used * * @return int version of the MySQL protocol used */ public function getProtoInfo(Connection $connection): int; /** * returns a string that represents the client library version * * @return string MySQL client library version */ public function getClientInfo(): string; /** * Returns last error message or an empty string if no errors occurred. */ public function getError(Connection $connection): string; /** * returns the number of rows affected by last query * * @psalm-return int|numeric-string */ public function affectedRows(Connection $connection): int|string; /** * returns properly escaped string for use in MySQL queries * * @param string $string string to be escaped * * @return string a MySQL escaped string */ public function escapeString(Connection $connection, string $string): string; /** * Prepare an SQL statement for execution. * * @param string $query The query, as a string. */ public function prepare(Connection $connection, string $query): Statement|null; /** * Returns the number of warnings from the last query. */ public function getWarningCount(Connection $connection): int; }
Close