-
-
Save mosleim/b8ab69aede7174df73330f2d0e1e6dde to your computer and use it in GitHub Desktop.
Put your best SEO foot forward and generate a large number of high value backlinks ina matter of seconds.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function make($url){ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_USERAGENT, "Googlebot/2.1 (http://www.googlebot.com/bot.html)"); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 60); | |
curl_setopt($ch, CURLOPT_REFERER, $url); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
// Gagal ngecURL | |
if(!$site = curl_exec($ch)){ | |
return 'error'; | |
} | |
// Sukses ngecURL | |
else{ | |
curl_close($ch); | |
return 'success'; | |
} | |
} | |
function backlink($domain){ | |
$url[] = 'http://www.builtwith.com/'.$domain; | |
$url[] = 'http://validator.w3.org/check?uri='.$domain; | |
$url[] = 'http://whois.tools4noobs.com/info/'.$domain; | |
$url[] = 'http://www.alexa.com/siteinfo/'.$domain; | |
$url[] = 'http://www.alexa.com/data/details/?url='.$domain; | |
$url[] = 'http://www.aboutdomain.org/backlinks/'.$domain.'/'; | |
$url[] = 'http://www.robtex.com/dns/'.$domain.'.html'; | |
$url[] = 'http://www.quantcast.com/'.$domain; | |
$url[] = 'http://uptime.netcraft.com/up/graph?site='.$domain; | |
$url[] = 'http://www.pageheat.com/heat/'.$domain; | |
$url[] = 'http://www.aboutthedomain.com/'.$domain; | |
$url[] = 'http://websiteshadow.com/'.$domain; | |
$url[] = 'http://www.surcentro.com/en/info/'.$domain; | |
$url[] = 'http://www.onlinewebcheck.com/check.php?url='.$domain; | |
$url[] = 'http://websitevaluecalculator.org/'.$domain; | |
$url[] = 'http://statswebsites.com/'.$domain; | |
$url[] = 'http://whoisx.co.uk/'.$domain; | |
$url[] = 'http://www.websiteaccountant.nl/'.$domain; | |
$url[] = 'http://www.talkreviews.ro/'.$domain; | |
$url[] = 'http://www.listenarabic.com/search?q='.$domain.'&sa=Search'; | |
$url[] = 'http://www.keywordspy.com/research/search.aspx?q='.$domain.'&tab=domain-overview'; | |
$url[] = 'http://boardreader.com/linkinfo/'.$domain; | |
$url[] = 'http://builtwith.com/'.$domain; | |
$url[] = 'http://www.websiteaccountant.be/'.$domain; | |
$url[] = 'http://www.altavista.com/yhs/search?fr=altavista&itag=ody&kgs=0&kls=0&q=site:'.$domain; | |
$url[] = 'http://www.consultanta-seo.ro/results/'.$domain; | |
$url[] = 'http://siteanalytics.compete.com/'.$domain.'/'; | |
$url[] = 'http://wholinkstome.com/url/'.$domain; | |
$url[] = 'http://www.serpanalytics.com/#competitor/'.$domain.'/summary//1'; | |
$url[] = 'http://www.pagerankplace.com/website/'.$domain; | |
$url[] = 'http://hosts-file.net/default.asp?s='.$domain; | |
$url[] = 'http://www.protect-x.com/info/'.$domain; | |
$url[] = 'http://whoislookupdb.com/whois-'.$domain; | |
$url[] = 'http://directory.joomlartwork.com/'.$domain; | |
$url[] = 'http://openlinkprofiler.org/r/'.$domain; | |
$url[] = 'https://www.threatcrowd.org/domain.php?domain='.$domain; | |
$url[] = 'https://www.similarweb.com/website/'.$domain; | |
$url[] = 'http://www.checklinks.top/'.$domain.'/'; | |
$url[] = 'http://downoruprightnow.com/status/'.$domain; | |
$url[] = 'http://website.informer.com/'.$domain; | |
$url[] = 'http://updates.easycounter.com/'.$domain; | |
$url[] = 'http://www.website-test.org/en/www/'.$domain; | |
$url[] = 'http://www.siteprice.org/website-worth/'.$domain; | |
$url[] = 'http://archive.is/'.$domain; | |
$url[] = 'http://seocompr.com/www/'.$domain.'.html'; | |
$url[] = 'http://www.sitelinks.info/'.$domain.'/'; | |
$url[] = 'http://sitesec.co/'.$domain; | |
$url[] = 'http://'.$domain.'.hotsited.com/'; | |
$url[] = 'https://top1m.info/domains/'.$domain; | |
$url[] = 'http://minify.mobi/results/'.$domain; | |
$url[] = 'http://www.siteparallel.com/'.$domain; | |
return $url; | |
} | |
$domain = 'google.com'; | |
$url = backlink($domain)[0]; | |
echo $url . ' - ' . make($url); | |
/* Fatal error: Maximum execution time of 30 seconds exceeded | |
foreach(backlink($domain) as $url){ | |
echo $url . ' - ' . make($url); | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment