Closed GoogleCodeExporter closed 9 years ago
This is probably sourced to the error_checking.php which I have complained
about in another issue.
$_GET['id']is not sanitized in any of the outputs it produces.
Will fix asap.
Original comment by tablatronics
on 24 Sep 2012 at 4:18
[deleted comment]
fixed via r756
Original comment by tablatronics
on 28 Sep 2012 at 6:57
Great work but it's necessary fix it again. I'd change your new line:
if(isset($_GET['id'])) $errid = ( function_exists( "filter_var") ) ? filter_var
( $_GET['id'], FILTER_SANITIZE_SPECIAL_CHARS) : htmlentities($_GET['err']);
by this:
if(isset($_GET['id'])) $errid = ( function_exists( "filter_var") ) ? filter_var
( $_GET['id'], FILTER_SANITIZE_SPECIAL_CHARS) : htmlentities($_GET['id']);
See the arguments of htmlentities(). Bye
Original comment by aquinadie
on 28 Sep 2012 at 9:47
oops
Original comment by tablatronics
on 29 Sep 2012 at 12:23
Another typo in r758 ?
Line 26, GET['$id'] instead of GET['id']
Original comment by carnav
on 29 Sep 2012 at 7:17
Thanks, one of the plugins in my new editor is not working properly apparently
and keeps changing stuff.
Original comment by tablatronics
on 29 Sep 2012 at 12:59
Fixed
Original comment by tablatronics
on 21 Oct 2012 at 4:00
Original issue reported on code.google.com by
aquinadie
on 20 Sep 2012 at 4:01