Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
paroquia-rm.bak.2 /
libraries /
joomla /
view /
Delete
Unzip
Name
Size
Permission
Date
Action
base.php
937
B
-rw-r--r--
2018-06-26 10:27
html.php
3.42
KB
-rw-r--r--
2018-06-26 10:27
view.php
712
B
-rw-r--r--
2018-06-26 10:27
Save
Rename
<?php /** * @package Joomla.Platform * @subpackage View * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Joomla Platform View Interface * * @since 12.1 */ interface JView { /** * Method to escape output. * * @param string $output The output to escape. * * @return string The escaped output. * * @since 12.1 */ public function escape($output); /** * Method to render the view. * * @return string The rendered view. * * @since 12.1 * @throws RuntimeException */ public function render(); }