[GET] Twitter Mass Follow PHP Script with 1000 Twitter Accounts

warrior007

Regular Member
Joined
Dec 24, 2011
Messages
335
Reaction score
39
Not sure whether its already been shared here but i can't find it using search.

How it works:
Just upload the script in public html folder of your Hosting server and open the link in your web browser. :p

Here is the Script with 1000 twitter accounts (No idea how long these accounts gonna work after being shared here lol)

Download:
Code:
http://www.mediafire.com/?6f1s97i7554b46i

VirusTotal: 0/42
Code:
www.virustotal.com/file/caeb003d60da33aaa2c1639caf3444d2b6b3e7c14e80e2c238c3be5da43afb6b/analysis/1341000768/

Cheers !!!
 
wowowww,, thank for your detail and guide me how to get it .. I'm very interesting to hear that :D
 
I fixed the code in the download, you can get the php here (replace the php in the original file with this, should work then.

PHP:
<?php
	set_time_limit(false);
	error_reporting(false);	
	if (isset($_POST["perfis"])) {
		$logins = explode("\n", $_POST["perfis"]);
		$follow = $_POST["follow"];
		$contar = count($logins);
		for($i = 0; $i <= $contar; $i++) {
			if (!(preg_match("/[a-zA-Z0-9]+/i", $logins[$i]))) {
			continue;
			}
			$data = explode(":", $logins[$i]);
			if ($data[0][0] == "@")
			$data[0] = str_replace("@", "", $data[0]);
			$ch = curl_init();
			curl_setopt_array($ch,
			array(
				CURLOPT_URL => "http://api.twitter.com/1/friendships/create/{$follow}.xml",
				CURLOPT_RETURNTRANSFER => 1,
				CURLOPT_SSL_VERIFYPEER => 0,
				CURLOPT_COOKIE => null,
				CURLOPT_HEADER => true,
				CURLOPT_NOBODY => false,
				CURLOPT_POSTFIELDS => "&follow=true",
				CURLOPT_USERPWD => trim($data[0]) . ":" . trim($data[1])
				)
			);

		$ret = curl_exec($ch);
		if (preg_match("/Unauthorized/i", $ret)) {
			print "<b><font style='color: red;'>".$data[0]." - Error</font></b><br />";
			flush();
			ob_flush();
			sleep(1);
		} else {
			print "<b><font style='color: green;'>".$data[0]." - Success</font></b><br />";
			//include("../loop.php");include("config.php");
			flush();
			ob_flush();
			sleep(1);
		}
	}
}


?>

FYI most of the accounts seem dead
 
How does the script actually work ? It logs in into every account and follows the specified account ? Does it require proxies and other stuff ?

Great share btw! It would be very very useful on fiverr
 
Question: Where did you get those 1000 Twitter Accounts?
I think those Twitter Accounts are hacked by someone.. They are all active and real people.
How could this thing happened? Please answer me. One of my accounts are here..
 
THANks very much! :)
i didnt use that dumb script lol ... js u_u
i got 700 accounts to follow me using twittertoolkits
 
all so i got a account off the list that had 9k followers :)

+rep
 
im not hacker.... and i only took one account... someone took omost all of them !
 
im not hacker.... and i only took one account... someone took omost all of them !
That's 9k followers dude. It's not a joke!
Can you share some? o.o

-----------

@TOPIC:

When did you get this 1000 accounts? I think he's really a hacker. WOW ACCOUNTS! o.o
 
Last edited:
sorry i just joined this forum, where is download link scritp ?
 
I fixed the code in the download, you can get the php here (replace the php in the original file with this, should work then.

PHP:
<?php
    set_time_limit(false);
    error_reporting(false);    
    if (isset($_POST["perfis"])) {
        $logins = explode("\n", $_POST["perfis"]);
        $follow = $_POST["follow"];
        $contar = count($logins);
        for($i = 0; $i <= $contar; $i++) {
            if (!(preg_match("/[a-zA-Z0-9]+/i", $logins[$i]))) {
            continue;
            }
            $data = explode(":", $logins[$i]);
            if ($data[0][0] == "@")
            $data[0] = str_replace("@", "", $data[0]);
            $ch = curl_init();
            curl_setopt_array($ch,
            array(
                CURLOPT_URL => "http://api.twitter.com/1/friendships/create/{$follow}.xml",
                CURLOPT_RETURNTRANSFER => 1,
                CURLOPT_SSL_VERIFYPEER => 0,
                CURLOPT_COOKIE => null,
                CURLOPT_HEADER => true,
                CURLOPT_NOBODY => false,
                CURLOPT_POSTFIELDS => "&follow=true",
                CURLOPT_USERPWD => trim($data[0]) . ":" . trim($data[1])
                )
            );

        $ret = curl_exec($ch);
        if (preg_match("/Unauthorized/i", $ret)) {
            print "<b><font style='color: red;'>".$data[0]." - Error</font></b><br />";
            flush();
            ob_flush();
            sleep(1);
        } else {
            print "<b><font style='color: green;'>".$data[0]." - Success</font></b><br />";
            //include("../loop.php");include("config.php");
            flush();
            ob_flush();
            sleep(1);
        }
    }
}


?>

FYI most of the accounts seem dead

Thank you bro
 
None of these accounts are working, guess somebody has changed all passwords... I got a silly question =p
Why is that PHP ode is there and there is a notepad for all of those 1k accounts?
 
Back
Top