|
From: OryNider <ory...@us...> - 2008-02-01 04:31:27
|
Update of /cvsroot/mxbb/mx_faq In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18034 Modified Files: faq.php rules.php Log Message: exploit security fix ;) Index: rules.php =================================================================== RCS file: /cvsroot/mxbb/mx_faq/rules.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rules.php 1 Feb 2008 04:21:24 -0000 1.3 --- rules.php 1 Feb 2008 04:31:12 -0000 1.4 *************** *** 20,24 **** * ***************************************************************************/ ! if ( !defined('IN_PORTAL') ) { die("Hacking attempt"); --- 20,24 ---- * ***************************************************************************/ ! if( !defined('IN_PORTAL') || !is_object($mx_block)) { die("Hacking attempt"); Index: faq.php =================================================================== RCS file: /cvsroot/mxbb/mx_faq/faq.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** faq.php 1 Feb 2008 04:21:24 -0000 1.3 --- faq.php 1 Feb 2008 04:31:12 -0000 1.4 *************** *** 20,24 **** * ***************************************************************************/ ! if ( !defined('IN_PORTAL') ) { die("Hacking attempt"); --- 20,24 ---- * ***************************************************************************/ ! if( !defined('IN_PORTAL') || !is_object($mx_block)) { die("Hacking attempt"); |