Linkini verdiğiniz scriptin içinde bilha.php dosyasını incelediğimde aşağıdaki kodları görüyorum.
Alıntı
<?php
error_reporting(0);
$d = $_POST["d"];
$ch = curl_init();
$user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6';
$data = "data=12345";
curl_setopt($ch, CURLOPT_URL, 'http://www.bilhane.com/reklam.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_REFERER,"http://www.google.com");
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$cikti = curl_exec($ch);
curl_close($ch);
echo $cikti;
?>