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 /
administrator /
templates /
isis /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
html
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
language
[ DIR ]
drwxr-xr-x
less
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
component.php
1.71
KB
-rw-r--r--
cpanel.php
318
B
-rw-r--r--
error.php
12.03
KB
-rw----r--
favicon.ico
1.97
KB
-rw-r--r--
index.php
10.99
KB
-rw----r--
login.php
4.45
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
templateDetails.xml
4.24
KB
-rw-r--r--
template_preview.png
27.81
KB
-rw-r--r--
template_thumbnail.png
7.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : component.php
<?php /** * @package Joomla.Administrator * @subpackage Templates.isis * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $app = JFactory::getApplication(); $lang = JFactory::getLanguage(); // Output as HTML5 $this->setHtml5(true); // Add JavaScript Frameworks JHtml::_('bootstrap.framework'); // Add filter polyfill for IE8 JHtml::_('behavior.polyfill', array('filter'), 'lte IE 9'); // Add template js JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true)); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); // Add Stylesheets JHtml::_('stylesheet', 'template' . ($this->direction === 'rtl' ? '-rtl' : '') . '.css', array('version' => 'auto', 'relative' => true)); // Load optional RTL Bootstrap CSS JHtml::_('bootstrap.loadCss', false, $this->direction); // Load specific language related CSS JHtml::_('stylesheet', 'administrator/language/' . $lang->getTag() . '/' . $lang->getTag() . '.css', array('version' => 'auto')); // Load custom.css JHtml::_('stylesheet', 'custom.css', array('version' => 'auto', 'relative' => true)); // Link color if ($this->params->get('linkColor')) { $this->addStyleDeclaration('a { color: ' . $this->params->get('linkColor') . '; }'); } ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> </head> <body class="contentpane component"> <jdoc:include type="message" /> <jdoc:include type="component" /> </body> </html>
Close