phpNuke v6.9 still has 2 bugs
Date: Tuesday, August 19 @ 11:00:00 CEST
Topic: PHP-Nuke


2 bugs have been present ever since 6.6 and are still in 6.9. In modules/Downloads/voteinclude.php and modules/Web_Links/voteinclude.php, this code is at the top

if (!eregi("index.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
}

It needs to be changed to
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
}.

Without these changes the voting will not work!







This article comes from NukeCops
http://www.nukecops.com

The URL for this story is:
http://www.nukecops.com/modules.php?name=News&file=article&sid=519