Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
com_jchoptimize /
assets /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
1.89
KB
-rwxr-xr-x
2022-08-17 13:56
Web.config
588
B
-rwxr-xr-x
2022-08-17 13:56
bootstrap.php
2.04
KB
-rwxr-xr-x
2022-08-17 13:56
index.html
29
B
-rwxr-xr-x
2022-08-17 13:56
jscss.php
601
B
-rwxr-xr-x
2022-08-17 13:56
Save
Rename
<?php /** * JCH Optimize - Performs several front-end optimizations for fast downloads * * @package jchoptimize/joomla-platform * @author Samuel Marshall <samuel@jch-optimize.net> * @copyright Copyright (c) 2020 Samuel Marshall / JCH Optimize * @license GNU/GPLv3, or later. See LICENSE file * * If LICENSE file missing, see <http://www.gnu.org/licenses/>. */ defined( '_JEXEC' ) or die( 'Restricted access' ); $DIR = dirname( __FILE__, 4 ); if ( ! file_exists( $DIR . '/includes/defines.php' ) ) { //Try using $_SERVER, PHP automatically resolves symlinks, and it seems there's no way to prevent that. $DIR = dirname( $_SERVER['SCRIPT_FILENAME'], 4 ); } define( 'JPATH_BASE', $DIR ); require_once JPATH_BASE . '/includes/defines.php'; require_once JPATH_BASE . '/includes/framework.php'; if ( version_compare( JVERSION, '3.999.999', '>' ) ) { // Boot the DI container $container = \Joomla\CMS\Factory::getContainer(); /* * Alias the session service keys to the web session service as that is the primary session backend for this application * * In addition to aliasing "common" service keys, we also create aliases for the PHP classes to ensure autowiring objects * is supported. This includes aliases for aliased class names, and the keys for aliased class names should be considered * deprecated to be removed when the class name alias is removed as well. */ $container->alias( 'session.web', 'session.web.site' ) ->alias( 'session', 'session.web.site' ) ->alias( 'JSession', 'session.web.site' ) ->alias( \Joomla\CMS\Session\Session::class, 'session.web.site' ) ->alias( \Joomla\Session\Session::class, 'session.web.site' ) ->alias( \Joomla\Session\SessionInterface::class, 'session.web.site' ); // Instantiate the application. $app = $container->get( \Joomla\CMS\Application\SiteApplication::class ); // Set the application as global app \Joomla\CMS\Factory::$application = $app; } else { $app = \Joomla\CMS\Factory::getApplication( 'site' ); } require_once JPATH_ADMINISTRATOR . '/components/com_jchoptimize/autoload.php';