Automatic Digg Script: Instant Diggs!

Status
Not open for further replies.

bishi

sleeves!
Jun 5, 2007
55
0
0
Rating - 0%
0   0   0
This automatic digg script will digg your posts for you from many different digg users. How many users? As many as you want.Its a very simple script written in php.

The script will automatically login to different digg accounts and digg your post for you.
Need to get to the front page of digg but you cant seem to get enough diggs from people to get you there. Well screw them, you dont need them. With this script you can digg your own post 1000 times and get there yourself.


Need an example?
Click here for a working demo: Untitled Document
Watch as your post gets diggs instantly.
Just input a url like
http://digg.com/2008_us_elections/The_Depth_of_John_McCain_s_Deceit_Cannot_be_Overstated
and press the submit button.

For $50.00 You can Have The Source Code To This Script.
If your interested: my paypal address is alcguyton@msn.com
 


Have you tested it with ACTUALLY getting to the front page? Chances are it won't; digg's spam detection is veryvery good.
 
yes digg is a smart motherfucker. In all reality you would need to use those accounts once and move on to newer accounts. In fact, the demo dosent work anymore because all of the account it was using just got banned. :mad:
I would love to try to see if we could get a submission to the front page. maybe if we all work together we can figure something out.
heres the source
PHP:
<?
ini_set("memory_limit","9999M");
ini_set("max_execution_time", "86400");
ini_set("max_allowed_packet","1024M");

$usernamepool = array("ddgag","gayimvery","altron22","ithisis","realtub22");
$passwordpool = array("newhouse","newhouse","newhouse","newhouse","newhouse");


for($i =0; $i < 10; $i++){

$username = $usernamepool[$i];
$password = $passwordpool[$i];

$url = 'http://digg.com/login';
$useragent="YahooSeeker-Testing/v3.9 (compatible; Mozilla 4.0; MSIE 5.5; http://search.yahoo.com/)";
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"username=$username&password=$password&submit=Login&processlogin=1&returnpage=%2F");
curl_exec( $ch );

$digg = 'http://digg.com/';

curl_setopt($ch, CURLOPT_URL,$digg);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_exec( $ch );

$diggurl = $_POST['url'];//"http://digg.com/business_finance/Welcome_to_Costco_I_Love_You";
$diggurlx = $_POST['url'];//"http://digg.com/business_finance/Welcome_to_Costco_I_Love_You";

$diggurl = rawurlencode($diggurl);

$post = "http://digg.com/tools/diggthis.php?u=$diggurl";


curl_setopt($ch, CURLOPT_URL,$post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
$data  = curl_exec($ch);
            
$regex = '/<input type="hidden" name="digcheck" value="(.+?)" \/>/';
preg_match($regex,$data,$match);
$wpnonce = $match[1];
        
$regex = '/<input type="hidden" name="id" value="(.+?)" \/>/';
preg_match($regex,$data,$match);
$userid = $match[1];


$remote = "http://digg.com/digremote/";

curl_setopt($ch, CURLOPT_URL, $remote);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"digcheck=$wpnonce&id=$userid&type=s");
curl_exec( $ch );
}
        echo "<meta http-equiv='refresh' content='0;URL=$diggurlx' />";

?>
 
yes digg is a smart motherfucker. In all reality you would need to use those accounts once and move on to newer accounts. In fact, the demo dosent work anymore because all of the account it was using just got banned. :mad:
I would love to try to see if we could get a submission to the front page. maybe if we all work together we can figure something out.

Why not just hire me?
I went 3 for 3 to the front page last week :rasta:
 
Hey I can do the same work as the script is doing . So it is good to hire a human then relying ona dumb script which is of no good.
 
Hey I can do the same work as the script is doing . So it is good to hire a human then relying ona dumb script which is of no good.


grammarm.jpg


gas-pump-spelling-and-grammar-500x375.jpg
 
Well, PHP curl supports user agent spoofing and proxies... so it should be no problem to adapt this.....right?

::emp::
 
Status
Not open for further replies.