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 /
layouts /
joomla /
toolbar /
Delete
Unzip
Name
Size
Permission
Date
Action
base.php
376
B
-rw-r--r--
2018-06-26 10:27
batch.php
772
B
-rw-r--r--
2018-06-26 10:27
confirm.php
559
B
-rw-r--r--
2018-06-26 10:27
containerclose.php
277
B
-rw-r--r--
2018-06-26 10:27
containeropen.php
399
B
-rw-r--r--
2018-06-26 10:27
help.php
534
B
-rw-r--r--
2018-06-26 10:27
iconclass.php
311
B
-rw-r--r--
2018-06-26 10:27
link.php
548
B
-rw-r--r--
2018-06-26 10:27
modal.php
1.24
KB
-rw-r--r--
2018-06-26 10:27
popup.php
656
B
-rw-r--r--
2018-06-26 10:27
separator.php
267
B
-rw-r--r--
2018-06-26 10:27
slider.php
708
B
-rw-r--r--
2018-06-26 10:27
standard.php
620
B
-rw-r--r--
2018-06-26 10:27
title.php
512
B
-rw-r--r--
2018-06-26 10:27
versions.php
922
B
-rw-r--r--
2018-06-26 10:27
Save
Rename
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_BASE') or die; JHtml::_('behavior.core'); /** * Generic toolbar button layout to open a modal * ----------------------------------------------- * @param array $displayData Button parameters. Default supported parameters: * - selector string Unique DOM identifier for the modal. CSS id without # * - class string Button class * - icon string Button icon * - text string Button text */ $selector = $displayData['selector']; $class = isset($displayData['class']) ? $displayData['class'] : 'btn btn-small'; $icon = isset($displayData['icon']) ? $displayData['icon'] : 'out-3'; $text = isset($displayData['text']) ? $displayData['text'] : ''; ?> <button class="<?php echo $class; ?>" data-toggle="modal" data-target="#<?php echo $selector; ?>"> <span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo $text; ?> </button>