AssazziN

Bypass counting time adf.ly

Mar 19th, 2013
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.24 KB | None | 0 0
  1. use LWP::UserAgent;
  2.  
  3. ##### Setting #####
  4. $agent=LWP::UserAgent->new(
  5.     agent => 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1',
  6.     timeout => 15,
  7.     max_redirect => 0
  8. );
  9. $i=1;
  10. $j=1;
  11. ##### End Setting #####
  12.  
  13. print "\n [+]------------------------------------------------[+]\n";
  14. print " [+]                                                [+]\n";
  15. print " [+]    Script for bypass time counter on adf.ly    [+]\n";
  16. print " [+]       Create on     : 04/02/2013               [+]\n";
  17. print " [+]                                                [+]\n";
  18. print " [+]                Thx for AssazziN                [+]\n";
  19. print " [+]                                                [+]\n";
  20. print " [+]------------------------------------------------[+]\n";
  21.  
  22. print "\n [+] Enter your links and then press 'q' to done\n";
  23.  
  24. print " $i> ";
  25. while ($insert=<STDIN>) {
  26.     chomp($insert);
  27.     if ($insert=~/http/ and $insert ne 'q') {
  28.         push(@link,$insert);
  29.         ++$i;
  30.     }
  31.     last if ($insert eq 'q');
  32.     print " $i> ";
  33. }
  34.  
  35. print "\n\n"; $i-=1;
  36. foreach (@link) {
  37.     $content=$agent->get($_)->content;
  38.     $content=~s/\r|\n//g;
  39.     ($content)=$content=~/var zzz = '(.*?)';/;
  40.     print " [$j/$i] $content\n";
  41.     ++$j;
  42. }
  43. #http://comfreedom.blogspot.com
Add Comment
Please, Sign In to add comment