Original Post von Musel am 03.03.2005 - 18:43
Diskussion: http://archiv.kit-security.de/include.ph…hp&threadid=863
Suche in der forum/report.php ~ Zeile 5 nach:
|
PHP-Quelltext
|
1
|
if (intval($_REQUEST['postid'])>0) $postid=$_REQUEST['postid'];
|
Und ersetze mit :
|
PHP-Quelltext
|
1
|
if (intval($_REQUEST['postid'])>0) $postid=intval($_REQUEST['postid']);
|