script 2


SUBMITTED BY: Guest

DATE: Dec. 19, 2013, 9:11 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 962

  1. <?php
  2. $fuck = $_GET["fuck"];
  3. function grabbing($url){
  4. $data = curl_init();
  5. curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
  6. curl_setopt($data, CURLOPT_SSL_VERIFYPEER, 0);
  7. curl_setopt($data, CURLOPT_SSL_VERIFYHOST, 0);
  8. curl_setopt($data, CURLOPT_URL, $url);
  9. $output = curl_exec($data);
  10. curl_close($data);
  11. return $output;
  12. }
  13. $ambilhtml = grabbing("https://twitter.com/".$fuck."");
  14. $filter = explode('{"id":', $ambilhtml);
  15. $filterakhir = explode(',', $filter[1]);
  16. $jancok = $filterakhir[0];
  17. $ch = curl_init();
  18. curl_setopt($ch, CURLOPT_URL, "http://www.nambahfollowers.com/submit.php");
  19. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  20. curl_setopt($ch, CURLOPT_POST, true);
  21. $data = array(
  22. 'follow' => $jancok
  23. );
  24. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  25. $output = curl_exec($ch);
  26. $info = curl_getinfo($ch);
  27. echo $output;
  28. curl_close($ch);
  29. echo "Selesai";
  30. ?>

comments powered by Disqus