uawdijnntqw1x1x1
IP : 216.73.216.237
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
/
assets
/
..
/
www
/
admin
/
advertiser-delete.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 . '/www/admin/config.php'; require_once MAX_PATH . '/lib/OA/Dal.php'; require_once MAX_PATH . '/lib/OA/Maintenance/Priority.php'; // Register input variables phpAds_registerGlobal ('returnurl'); // Security check OA_Permission::enforceAccount(OA_ACCOUNT_MANAGER); // CVE-2013-5954 - see OA_Permission::checkSessionToken() method for details OA_Permission::checkSessionToken(); /*-------------------------------------------------------*/ /* Main code */ /*-------------------------------------------------------*/ if (!empty($clientid)) { $ids = explode(',', $clientid); while (list(,$clientid) = each($ids)) { // Security check OA_Permission::enforceAccessToObject('clients', $clientid, false, OA_Permission::OPERATION_DELETE); $doClients = OA_Dal::factoryDO('clients'); $doClients->clientid = $clientid; if ($doClients->get($clientid)) { $aAdvertiser = $doClients->toArray(); } $doClients->delete(); } // Queue confirmation message $translation = new OX_Translation (); if (count($ids) == 1) { $translated_message = $translation->translate ($GLOBALS['strAdvertiserHasBeenDeleted'], array( htmlspecialchars($aAdvertiser['clientname']) )); } else { $translated_message = $translation->translate ($GLOBALS['strAdvertisersHaveBeenDeleted']); } OA_Admin_UI::queueMessage($translated_message, 'local', 'confirm', 0); } // Run the Maintenance Priority Engine process OA_Maintenance_Priority::scheduleRun(); // Rebuild cache // require_once MAX_PATH . '/lib/max/deliverycache/cache-'.$conf['delivery']['cache'].'.inc.php'; // phpAds_cacheDelete(); /*-------------------------------------------------------*/ /* Return to the index page */ /*-------------------------------------------------------*/ if (!isset($returnurl) && $returnurl == '') { $returnurl = 'advertiser-index.php'; } header("Location: ".$returnurl); ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/assets/../www/admin/advertiser-delete.php