With the cooperation of Scott Klarr (
http://diffusionstudios.com/) we are pleased to release this security update:
This will prevent people from uploading free credits into your featured ads, also please use the security fix for the wizards/fad.php file.
EDIT: Link to wizards/fad.php fix is here:
http://auroraadmintraining.info/index.php/topic,1005.0.htmlYou will want to cut and paste the entire code into your file:
<?
$id=$_GET['id'];
include("config.php");
include("includes/mysql.php");
$Db1 = new DB_sql;
$Db1->connect($DBHost, $DBDatabase, $DBUser, $DBPassword);
$id = mysql_real_escape_string($_REQUEST['id']);
$sql=$Db1->query("SELECT * FROM fads WHERE id='$id'");
$banner=$Db1->fetch_array($sql);
$sql=$Db1->query("UPDATE fads SET clicks=clicks+1 WHERE id='$id'");
header("Location: $banner[target]");
?>