|
Currently, there are no known upgrades or patches to correct this issue. The vendor has been contacted. It is possible to correct the flaw by implementing the following workaround(s):
Modify the code:
unset($matches);
unset($loc);
if (preg_match("/([OdWo5NIbpuU4V2iJT0n]) /",
rawurldecode($loc=$_SERVER["QUERY_STRING"]), $matches)) {
die("YOU ARE SLAPPED BY <a href=\"http://nukecops.com\">NUKECOPS</a> BY
USING '$matches[1]' INSIDE '$loc'.");
}
to use strip_tags() like this:
unset($matches);
unset($loc);
if (preg_match("/([OdWo5NIbpuU4V2iJT0n]) /",
rawurldecode($loc=strip_tags($_SERVER["QUERY_STRING"])), $matches)) {
die("YOU ARE SLAPPED BY <a href=\"http://nukecops.com\">NUKECOPS</a> BY
USING '$matches[1]' INSIDE '$loc'.");
}
Alternativley disable use of the PhotoADay module.
|