Install updates and add this script:
Quote:
<?php
// Basic code , JoniMontana.
$array1 = array("select","insert","drop");
$string = $_SERVER['query_string'];
foreach ($array1 as $x)
{
if (stristr($x,$string) AND stristr("where",$string))
{
header("Location: index.php");
}
}
?>
|
put it on your main index.php file. thats help agienst scriptkids who try to inject sql tought addr...