عرض مشاركة واحدة
awlstyle-2 awlstyle-3 awlstyle-1
awlstyle-5
قديم 02-12-2007, 09:08 PM   #1 (permalink)
op4host
:: مطرود من قبل الإدارة ::
Thumbs up هذا الموضوع لســد ثغــرات المجلة ( مهم جداً)وهما 6 ثغرات يجب التعامل معهم

بسم الله الرحمن الرحيم

اولا ثغرة الاعضاء

افتح ملف


رمز:
mkportal/modules/blog/index.php
وابحث عن

كود PHP:
function clean_template ($t="") { 

                $t = str_replace( "&#"   , "", $t ); 
                $t = str_replace( ">"    , ">", $t ); 
                $t = str_replace( "&lt;"    , "<", $t ); 
                $t = str_replace( "<?"   , ""       , $t ); 
                $t = str_replace( "
?"   , ""       , $t ); 
                $t = preg_replace( "
/<******/i"  , ""   , $t ); 
                $t = preg_replace( "
/java******/i" , "", $t ); 
                $t = preg_replace( "
/about/i"     , "", $t ); 
                $t = preg_replace( "
/vb******/i"     , "", $t ); 
                $t = preg_replace( "
/alert/i"      , ""      , $t ); 
                $t = preg_replace( "
/onmouseover/i", "", $t ); 
                $t = preg_replace( "
/onclick/i"    , ""    , $t ); 
                $t = preg_replace( "
/onload/i"     , ""     , $t ); 
                $t = preg_replace( "
/onsubmit/i"   , ""   , $t ); 

                return $t; 
        }
واستبدله بهذا الكود


كود PHP:
function clean_template ($t="") { 

        $t = str_replace( "&#"   , "", $t ); 
        $t = str_replace( "&gt;"    , ">", $t ); 
        $t = str_replace( "&lt;"    , "<", $t ); 
        $t = str_replace( "<?"   , ""       , $t ); 
        $t = str_replace( "
?"   , ""       , $t ); 
        while( preg_match( "
#******(.+?)/******#ies" , $t ) ) { 
                
$t preg_replace"#******(.+?)/******#ies""" $t); 
        } 
        
$t preg_replace"/java******/i" ""$t ); 
        
$t preg_replace"/about/i"     ""$t ); 
        
$t preg_replace"/vb******/i"     ""$t ); 
        
$t preg_replace"/alert/i"      ""      $t ); 
        
$t preg_replace"/onmouseover/i"""$t ); 
        
$t preg_replace"/onclick/i"    ""    $t ); 
        
$t preg_replace"/onload/i"     ""     $t ); 
        
$t preg_replace"/onsubmit/i"   ""   $t ); 

        return 
$t
    }

 

الموضوع الأصلي : هذا الموضوع لسد ثغرات المجلة فارجو تثبيتة     -||-     المصدر : |: معهد أول ستايل :|     -||-     الكاتب : op4host





التعديل الأخير تم بواسطة op4host ; 04-01-2008 الساعة 10:58 AM.
    رد مع اقتباس
awlstyle-4
awlstyle-7 awlstyle-6
awlstyle-9 awlstyle-10 awlstyle-8