Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
components /
com_config /
controller /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
modules
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
templates
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
cancel.php
718
B
-rw-r--r--
2017-11-07 06:31
canceladmin.php
1.46
KB
-rw-r--r--
2017-11-07 06:31
cmsbase.php
1016
B
-rw-r--r--
2017-11-07 06:31
display.php
2.35
KB
-rw-r--r--
2017-11-07 06:31
helper.php
2.57
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Site * @subpackage com_config * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Cancel Controller for Admin * * @since 3.2 */ class ConfigControllerCanceladmin extends ConfigControllerCancel { /** * The context for storing internal data, e.g. record. * * @var string * @since 3.2 */ protected $context; /** * The URL option for the component. * * @var string * @since 3.2 */ protected $option; /** * URL for redirection. * * @var string * @since 3.2 * @note Replaces _redirect. */ protected $redirect; /** * Method to handle admin cancel * * @return boolean True on success. * * @since 3.2 */ public function execute() { // Check for request forgeries. if (!JSession::checkToken()) { $this->app->enqueueMessage(JText::_('JINVALID_TOKEN')); $this->app->redirect('index.php'); } if (empty($this->context)) { $this->context = $this->option . '.edit' . $this->context; } // Redirect. $this->app->setUserState($this->context . '.data', null); if (!empty($this->redirect)) { // Don't redirect to an external URL. if (!JUri::isInternal($this->redirect)) { $this->redirect = JUri::base(); } $this->app->redirect($this->redirect); } else { parent::execute(); } } }