• 05-07-2010, 15:00:48
    #1
    Merhaba arkadaşlar ; http://gdataonline.com/seekhash.php bu sayfaya md5 postluyorum aşağıdaki kodlar ile, Ama Please disable any ad-blocking software you currently have activated in order to help keep GDataOnline.com a free service. yazan bir sayfaya yönlendiriyor. acaba nasıl aşabiliriz bu sorunu

    <?
    $ch = curl_init(); // oturum başlat
    //POST  adresi
    curl_setopt($ch, CURLOPT_URL,"http://gdataonline.com/seekhash.php");
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION , 0);  
    curl_setopt($ch,CURLOPT_REFERER,"ceviz.net");
    curl_setopt($ch, CURLOPT_POSTFIELDS,"hash=93e601638b4c144ca7ebd2541b14f4fe");
    curl_exec ($ch);
    curl_close ($ch);
    ?>
  • 05-07-2010, 15:04:36
    #2
    Orada post ile kontrol yapılıyor.
  • 05-07-2010, 15:07:36
    #3
    vBulletinMaster adlı üyeden alıntı: mesajı görüntüle
    Orada post ile kontrol yapılıyor.
    proxy servisleriyle işlem yapılıyor. Bir çözümü olmalı.
  • 05-07-2010, 15:55:32
    #4
    <?php
    	function coz($coz)
    	{
    		$site = file_get_contents('http://gdataonline.com/seekhash.php');
    		$kod = explode('name="code" value="',$site);
    		$kod = explode('"',$kod[1]);
    		$curl = curl_init();
    		$post = 'code='.$kod[0].'&hash='.$coz;
    		curl_setopt($curl, CURLOPT_URL, 'http://gdataonline.com/seekhash.php');
    		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    		curl_setopt($curl, CURLOPT_HEADER, false);
    		curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
    		curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    		curl_setopt($curl, CURLOPT_POST,true);
    		curl_setopt($curl, CURLOPT_POSTFIELDS,$post);
    		$cikti = curl_exec($curl);
    		curl_close($curl);
    		$al = explode('<td width="35%">',$cikti);
    		$sonuc = explode('</td>',$al[1]);
    		return $sonuc[0];
    	}
    	
    	echo coz('5583413443164b56500def9a533c7c70');
    ?>
    ?????
  • 05-07-2010, 16:24:31
    #5
    AKoyun adlı üyeden alıntı: mesajı görüntüle
    <?php
    	function coz($coz)
    	{
    		$site = file_get_contents('http://gdataonline.com/seekhash.php');
    		$kod = explode('name="code" value="',$site);
    		$kod = explode('"',$kod[1]);
    		$curl = curl_init();
    		$post = 'code='.$kod[0].'&hash='.$coz;
    		curl_setopt($curl, CURLOPT_URL, 'http://gdataonline.com/seekhash.php');
    		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    		curl_setopt($curl, CURLOPT_HEADER, false);
    		curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
    		curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    		curl_setopt($curl, CURLOPT_POST,true);
    		curl_setopt($curl, CURLOPT_POSTFIELDS,$post);
    		$cikti = curl_exec($curl);
    		curl_close($curl);
    		$al = explode('<td width="35%">',$cikti);
    		$sonuc = explode('</td>',$al[1]);
    		return $sonuc[0];
    	}
    	
    	echo coz('5583413443164b56500def9a533c7c70');
    ?>
    ?????
    hemen deniyorum, Çok sağol..
  • 05-07-2010, 16:52:29
    #6
    Çalıştı repini attım eyw.