Mass stumble upon submitter

Roparadise

BANNED
Joined
May 25, 2011
Messages
784
Reaction score
1,422
Is there any program I can use to mass submit my url's to stumble upon and like x amount of other pages before each submit of new url? I have about 165 url's to submit initially then like them with 100 other accounts with different IP so that I can get a jump in traffic.
 
socialmarker shares to social bookmarking sites but it's ridiculously slow. If anyone else has any suggestions I'd be interested too!
 
socialmarker shares to social bookmarking sites but it's ridiculously slow. If anyone else has any suggestions I'd be interested too!

is it slower then manually doing it?
 
ok let's start with our first php lesson here :D

Code:
<?php
$url='http://www.stumbleupon.com/signup.php?pre=homepage';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 35);
curl_setopt($ch, CURLOPT_TIMEOUT, 35);
$data = curl_exec($ch);
$pattern='/<input type=\"hidden\" name=\"ftoken\" value=\"(.*?)\"/si';
preg_match($pattern,$data,$match);
$token=$match[1];

First lessen done :D
 
Second lesson :D

Code:
$poststring='email=[COLOR=Lime]your_email_address[/COLOR]&username=[COLOR=Lime]your_username[/COLOR]&_password=[COLOR=Lime]your_password[/COLOR]&gender=[COLOR=Lime]1[/COLOR]&bmonth=[COLOR=Lime]1[/COLOR]&bday=[COLOR=Lime]2[/COLOR]&byear=[COLOR=Lime]1995[/COLOR]&fb_uid=&fbc_signup=&ftoken='.$token.'&searchlinks=1&allow_email_search=1';

$url='http://www.stumbleupon.com/signup.php';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 3); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $poststring);
$data = curl_exec($ch);

End of lesson 2 :D
 
since september I think the teacher is gone
regards
Suave
 
Back
Top