Quote:
Originally Posted by mr.gamesbay
Great! 
But how i add an collapse, to open and close the pictures?
|
aghhh! injection? in a premium modification? >.<
Example:
Warn.php?&do=ViewWarnings&id=1/
Input isnt escaped before being put into the sql query. Seriously, what the ****. A premium modification that doesn't even check the input
I made a Fix:
open warn.php
find:
Code:
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
Below that insert:
Code:
//SQL-safe modification
function safescape($key,&$value){
$value = mysql_escape_string($value);
}
$func = 'safescape';
array_walk(&$_GET,$func);
array_walk(&$_POST,$func);
//SQL safety mod done