
google-index.php
<?phpinclude "google.class.php";$google = new google();$url = addslashes(trim($_POST['url']));$sonuc = @$google->getIndex('site:'.$url.'');if($sonuc){echo $sonuc;}else{echo '0';}?>google-gorsel-index.php<?phpinclude "google.class.php";$google = new google();$url = addslashes(trim($_POST['url']));$sonuc = @$google->getImages('site:'.$url.'');if($sonuc){echo $sonuc;}else{echo '0';}?>google-backlink.php<?phpinclude "google.class.php";$google = new google();$url = addslashes(trim($_POST['url']));$sonuc = @$google->getBacklink('link:'.$url.'');if($sonuc){echo $sonuc;}else{echo '0';}?>alexa-dunya.php<?phpinclude "alexa.class.php";$alexa = new alexa();$url = addslashes(trim($_POST['url']));$sonuc = @$alexa->getGlobal($url);if($sonuc){echo $sonuc;}else{echo 'No Data';}?>alexa-ulke.php<?phpinclude "alexa.class.php";$alexa = new alexa();$url = addslashes(trim($_POST['url']));$sonuc = @$alexa->ulkeRank($url);if($sonuc){echo $sonuc;}else{echo 'No Data';}?>alexa-backlink.php<?phpinclude "alexa.class.php";$alexa = new alexa();$url = addslashes(trim($_POST['url']));$sonuc = @$alexa->backLink($url);if($sonuc){echo $sonuc;}else{echo 'No Data';}?>Yahoo-index.php<?php$url = addslashes(trim($_POST['url']));$kaynak = file_get_contents("http://tr.search.yahoo.com/search?p=site:$url");$r1 = explode('<span id="resultCount">',$kaynak);$r2 = explode('</span>',$r1[1]);$sonuc = @$r2[0];if(@$sonuc){echo $sonuc;}else{echo 'Yok';}?>dmoz.php<?php$url = addslashes(trim($_POST['url']));$kaynak = file_get_contents("http://www.dmoz.org/search?q=$url");$sonuc = explode('<strong>Open Directory Categories</strong>',$kaynak);if(@$sonuc[1]){echo 'Var';}else{echo 'Yok';}?>yas.php<?phpinclude "whois.class.php";$whois = new whois();$url = addslashes(trim($_POST['url']));$sonuc = @$whois->Creation($url);if($sonuc){echo $sonuc;}else{echo 'No Data';}?>lokasyon.php<?phpinclude "alexa.class.php";$alexa = new alexa();$url = addslashes(trim($_POST['url']));$sonuc = @$alexa->ulkeBayrak($url);if($sonuc){$ulkeadi = @$alexa->ulkeAdi($url);echo '<img src="'.$sonuc.'" title="'.$ulkeadi.'">';}else{echo 'No Data';}?>resim.php<?php$url = addslashes(trim($_POST['url']));echo '<img src="http://img.bitpixels.com/getthumbnail?code=76182&size=200&url='.$url.'">';?>bilgi.php
<?php$url = addslashes(trim($_POST['url']));$kaynak = @file_get_contents('http://'.$url.'');$r1 = @explode('<title>',$kaynak);$r2 = @explode('</title>',$r1[1]);$baslik = @$r2[0];if(!$baslik){$baslik = 'Not Found';}$a1 = @explode('<meta name="description" content="',$kaynak);$a2 = @explode('"',$a1[1]);$aciklama = @$a2[0];if(!$aciklama){$aciklama = 'Not Found';}$s1 = @explode('<meta name="keywords" content="',$kaynak);$s2 = @explode('"',$s1[1]);$kelime = @$s2[0];if(!$kelime){$kelime = 'Not Found';}$d1 = @explode('lang="',$kaynak);$d2 = @explode('"',$d1[1]);$dil = @$d2[0];if(!$dil){$dil = 'Not Found';}$ip = @gethostbyname($url);$k = @get_headers('http://'.$url.'');$say = preg_match_all('/<a href="/i',$kaynak,$ret);?> <h2>Site Bilgileri</h2> <strong>Başlık</strong><br /><?php echo $baslik; ?><br /> <strong>Açıklama</strong><br /><?php echo $aciklama; ?><br /> <strong>Kelimeler</strong><br /><?php echo $kelime; ?><br /> <strong>Site Dili</strong><br /><?php echo $dil; ?><br /> <strong>İp Adresi</strong><br /><?php echo $ip; ?><br /> <strong>Server</strong><br /><?php echo $k[1]; ?><br /> <strong>Dışarıya Link Sayısı</strong><br /><?php echo $say; ?><br /> <strong>Sayfa Sonucu</strong><br /><?php echo $k[0]; ?><br /> <strong>Sistem</strong><br /><?php echo $k[5]; ?><br /> <strong>CF-RAY</strong><br /><?php echo @$k[11]; ?><br />Hatalı Kodlar Bunlar Arkadaşlar.