Generate Fake Visits using cURL
http://down--tech.blogspot.com/2015/01/generate-fake-visits-using-curl.html
Generate Fake Visits using cURL
This process also can be named "Traffic Generator". All you need is a proxy list and a server where to run the php script.
Fake visits also, are useful to SEO, you are better seen by Google and your page rank increase, having many traffic.
You can get a proxy list from the following link: http://hidemyass.com/proxy-list/
PHP Code :-
<?php
set_time_limit(0);
$proxies = array_values(array_unique(file('proxies.txt')));
$url = "http://www.downtechs.com/";
$new_array = array();
foreach($proxies as $value) {
$proxy = explode(":", $value);
$ip = trim($proxy[0]);
$port = trim($proxy[1]);
$new_array[] = array($ip, $port);
}
$proxies = $new_array;
foreach($proxies as $proxy) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_PROXY, $proxy[0]);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxy[1]);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36');
curl_setopt($ch, CURLOPT_URL, "$url");
curl_exec($ch);
curl_close($ch);
}
?>


But this would not appear in Google analytics or similar tracking system (as long as it's client side) :P
ReplyDeleteyou are right @Usama but this script is for beginners who want to increase their alexa rank. you only need a big list of proxy, thats it :)
Delete