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.54
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 /
components /
com_jce /
Delete
Unzip
Name
Size
Permission
Date
Action
controller
[ DIR ]
drwxr-xr-x
2026-06-12 04:11
helpers
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
includes
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
layouts
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
models
[ DIR ]
drwxr-xr-x
2026-06-12 04:11
sql
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
tables
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
vendor
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
views
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
access.xml
803
B
-rwxr-xr-x
2023-07-13 17:52
config.xml
2.64
KB
-rwxr-xr-x
2023-07-13 17:52
controller.php
4.12
KB
-rwxr-xr-x
2023-07-13 17:52
index.html
44
B
-rwxr-xr-x
2023-07-13 17:52
jce.php
1.14
KB
-rwxr-xr-x
2023-07-13 17:52
jce.xml
3.05
KB
-rwxr-xr-x
2023-07-13 17:52
licence.txt
17.67
KB
-rwxr-xr-x
2023-07-13 17:52
Save
Rename
<?php /** * @copyright Copyright (c) 2009-2022 Ryan Demmer. All rights reserved * @license GNU/GPL 3 - http://www.gnu.org/copyleft/gpl.html * JCE is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses */ defined('JPATH_PLATFORM') or die; // define admin base path define('WF_ADMIN', __DIR__); $app = JFactory::getApplication(); // throw exception for legacy task if ($app->input->get('task') === 'plugin') { throw new Exception('Restricted', 403); } $vName = $app->input->get('view'); // fix legacy plugin url if ($vName == 'editor' && $app->input->get('layout') == 'plugin') { if ($app->input->get('plugin')) { $app->input->set('task', 'plugin.display'); } $app->input->set('view', ''); } // constants and autoload require_once __DIR__ . '/includes/base.php'; $controller = JControllerLegacy::getInstance('Jce', array('base_path' => __DIR__)); $controller->execute($app->input->get('task')); $controller->redirect();