عرض مشاركة واحدة
عضو نشيط
تاريخ التسجيل: Feb 2008-
#1 (permalink)  
كود مفيرس بس ما اعرف وين الفيرس


السلام عليكم

اين هو الفيروس في هذا الكود ؟؟؟؟

لان برنامج نود32 يقول فيه فيروس

بتمنى من احد الاخوة يقول اين الفيروس عشان نشيله


كود PHP:

<?php
    
    
    ob_start
(array("ob_gzhandler"9));
    
clearstatcache();

    
header("Cache-Control: no-cache, must-revalidate;"); 
    
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT;");

    
$mfhclass = new stdClass// <-- Just make it look like a class

    
ini_set("display_errors"  0);
    
ini_set("log_errors"      0);
    
ini_set("register_globals"0);
    
ini_set("memory_limit"    "128M");
    
ini_set("post_max_size"   "128M");
    
    if (
__FILE__ == NULL) {
        exit(
"<b>Fatal Error</b>: <br /><br /> __FILE__ is NULL <br /><br /> Application Exited");
    }
    
    
$mfhclass->info->root_path = (dirname(preg_replace("#/source/includes/#i""/"str_replace("\\""/",  __FILE__)))."/"); //<-- YAH! Now works on Windows
    
    
require_once "{$mfhclass->info->root_path}source/includes/config.php";
    require_once 
"{$mfhclass->info->root_path}source/includes/functions.php";
    require_once 
"{$mfhclass->info->root_path}source/includes/database.php";
    require_once 
"{$mfhclass->info->root_path}source/includes/template.php";

    
$mfhclass->db    = new mfhclass_mysql_driver();
    
$mfhclass->templ = new mfhclass_template_engine();
    
$mfhclass->funcs = new mfhclass_core_functions();

    
$mfhclass->input->get_vars    $mfhclass->funcs->clean_array($_GET);    // <-- MySQL Safe _GET Variable
    
$mfhclass->input->file_vars   $mfhclass->funcs->clean_array($_FILES);  // <-- MySQL Safe _FILES Variable
    
$mfhclass->input->post_vars   $mfhclass->funcs->clean_array($_POST);   // <-- MySQL Safe _POST Variable
    
$mfhclass->input->server_vars $mfhclass->funcs->clean_array($_SERVER); // <-- MySQL Safe _SERVER Variable
    
$mfhclass->input->cookie_vars $mfhclass->funcs->clean_array($_COOKIE); // <-- MySQL Safe _COOKIE Variable

    
$mfhclass->info->phpbb_version "3.0.1"// <-- DO NOT CHANGE !
    
$mfhclass->info->base_url      $mfhclass->funcs->fetch_url(falsefalsefalse);
    
$mfhclass->info->page_url      $mfhclass->funcs->fetch_url(truefalsetrue);
    
$mfhclass->info->script_path   = ((dirname($mfhclass->input->server_vars['php_self']) != "/") ? (dirname($mfhclass->input->server_vars['php_self'])."/") : dirname($mfhclass->input->server_vars['php_self']));
    
$mfhclass->info->current_page  round(($mfhclass->funcs->is_null($mfhclass->input->get_vars['page']) == false && $mfhclass->input->get_vars['page'] >= 1) ? $mfhclass->input->get_vars['page'] : 1);

    if (
version_compare(phpversion(), "3.0.0"">=") == false) { 
        
$mfhclass->templ->fatal_error("Your PHP version is not compatible with Mihalism Multi Forum Host v{$mfhclass->info->version}");
    } elseif (
extension_loaded("mysql") == false) {
        
$mfhclass->templ->fatal_error("Sorry but Mihalism Multi Forum Host v{$mfhclass->info->version} will not work without MySQL loaded as a PHP extension");
    }
    
    if (
$mfhclass->info->site_installed == false) {
        if (
preg_match("/install/"basename($mfhclass->input->server_vars['php_self'])) == false) {
            
$mfhclass->templ->page_title "Installation Required";
            
$mfhclass->templ->error("This website has yet to be installed. Please click <a href=\"install.php\">here</a> to continue to installation."true);
        }
    } else {
        
$do_not_null = array("do_not_null""mfhclass""mfh_root_path""phpEx""phpbb_root_path""HTTP_SERVER_VARS""GLOBALS""_GET""_POST""_COOKIE""_REQUEST""_SERVER""_SESSION""_ENV""_FILES");
        foreach (
$GLOBALS as $variable_name => $variable_value) {
            if (
in_array($variable_name$do_not_null) == false) {
                $
$variable_name NULL;
            }
        }

        
$sql $mfhclass->db->query("SELECT * FROM `mfh_site_settings`;");
        while (
$row $mfhclass->db->fetch_array($sql)) {
            
$mfhclass->info->config[$row['config_key']] = $row['config_value'];
        }
    }

?>






__________________
Mr.W
مستر دبليو !
MR.w غير متواجد حالياً   قديم 16-04-2008, 05:46 PM
رد مع اقتباس