uawdijnntqw1x1x1
IP : 216.73.216.186
Hostname : webd009.cluster130.gra.hosting.ovh.net
Kernel : Linux webd009.cluster130.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
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pressec
/
www
/
ads--temp-pour-eviter-les-spams
/
etc
/
..
/
www
/
admin
/
zone-modify.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ // Require the initialisation file require_once '../../init.php'; // Required files require_once MAX_PATH . '/lib/OA/Dal.php'; require_once MAX_PATH . '/www/admin/config.php'; require_once MAX_PATH . '/www/admin/lib-storage.inc.php'; require_once MAX_PATH . '/www/admin/lib-statistics.inc.php'; // Register input variables phpAds_registerGlobal('newaffiliateid', 'returnurl', 'duplicate'); // Security check OA_Permission::enforceAccount(OA_ACCOUNT_MANAGER, OA_ACCOUNT_TRAFFICKER); OA_Permission::enforceAccessToObject('affiliates', $affiliateid); OA_Permission::enforceAccessToObject('zones', $zoneid); /*-------------------------------------------------------*/ /* Main code */ /*-------------------------------------------------------*/ if (isset($zoneid) && $zoneid != '') { OA_Permission::checkSessionToken(); if (isset($newaffiliateid) && $newaffiliateid != '') { // A publisher cannot move a zone to another publisher! OA_Permission::enforceAccount(OA_ACCOUNT_MANAGER); // Needs to ensure that the publisher the zone is being moved // to is owned by the agency, if an agency is logged in OA_Permission::enforceAccessToObject('affiliates', $newaffiliateid); // Move the zone to the new Publisher/Affiliate $doZones = OA_Dal::factoryDO('zones'); $doZones->get($zoneid); $doZones->affiliateid = $newaffiliateid; $doZones->update(); // Queue confirmation message $zoneName = $doZones->zonename; $doAffiliates = OA_Dal::factoryDO('affiliates'); if ($doAffiliates->get($newaffiliateid)) { $websiteName = $doAffiliates->name; } $translation = new OX_Translation(); $translated_message = $translation->translate($GLOBALS['strZoneHasBeenMoved'], array(htmlspecialchars($zoneName), htmlspecialchars($websiteName)) ); OA_Admin_UI::queueMessage($translated_message, 'local', 'confirm', 0); Header("Location: ".$returnurl."?affiliateid=".$newaffiliateid."&zoneid=".$zoneid); exit; } elseif (isset($duplicate) && $duplicate == 'true') { // Can the user add new zones? if (OA_Permission::isAccount(OA_ACCOUNT_TRAFFICKER)) { OA_Permission::enforceAllowed(OA_PERM_ZONE_ADD); } // Duplicate the zone $doZones = OA_Dal::factoryDO('zones'); $doZones->get($zoneid); $oldName = $doZones->zonename; $new_zoneid = $doZones->duplicate(); if ($doZones->get($new_zoneid)) { $newName = $doZones->zonename;; } // Queue confirmation message $translation = new OX_Translation(); $translated_message = $translation->translate ( $GLOBALS['strZoneHasBeenDuplicated'], array(MAX::constructURL(MAX_URL_ADMIN, "zone-edit.php?affiliateid=$affiliateid&zoneid=$zoneid"), htmlspecialchars($oldName), MAX::constructURL(MAX_URL_ADMIN, "zone-edit.php?affiliateid=$affiliateid&zoneid=$new_zoneid"), htmlspecialchars($newName)) ); OA_Admin_UI::queueMessage($translated_message, 'local', 'confirm', 0); Header("Location: ".$returnurl."?affiliateid=".$affiliateid."&zoneid=".$new_zoneid); exit; } } Header("Location: ".$returnurl."?affiliateid=".$affiliateid."&zoneid=".$zoneid); ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/etc/../www/admin/zone-modify.php