بسم الله الرحمن الرحيم
إخواني الكرام
السلام عليكم ورحمة الله وبركاته
نصحني بعض الإخوة بعمل حماية للمنتدى عن طريق تعديل admincp وتعديل modcp وأيضا تعديل ملف config.php الموجود في الدليل includes
قمت إخواني الكرام بعمل تعديل على admincp وغيرت اسمه إلى loayy
وأيضا قمت بتعديل modcp إلى adham
وقمت بتعديل ما يلي :
$config['Misc']['admincpdir'] = 'admincp';
عدلته إلى
$config['Misc']['admincpdir'] = 'loayy';
والملف
$config['Misc']['modcpdir'] = 'modcp';
عدلته إلى
$config['Misc']['modcpdir'] = 'adham';
فلم يعمل المنتدى
وبعد ذلك قمت مرة أخرى بإعادة الوضع إلى طبيعته يعني أعدت التعديلات كما هي فأيضا لم يعمل المنتدى
وظهرت معي الرسالة التالية :
كود:
###################################################### || || # vBulletin 3.6.4 || # ---------------------------------------------------------------- # || || # Copyright ©2000-2006 Jelsoft Enterprises Ltd. All Rights Reserved. || || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # || || #################################################################### || \*======================================================================*/ if (!defined('VB_AREA') AND !defined('THIS_SCRIPT')) { echo 'VB_AREA or THIS_SCRIPT must be defined to continue'; exit; } if (isset($_REQUEST['GLOBALS']) OR isset($_FILES['GLOBALS'])) { echo 'Request tainting attempted.'; exit; } @ini_set('pcre.backtrack_limit', -1); // start the page generation timer $pagestarttime = microtime(); define('TIMESTART', microtime()); // set the current unix timestamp define('TIMENOW', time()); // define current directory if (!defined('CWD')) { define('CWD', (($getcwd = getcwd()) ? $getcwd : '.')); } // ############################################################################# // fetch the core includes require_once(CWD . '/includes/class_core.php'); // initialize the data registry $vbulletin =& new vB_Registry(); // parse the configuration ini file $vbulletin->fetch_config(); if (CWD == '.') { // getcwd() failed and so we need to be told the full forum path in config.php if (!empty($vbulletin->config['Misc']['forumpath'])) { define('DIR', $vbulletin->config['Misc']['forumpath']); } else { trigger_error('Configuration: You must insert a value for forumpath in config.php', E_USER_ERROR); } } else { define('DIR', CWD); } if (!empty($vbulletin->config['Misc']['datastorepath'])) { define('DATASTORE', $vbulletin->config['Misc']['datastorepath']); } else { define('DATASTORE', DIR . '/includes/datastore'); } if (!$vbulletin->debug) { set_error_handler('vb_error_handler'); } // ############################################################################# // load database class switch (strtolower($vbulletin->config['Database']['dbtype'])) { // load standard MySQL class case 'mysql': case '': { if ($vbulletin->debug AND ($vbulletin->input->clean_gpc('r', 'explain', TYPE_UINT) OR (defined('POST_EXPLAIN') AND !empty($_POST)))) { // load 'explain' database class require_once(DIR . '/includes/class_database_explain.php'); $db =& new vB_Database_Explain($vbulletin); } else { $db =& new vB_Database($vbulletin); } break; } case 'mysql_slave': { require_once(DIR . '/includes/class_database_slave.php'); $db =& new vB_Database_Slave($vbulletin); break; } // load MySQLi class case 'mysqli': { if ($vbulletin->debug AND ($vbulletin->input->clean_gpc('r', 'explain', TYPE_UINT) OR (defined('POST_EXPLAIN') AND !empty($_POST)))) { // load 'explain' database class require_once(DIR . '/includes/class_database_explain.php'); $db =& new vB_Database_MySQLi_Explain($vbulletin); } else { $db =& new vB_Database_MySQLi($vbulletin); } break; } case 'mysqli_slave': { require_once(DIR . '/includes/class_database_slave.php'); $db =& new vB_Database_Slave_MySQLi($vbulletin); break; } // load extended, non MySQL class default: { // this is not implemented fully yet // $db = 'vB_Database_' . $vbulletin->config['Database']['dbtype']; // $db =& new $db($vbulletin); die('Fatal error: Database class not found'); } } // get core functions if (!empty($db->explain)) { $db->timer_start('Including Functions.php'); require_once(DIR . '/includes/functions.php'); $db->timer_stop(false); } else { require_once(DIR . '/includes/functions.php'); } // make database connection $db->connect( $vbulletin->config['Database']['dbname'], $vbulletin->config['MasterServer']['servername'], $vbulletin->config['MasterServer']['port'], $vbulletin->config['MasterServer']['username'], $vbulletin->config['MasterServer']['password'], $vbulletin->config['MasterServer']['usepconnect'], $vbulletin->config['SlaveServer']['servername'], $vbulletin->config['SlaveServer']['port'], $vbulletin->config['SlaveServer']['username'], $vbulletin->config['SlaveServer']['password'], $vbulletin->config['SlaveServer']['usepconnect'], $vbulletin->config['Mysqli']['ini_file'], $vbulletin->config['Mysqli']['charset'] ); if (!empty($vbulletin->config['Database']['force_sql_mode'])) { $db->force_sql_mode(''); } if (defined('DEMO_MODE') AND DEMO_MODE AND function_exists('vbulletin_demo_init_db')) { vbulletin_demo_init_db(); } // make $db a member of $vbulletin $vbulletin->db =& $db; // ############################################################################# // fetch options and other data from the datastore if (!empty($db->explain)) { $db->timer_start('Datastore Setup'); } $datastore_class = (!empty($vbulletin->config['Datastore']['class'])) ? $vbulletin->config['Datastore']['class'] : 'vB_Datastore'; if ($datastore_class != 'vB_Datastore') { require_once(DIR . '/includes/class_datastore.php'); } $vbulletin->datastore =& new $datastore_class($vbulletin, $db); $vbulletin->datastore->fetch($specialtemplates); if ($vbulletin->bf_ugp === null) { echo '
vBulletin datastore error caused by one or more of the following:
' . (function_exists('mmcache_get') ? '
Turck MMCache has been detected on your server, first try disabling Turck MMCache or replacing it with eAccelerator' : '') . '
You may have uploaded vBulletin 3.6 files without also running the vBulletin upgrade script. If you have not run the upgrade script, do so now.
The datastore cache may have been corrupted. Run Rebuild Bitfields from tools.php, which you can upload from the do_not_upload folder of the vBulletin package.
'; trigger_error('vBulletin datastore cache incomplete or corrupt', E_USER_ERROR); } if (!empty($db->explain)) { $db->timer_stop(false); } // ############################################################################# /** * If shutdown functions are allowed, register exec_shut_down to be run on exit. * Disable shutdown function for IIS CGI with Gzip enabled since it just doesn't work, sometimes, unless we kill the content-length header * Also disable for PHP4 due to the echo() timeout issue */ define('SAPI_NAME', php_sapi_name()); if (!defined('NOSHUTDOWNFUNC')) { if (PHP_VERSION < '5' OR ((SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi') AND $vbulletin->options['gzipoutput'] AND strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false)) { define('NOSHUTDOWNFUNC', true); } else { vB_Shutdown::add('exec_shut_down'); } } // fetch url of referring page after we have access to vboptions['forumhome'] $vbulletin->url =& $vbulletin->input->fetch_url(); define('REFERRER_PASSTHRU', $vbulletin->url); // ############################################################################# // referrer check for POSTs; this is simply designed to prevent self-submitting // forms on foreign hosts from doing nasty things if (strtoupper($_SERVER['REQUEST_METHOD']) == 'POST' AND !defined('SKIP_REFERRER_CHECK')) { if ($_SERVER['HTTP_HOST'] OR $_ENV['HTTP_HOST']) { $http_host = ($_SERVER['HTTP_HOST'] ? $_SERVER['HTTP_HOST'] : $_ENV['HTTP_HOST']); } else if ($_SERVER['SERVER_NAME'] OR $_ENV['SERVER_NAME']) { $http_host = ($_SERVER['SERVER_NAME'] ? $_SERVER['SERVER_NAME'] : $_ENV['SERVER_NAME']); } if ($http_host AND $_SERVER['HTTP_REFERER']) { $referrer_parts = @parse_url($_SERVER['HTTP_REFERER']); $ref_port = intval($referrer_parts['port']); $ref_host = $referrer_parts['host'] . (!empty($ref_port) ? ":$ref_port" : ''); $allowed = preg_split('#\s+#', $vbulletin->options['allowedreferrers'], -1, PREG_SPLIT_NO_EMPTY); $allowed[] = preg_replace('#^www\.#i', '', $http_host); $allowed[] = '.paypal.com'; $pass_ref_check = false; foreach ($allowed AS $host) { if (preg_match('#' . preg_quote($host, '#') . '$#siU', $ref_host)) { $pass_ref_check = true; break; } } unset($allowed); if ($pass_ref_check == false) { die('In order to accept POST request originating from this domain, the admin must add this domain to the whitelist.'); } } } // ############################################################################# // demo mode stuff if (defined('DEMO_MODE') AND DEMO_MODE AND function_exists('vbulletin_demo_init_page')) { vbulletin_demo_init_page(); } // ############################################################################# // setup the hooks & plugins system if ($vbulletin->options['enablehooks'] OR defined('FORCE_HOOKS')) { require_once(DIR . '/includes/class_hook.php'); $hookobj =& vBulletinHook::init(); if ($vbulletin->options['enablehooks'] AND !defined('DISABLE_HOOKS')) { if (!empty($vbulletin->pluginlistadmin) AND is_array($vbulletin->pluginlistadmin)) { $vbulletin->pluginlist = array_merge($vbulletin->pluginlist, $vbulletin->pluginlistadmin); unset($vbulletin->pluginlistadmin); } $hookobj->set_pluginlist($vbulletin->pluginlist); } } else { // make a null class for optimization /** * @ignore */ class vBulletinHook { function fetch_hook() { return false; } } $vbulletin->pluginlist = ''; } // if you push things onto this, you need to include the single quotes! $datastore_fetch = array(); ($hook = vBulletinHook::fetch_hook('init_startup')) ? eval($hook) : false; if (!empty($datastore_fetch)) { $vbulletin->datastore->do_db_fetch(implode(',', $datastore_fetch)); } unset($datastore_fetch); // ############################################################################# // do a callback to modify any variables that might need modifying based on HTTP input // eg: doing a conditional redirect based on a $goto value or $vbulletin->noheader must be set if (function_exists('exec_postvar_call_back')) { exec_postvar_call_back(); } // ############################################################################# // initialize $show variable - used for template conditionals $show = array(); // ############################################################################# // Clean ****** Vars $vbulletin->input->clean_array_gpc('c', array( 'vbulletin_collapse' => TYPE_STR, ******_PREFIX . 'referrerid' => TYPE_UINT, ******_PREFIX . 'userid' => TYPE_UINT, ******_PREFIX . 'password' => TYPE_STR, ******_PREFIX . 'lastvisit' => TYPE_UINT, ******_PREFIX . 'lastactivity' => TYPE_UINT, ******_PREFIX . 'threadedmode' => TYPE_STR, ******_PREFIX . 'sessionhash' => TYPE_STR, ******_PREFIX . 'styleid' => TYPE_UINT, ******_PREFIX . 'languageid' => TYPE_UINT, )); // ############################################################################# // Setup session if (!empty($db->explain)) { $db->timer_start('Session Handling'); } $vbulletin->input->clean_array_gpc('r', array( 's' => TYPE_STR, 'styleid' => TYPE_INT, 'langid' => TYPE_INT, )); // conditional used in templates to hide things from search engines. $show['search_engine'] = ($vbulletin->superglobal_size['_******'] == 0 AND preg_match("#(google|msnbot|yahoo! slurp)#si", $_SERVER['HTTP_USER_AGENT'])); // handle session input $sessionhash = (!empty($vbulletin->GPC['s']) ? $vbulletin->GPC['s'] : $vbulletin->GPC[******_PREFIX . 'sessionhash']); // override ****** // Set up user's chosen language if ($vbulletin->GPC['langid'] AND !empty($vbulletin->languagecache["{$vbulletin->GPC['langid']}"]['userselect'])) { $languageid =& $vbulletin->GPC['langid']; vbset******('languageid', $languageid); } else if ($vbulletin->GPC[******_PREFIX . 'languageid'] AND !empty($vbulletin->languagecache[$vbulletin->GPC[******_PREFIX . 'languageid']]['userselect'])) { $languageid = $vbulletin->GPC[******_PREFIX . 'languageid']; } else { $languageid = 0; } // Set up user's chosen style if ($vbulletin->GPC['styleid']) { $styleid =& $vbulletin->GPC['styleid']; vbset******('styleid', $styleid); } else if ($vbulletin->GPC[******_PREFIX . 'styleid']) { $styleid = $vbulletin->GPC[******_PREFIX . 'styleid']; } else { $styleid = 0; } // build the session and setup the environment $vbulletin->session =& new vB_Session($vbulletin, $sessionhash, $vbulletin->GPC[******_PREFIX . 'userid'], $vbulletin->GPC[******_PREFIX . 'password'], $styleid, $languageid); // Hide sessionid in url if we are a search engine or if we have a ****** $vbulletin->session->set_session_visibility($show['search_engine'] OR $vbulletin->superglobal_size['_******'] > 0); $vbulletin->userinfo =& $vbulletin->session->fetch_userinfo(); $vbulletin->session->do_lastvisit_update($vbulletin->GPC[******_PREFIX . 'lastvisit'], $vbulletin->GPC[******_PREFIX . 'lastactivity']); // Google Web Accelerator can display sensitive data ignoring any headers regarding caching // it's a good thing for guests but not for anyone else if ($vbulletin->userinfo['userid'] > 0 AND strpos($_SERVER['HTTP_X_MOZ'], 'prefetch') !== false) { if (SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi') { header('Status: 403 Forbidden'); } else { header('HTTP/1.1 403 Forbidden'); } die('Prefetching is not allowed due to the various privacy issues that arise.'); } // use the session-specified style if there is one if ($vbulletin->session->vars['styleid'] != 0) { $vbulletin->userinfo['styleid'] = $vbulletin->session->vars['styleid']; } if (!empty($db->explain)) { $db->timer_stop(false); } /*======================================================================*\ || #################################################################### || # CVS: $RCSfile$ - $Revision: 15856 $ || #################################################################### \*======================================================================*/ ?>علما بأن رابط منتداي هو :
http://www.loayy.moshax.com/vb/
يرجى الحل العاجل أرجوكم
أخوكم المحب لكم في الله / لؤي (أبو العبد)