One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
web
/
modules
/
View File Name :
mod_banners.php
<?php /** * @version $Id: mod_banners.php 6085 2006-12-24 18:59:57Z robs $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' ); // clientids must be an integer $clientids = $params->get( 'banner_cids', '' ); $banner = null; $where = ''; if ( $clientids != '' ) { $clientidsArray = explode( ',', $clientids ); mosArrayToInts( $clientidsArray ); $where = "\n AND ( cid=" . implode( " OR cid=", $clientidsArray ) . " )"; } $query = "SELECT *" . "\n FROM #__banner" . "\n WHERE showBanner=1 " . $where ; $database->setQuery( $query ); $banners = $database->loadObjectList(); $numrows = count( $banners ); $bannum = 0; if ($numrows > 1) { $numrows--; mt_srand( (double) microtime()*1000000 ); $bannum = mt_rand( 0, $numrows ); } if ($numrows){ $banner = $banners[$bannum]; $query = "UPDATE #__banner" . "\n SET impmade = impmade + 1" . "\n WHERE bid = " . (int) $banner->bid ; $database->setQuery( $query ); if(!$database->query()) { echo $database->stderr( true ); return; } $banner->impmade++; if ($numrows > 0) { // Check if this impression is the last one and print the banner if ($banner->imptotal == $banner->impmade) { $query = "INSERT INTO #__bannerfinish ( cid, type, name, impressions, clicks, imageurl, datestart, dateend )" . "\n VALUES ( " . (int) $banner->cid . ", " . $database->Quote( $banner->type ) . ", " . $database->Quote( $banner->name ) . ", " . (int) $banner->impmade . ", " . (int) $banner->clicks . ", " . $database->Quote( $banner->imageurl ) . ", " . $database->Quote( $banner->date ) . ", 'now()' )" ; $database->setQuery($query); if(!$database->query()) { die($database->stderr(true)); } $query = "DELETE FROM #__banner" . "\n WHERE bid = " . (int) $banner->bid ; $database->setQuery($query); if(!$database->query()) { die($database->stderr(true)); } } if (trim( $banner->custombannercode )) { echo $banner->custombannercode; } else if (eregi( "(\.bmp|\.gif|\.jpg|\.jpeg|\.png)$", $banner->imageurl )) { $imageurl = $mosConfig_live_site .'/images/banners/'. $banner->imageurl; $link = sefRelToAbs( 'index.php?option=com_banners&task=click&bid='. $banner->bid ); if( !defined('_BANNER_ALT') ) DEFINE('_BANNER_ALT','Advertisement'); echo '<a href="'. $link .'" target="_blank"><img src="'. $imageurl .'" border="0" alt="Advertisement" /></a>'; } else if (eregi("\.swf$", $banner->imageurl)) { $imageurl = "$mosConfig_live_site/images/banners/".$banner->imageurl; echo "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" border=\"5\"> <param name=\"movie\" value=\"$imageurl\"><embed src=\"$imageurl\" loop=\"false\" pluginspage=\"http://www.macromedia.com/go/get/flashplayer\" type=\"application/x-shockwave-flash\"></embed></object>"; } } } else { echo " "; } ?>