PHP-Nuke Nederland: Forums
PHP-Nuke Nederland :: View topic - [Fix] - phpbb_root_path Arbitrary File Inclusion (Critical)
Author
Message
kenwood
Moderator
Joined: Sep 07, 2004
Posts: 246
Posted:
Sat 07 May 2005 3:51
Fix voor BBtoNuke 2.0.14
Open modules/Forums/admin/pagestart.php and find:
Code:
define('FORUM_ADMIN', true);
include("../../../mainfile.php");
include($phpbb_root_path.'common.'.$phpEx);
Replace with:
Code:
define('FORUM_ADMIN', true);
define("PHPBB_ROOT_PATH", $phpbb_root_path);
define("PHPBB_PHPEX", $phpEx);
include("../../../mainfile.php");
$phpbb_root_path = PHPBB_ROOT_PATH;
$phpEx = PHPBB_PHPEX;
include($phpbb_root_path.'common.'.$phpEx);
Original advisory: http://secunia.com/advisories/15244/
BlueLion
Administrator
Joined: Aug 21, 2004
Posts: 2836
Posted:
Sat 07 May 2005 6:40
Thx, kenwood. Ben er nog niet helemaal achter wat dit doet/verhelpt.
BL
Donaties
Adverteren
Wilt u het forum steunen, dan kunt u nu eenvoudig doneren met PayPal.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
Powered by phpBB © 2001, 2005 phpBB Group