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 /
MVC /
View /
[ HOME SHELL ]
Name
Size
Permission
Action
Event
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AbstractView.php
5.69
KB
-rw----r--
CategoriesView.php
2.77
KB
-rw----r--
CategoryFeedView.php
4.08
KB
-rw----r--
CategoryView.php
7.79
KB
-rw----r--
FormView.php
5.16
KB
-rw----r--
GenericDataException.php
434
B
-rw----r--
HtmlView.php
14.65
KB
-rw----r--
JsonApiView.php
7.03
KB
-rw----r--
JsonView.php
2.65
KB
-rw----r--
ListView.php
6.02
KB
-rw----r--
ViewInterface.php
893
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ViewInterface.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\CMS\MVC\View; use Joomla\CMS\MVC\Model\BaseDatabaseModel; \defined('JPATH_PLATFORM') or die; /** * Joomla Platform CMS Interface * * @since 4.0.0 */ interface ViewInterface { /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return void * * @since 4.0.0 */ public function display($tpl = null); /** * Method to get the model object * * @param string $name The name of the model (optional) * * @return BaseDatabaseModel The model object * * @since 3.0 */ public function getModel($name = null); }
Close