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_comments /
[ HOME SHELL ]
Name
Size
Permission
Action
tmpl
[ DIR ]
drwxr-xr-x
.htaccess
533
B
-rw-r--r--
admin.php
5.24
KB
-rw-r--r--
helper.php
9.4
KB
-rw----r--
index.html
44
B
-rw----r--
index.php
14
KB
-rw-r--r--
mod_k2_comments.php
1.73
KB
-rw----r--
mod_k2_comments.xml
7.8
KB
-rw----r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mod_k2_comments.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'); $commentAvatarWidthSelect = $params->get('commentAvatarWidthSelect', 'custom'); $commentAvatarWidth = $params->get('commentAvatarWidth', 50); $commenterAvatarWidthSelect = $params->get('commenterAvatarWidthSelect', 'custom'); $commenterAvatarWidth = $params->get('commenterAvatarWidth', 50); // Get component params $componentParams = JComponentHelper::getParams('com_k2'); // User avatar for latest comments if ($commentAvatarWidthSelect == 'inherit') { $lcAvatarWidth = $componentParams->get('commenterImgWidth'); } else { $lcAvatarWidth = $commentAvatarWidth; } // User avatar for top commenters if ($commenterAvatarWidthSelect == 'inherit') { $tcAvatarWidth = $componentParams->get('commenterImgWidth'); } else { $tcAvatarWidth = $commenterAvatarWidth; } switch ($module_usage) { case '0': $comments = modK2CommentsHelper::getLatestComments($params); require(JModuleHelper::getLayoutPath('mod_k2_comments', 'comments')); break; case '1': $commenters = modK2CommentsHelper::getTopCommenters($params); require(JModuleHelper::getLayoutPath('mod_k2_comments', 'commenters')); break; }
Close