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.217.150
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_users /
controllers /
Delete
Unzip
Name
Size
Permission
Date
Action
profile.json.php
498
B
-rw-r--r--
2017-11-07 06:31
profile.php
6.23
KB
-rw-r--r--
2017-11-07 06:31
profile_base_json.php
1.27
KB
-rw-r--r--
2017-11-07 06:31
registration.php
5.42
KB
-rw-r--r--
2017-11-07 06:31
remind.php
1.39
KB
-rw-r--r--
2017-11-07 06:31
reset.php
4.55
KB
-rw-r--r--
2017-11-07 06:31
user.php
8.43
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Site * @subpackage com_users * * @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; /** * Profile controller class for Users. * * @since 3.5 */ class UsersControllerProfile_Base_Json extends JControllerLegacy { /** * Returns the updated options for help site selector * * @return void * * @since 3.5 * @throws Exception */ public function gethelpsites() { jimport('joomla.filesystem.file'); // Set FTP credentials, if given JClientHelper::setCredentialsFromRequest('ftp'); if (($data = file_get_contents('https://update.joomla.org/helpsites/helpsites.xml')) === false) { throw new Exception(JText::_('COM_CONFIG_ERROR_HELPREFRESH_FETCH'), 500); } elseif (!JFile::write(JPATH_ADMINISTRATOR . '/help/helpsites.xml', $data)) { throw new Exception(JText::_('COM_CONFIG_ERROR_HELPREFRESH_ERROR_STORE'), 500); } $options = array_merge( array( JHtml::_('select.option', '', JText::_('JOPTION_USE_DEFAULT')) ), JHelp::createSiteList(JPATH_ADMINISTRATOR . '/help/helpsites.xml') ); echo json_encode($options); JFactory::getApplication()->close(); } }