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 /
libraries /
cms /
form /
field /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
author.php
1.48
KB
-rw-r--r--
captcha.php
3.28
KB
-rw-r--r--
chromestyle.php
3.22
KB
-rw-r--r--
contenthistory.php
1.52
KB
-rw-r--r--
contentlanguage.php
938
B
-rw-r--r--
contenttype.php
2.25
KB
-rw-r--r--
editor.php
7.2
KB
-rw-r--r--
headertag.php
977
B
-rw-r--r--
helpsite.php
1.51
KB
-rw-r--r--
limitbox.php
2.17
KB
-rw-r--r--
media.php
11.43
KB
-rw-r--r--
menu.php
972
B
-rw-r--r--
menuitem.php
4.58
KB
-rw-r--r--
moduleorder.php
2.4
KB
-rw-r--r--
moduleposition.php
3.95
KB
-rw-r--r--
moduletag.php
985
B
-rw-r--r--
ordering.php
4.62
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
registrationdaterange.php
1.42
KB
-rw-r--r--
status.php
769
B
-rw-r--r--
tag.php
4.76
KB
-rw-r--r--
templatestyle.php
4.58
KB
-rw-r--r--
user.php
3.78
KB
-rw-r--r--
useractive.php
1.08
KB
-rw-r--r--
usergrouplist.php
1.65
KB
-rw-r--r--
userstate.php
726
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : moduleorder.php
<?php /** * @package Joomla.Libraries * @subpackage Form * * @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('JPATH_PLATFORM') or die; /** * Form Field class for the Joomla! CMS. * * @since 1.6 */ class JFormFieldModuleOrder extends JFormField { /** * The form field type. * * @var string * @since 1.6 */ protected $type = 'ModuleOrder'; /** * Method to get the field input markup. * * @return string The field input markup. * * @since 1.6 */ protected function getInput() { $html = array(); $attr = ''; // Initialize some field attributes. $attr .= !empty($this->class) ? ' class="' . $this->class . '"' : ''; $attr .= $this->disabled ? ' disabled' : ''; $attr .= !empty($this->size) ? ' size="' . $this->size . '"' : ''; // Initialize JavaScript field attributes. $attr .= !empty($this->onchange) ? ' onchange="' . $this->onchange . '"' : ''; $html[] = '<script type="text/javascript">'; $ordering = $this->form->getValue('ordering'); $position = $this->form->getValue('position'); $clientId = $this->form->getValue('client_id'); $html[] = 'var originalOrder = "' . $ordering . '";'; $html[] = 'var originalPos = "' . $position . '";'; $html[] = 'var orders = new Array();'; $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('position, ordering, title') ->from('#__modules') ->where('client_id = ' . (int) $clientId) ->order('ordering'); $db->setQuery($query); try { $orders = $db->loadObjectList(); } catch (RuntimeException $e) { JError::raiseWarning(500, $e->getMessage()); return false; } $orders2 = array(); for ($i = 0, $n = count($orders); $i < $n; $i++) { if (!isset($orders2[$orders[$i]->position])) { $orders2[$orders[$i]->position] = 0; } $orders2[$orders[$i]->position]++; $ord = $orders2[$orders[$i]->position]; $title = JText::sprintf('COM_MODULES_OPTION_ORDER_POSITION', $ord, addslashes($orders[$i]->title)); $html[] = 'orders[' . $i . '] = new Array("' . $orders[$i]->position . '","' . $ord . '","' . $title . '");'; } $html[] = 'writeDynaList(\'name="' . $this->name . '" id="' . $this->id . '"' . $attr . '\', orders, originalPos, originalPos, originalOrder);'; $html[] = '</script>'; return implode("\n", $html); } }
Close