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 : NodeColumnContainer.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; use PMA\libraries\navigation\NodeFactory; use PMA\libraries\Util; /** * Represents a container for column nodes in the navigation tree * * @package PhpMyAdmin-Navigation */ class NodeColumnContainer extends Node { /** * Initialises the class */ public function __construct() { parent::__construct(__('Columns'), Node::CONTAINER); $this->icon = Util::getImage('pause.png', __('Columns')); $this->links = array( 'text' => 'tbl_structure.php?server=' . $GLOBALS['server'] . '&db=%2$s&table=%1$s' . '&token=' . $_SESSION[' PMA_token '], 'icon' => 'tbl_structure.php?server=' . $GLOBALS['server'] . '&db=%2$s&table=%1$s' . '&token=' . $_SESSION[' PMA_token '], ); $this->real_name = 'columns'; $new_label = _pgettext('Create new column', 'New'); $new = NodeFactory::getInstance( 'Node', $new_label ); $new->isNew = true; $new->icon = Util::getImage('b_column_add.png', $new_label); $new->links = array( 'text' => 'tbl_addfield.php?server=' . $GLOBALS['server'] . '&db=%3$s&table=%2$s' . '&field_where=last&after_field=' . '&token=' . $_SESSION[' PMA_token '], 'icon' => 'tbl_addfield.php?server=' . $GLOBALS['server'] . '&db=%3$s&table=%2$s' . '&field_where=last&after_field=' . '&token=' . $_SESSION[' PMA_token '], ); $new->classes = 'new_column italics'; $this->addChild($new); } }
Close