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 /
controllers /
[ HOME SHELL ]
Name
Size
Permission
Action
database
[ DIR ]
drwxr-xr-x
server
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
Controller.php
899
B
-rw-r--r--
DatabaseController.php
494
B
-rw-r--r--
TableController.php
605
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Controller.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the PMA\TableController * * @package PMA */ namespace PMA\libraries\controllers; use PMA\libraries\DatabaseInterface; use PMA\libraries\di\Container; use PMA\libraries\Response; require_once 'libraries/database_interface.inc.php'; /** * Base class for all of controller * * @package PhpMyAdmin */ abstract class Controller { /** * @var Response */ protected $response; /** * @var DatabaseInterface */ protected $dbi; /** * @var \PMA\libraries\di\Container */ protected $container; /** * Constructor */ public function __construct() { $container = Container::getDefaultContainer(); $this->container = $container; $this->dbi = $this->container->get('dbi'); $this->response = $this->container->get('response'); } }
Close