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; /** * Base Display Controller * * @since 3.2 */ class ConfigControllerCmsbase extends JControllerBase { /** * Prefix for the view and model classes * * @var string * @since 3.2 */ public $prefix; /** * Execute the controller. * * @return mixed A rendered view or true * * @since 3.2 */ public function execute() { // Check for request forgeries JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN')); // Get the application $this->app = $this->getApplication(); $this->app->redirect('index.php?option=' . $this->input->get('option')); $this->componentFolder = $this->input->getWord('option', 'com_content'); $this->viewName = $this->input->getWord('view'); return $this; } }