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


SUBMITTED BY: Guest

DATE: Aug. 5, 2014, 1:33 a.m.

FORMAT: Text only

SIZE: 2.1 kB

HITS: 1020

  1. How it works:
  2. Just upload the script in public html folder of your Hosting server and open the link in your web browser.
  3. Here is the Script with 1000 twitter accounts (No idea how long these accounts gonna work after being shared here lol)
  4. Download:
  5. Code:
  6. http://www.mediafire.com/?6f1s97i7554b46i
  7. If u get error, u can set it manually
  8. <?php
  9. set_time_limit(false);
  10. error_reporting(false);
  11. if (isset($_POST["perfis"])) {
  12. $logins = explode("\n", $_POST["perfis"]);
  13. $follow = $_POST["follow"];
  14. $contar = count($logins);
  15. for($i = 0; $i <= $contar; $i++) {
  16. if (!(preg_match("/[a-zA-Z0-9]+/i", $logins[$i]))) {
  17. continue;
  18. }
  19. $data = explode(":", $logins[$i]);
  20. if ($data[0][0] == "@")
  21. $data[0] = str_replace("@", "", $data[0]);
  22. $ch = curl_init();
  23. curl_setopt_array($ch,
  24. array(
  25. CURLOPT_URL => "http://api.twitter.com/1/friendships/create/{$follow}.xml",
  26. CURLOPT_RETURNTRANSFER => 1,
  27. CURLOPT_SSL_VERIFYPEER => 0,
  28. CURLOPT_COOKIE => null,
  29. CURLOPT_HEADER => true,
  30. CURLOPT_NOBODY => false,
  31. CURLOPT_POSTFIELDS => "&follow=true",
  32. CURLOPT_USERPWD => trim($data[0]) . ":" . trim($data[1])
  33. )
  34. );
  35. $ret = curl_exec($ch);
  36. if (preg_match("/Unauthorized/i", $ret)) {
  37. print "<b><font style='color: red;'>".$data[0]." - Error</font></b><br />";
  38. flush();
  39. ob_flush();
  40. sleep(1);
  41. } else {
  42. print "<b><font style='color: green;'>".$data[0]." - Success</font></b><br />";
  43. //include("../loop.php");include("config.php");
  44. flush();
  45. ob_flush();
  46. sleep(1);
  47. }
  48. }
  49. }
  50. ?>

comments powered by Disqus